blob: 1f9e4dbeee22c3cc796bbcb7a68f5c5a971ca48c [file] [log] [blame]
Darren Tucker623d92f2004-09-12 22:36:15 +10001# $Id: configure.ac,v 1.230 2004/09/12 12:36:16 dtucker Exp $
Damien Miller4fefe242004-03-11 14:20:10 +11002#
3# Copyright (c) 1999-2004 Damien Miller
4#
5# Permission to use, copy, modify, and distribute this software for any
6# purpose with or without fee is hereby granted, provided that the above
7# copyright notice and this permission notice appear in all copies.
8#
9# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Damien Millere9cf3572001-02-09 12:55:35 +110016
Tim Rice13aae5e2001-10-21 17:53:58 -070017AC_INIT
18AC_CONFIG_SRCDIR([ssh.c])
Damien Miller7f6ea021999-10-28 13:25:17 +100019
20AC_CONFIG_HEADER(config.h)
Damien Miller856799b2000-03-15 21:18:10 +110021AC_PROG_CC
Damien Miller76112de1999-12-21 11:18:08 +110022AC_CANONICAL_HOST
Damien Miller4df5c762001-02-28 08:14:22 +110023AC_C_BIGENDIAN
Damien Miller7f6ea021999-10-28 13:25:17 +100024
Damien Millera22ba012000-03-02 23:09:20 +110025# Checks for programs.
Darren Tucker167bd9c2003-09-07 12:34:54 +100026AC_PROG_AWK
Damien Millerab18c411999-11-11 10:40:23 +110027AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +100028AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110029AC_PROG_INSTALL
Ben Lindstrom582d3982001-02-06 22:54:30 +000030AC_PATH_PROG(AR, ar)
Tim Rice5af9db92004-06-19 19:31:06 -070031AC_PATH_PROG(CAT, cat)
32AC_PATH_PROG(KILL, kill)
Tim Riceb8fbb8e2001-04-21 14:31:52 -070033AC_PATH_PROGS(PERL, perl5 perl)
Tim Riced0d7a8b2003-01-08 17:22:59 -080034AC_PATH_PROG(SED, sed)
Damien Millere79334a1999-12-29 10:03:37 +110035AC_SUBST(PERL)
Damien Miller8d1fd572000-05-17 21:34:07 +100036AC_PATH_PROG(ENT, ent)
37AC_SUBST(ENT)
Damien Miller4864e8f2001-02-08 10:07:08 +110038AC_PATH_PROG(TEST_MINUS_S_SH, bash)
39AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
40AC_PATH_PROG(TEST_MINUS_S_SH, sh)
Tim Rice0502a472002-05-08 16:04:14 -070041AC_PATH_PROG(SH, sh)
Tim Ricef7ba8f62004-06-20 10:37:32 -070042AC_SUBST(TEST_SHELL,sh)
Damien Miller2e1b0821999-12-25 10:11:29 +110043
Tim Rice6f1f7582004-05-30 21:38:51 -070044dnl for buildpkg.sh
45AC_PATH_PROG(PATH_GROUPADD_PROG, groupadd, groupadd,
46 [/usr/sbin${PATH_SEPARATOR}/etc])
47AC_PATH_PROG(PATH_USERADD_PROG, useradd, useradd,
48 [/usr/sbin${PATH_SEPARATOR}/etc])
49AC_CHECK_PROG(MAKE_PACKAGE_SUPPORTED, pkgmk, yes, no)
50
Damien Millere8bb4502001-09-25 16:39:35 +100051# System features
52AC_SYS_LARGEFILE
53
Damien Miller3f62aba2000-11-29 11:56:35 +110054if test -z "$AR" ; then
55 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
56fi
57
Damien Millerad833b32000-08-23 10:46:23 +100058# Use LOGIN_PROGRAM from environment if possible
59if test ! -z "$LOGIN_PROGRAM" ; then
60 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM")
61else
62 # Search for login
63 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
64 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
65 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
66 fi
67fi
68
Darren Tucker23bc8d02004-02-06 16:24:31 +110069AC_PATH_PROG(PATH_PASSWD_PROG, passwd)
70if test ! -z "$PATH_PASSWD_PROG" ; then
71 AC_DEFINE_UNQUOTED(_PATH_PASSWD_PROG, "$PATH_PASSWD_PROG")
72fi
73
Damien Miller166bd442000-03-16 10:48:25 +110074if test -z "$LD" ; then
75 LD=$CC
76fi
77AC_SUBST(LD)
78
Damien Miller166bd442000-03-16 10:48:25 +110079AC_C_INLINE
Damien Millera8e06ce2003-11-21 23:48:55 +110080if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
Damien Miller649d9992001-06-27 23:35:51 +100081 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wno-uninitialized"
Damien Miller166bd442000-03-16 10:48:25 +110082fi
83
Tim Rice88368a32003-12-08 12:35:59 -080084AC_ARG_WITH(rpath,
85 [ --without-rpath Disable auto-added -R linker paths],
86 [
87 if test "x$withval" = "xno" ; then
88 need_dash_r=""
89 fi
90 if test "x$withval" = "xyes" ; then
91 need_dash_r=1
92 fi
93 ]
94)
95
Damien Millera22ba012000-03-02 23:09:20 +110096# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +110097case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +110098*-*-aix*)
Damien Millera8e06ce2003-11-21 23:48:55 +110099 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
Damien Millereab4bae2003-04-29 23:22:40 +1000100 if (test -z "$blibpath"); then
Tim Ricefcb62202004-01-23 18:35:16 -0800101 blibpath="/usr/lib:/lib"
Damien Miller29ea30d2000-03-17 10:54:15 +1100102 fi
Damien Millereab4bae2003-04-29 23:22:40 +1000103 saved_LDFLAGS="$LDFLAGS"
104 for tryflags in -blibpath: -Wl,-blibpath: -Wl,-rpath, ;do
105 if (test -z "$blibflags"); then
106 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
107 AC_TRY_LINK([], [], [blibflags=$tryflags])
108 fi
109 done
110 if (test -z "$blibflags"); then
111 AC_MSG_RESULT(not found)
112 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
113 else
114 AC_MSG_RESULT($blibflags)
115 fi
116 LDFLAGS="$saved_LDFLAGS"
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000117 dnl Check for authenticate. Might be in libs.a on older AIXes
118 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)],
Tim Ricee958ed32002-07-05 07:12:33 -0700119 [AC_CHECK_LIB(s,authenticate,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000120 [ AC_DEFINE(WITH_AIXAUTHENTICATE)
Tim Ricee958ed32002-07-05 07:12:33 -0700121 LIBS="$LIBS -ls"
122 ])
123 ])
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000124 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
125 AC_CHECK_DECL(loginfailed,
126 [AC_MSG_CHECKING(if loginfailed takes 4 arguments)
127 AC_TRY_COMPILE(
Darren Tuckera0c0b632003-07-08 20:52:12 +1000128 [#include <usersec.h>],
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000129 [(void)loginfailed("user","host","tty",0);],
130 [AC_MSG_RESULT(yes)
131 AC_DEFINE(AIX_LOGINFAILED_4ARG)],
Darren Tuckera0c0b632003-07-08 20:52:12 +1000132 [AC_MSG_RESULT(no)]
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000133 )],
134 [],
135 [#include <usersec.h>]
136 )
Darren Tuckerfc3454e2003-07-14 16:41:55 +1000137 AC_CHECK_FUNCS(setauthdb)
Damien Millereca71f82000-01-20 22:38:27 +1100138 AC_DEFINE(BROKEN_GETADDRINFO)
Damien Millerf5fea442002-04-23 22:52:45 +1000139 AC_DEFINE(BROKEN_REALPATH)
Darren Tucker9f18be62003-09-06 16:44:39 +1000140 AC_DEFINE(SETEUID_BREAKS_SETUID)
141 AC_DEFINE(BROKEN_SETREUID)
142 AC_DEFINE(BROKEN_SETREGID)
andre60f3c982000-06-03 16:18:19 +0000143 dnl AIX handles lastlog as part of its login message
144 AC_DEFINE(DISABLE_LASTLOG)
Kevin Steves90d5de72002-06-22 18:51:48 +0000145 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Damien Miller35276252003-06-03 10:14:28 +1000146 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
Damien Miller75b1d102000-01-07 14:01:41 +1100147 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100148*-*-cygwin*)
Damien Millerc8936ac2003-02-11 10:04:03 +1100149 check_for_libcrypt_later=1
Tim Ricefe1d1002001-11-26 17:19:43 -0800150 LIBS="$LIBS /usr/lib/textmode.o"
Damien Millerbac2d8a2000-09-05 16:13:06 +1100151 AC_DEFINE(HAVE_CYGWIN)
Ben Lindstromca60a9b2001-05-17 03:32:50 +0000152 AC_DEFINE(USE_PIPES)
Damien Millerbac2d8a2000-09-05 16:13:06 +1100153 AC_DEFINE(DISABLE_SHADOW)
Damien Millerbac2d8a2000-09-05 16:13:06 +1100154 AC_DEFINE(IP_TOS_IS_BROKEN)
Ben Lindstrom38e60932001-02-24 00:55:04 +0000155 AC_DEFINE(NO_X11_UNIX_SOCKETS)
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000156 AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT)
Tim Rice9dd30812002-07-07 13:43:36 -0700157 AC_DEFINE(DISABLE_FD_PASSING)
Ben Lindstrom837461b2002-06-12 16:57:14 +0000158 AC_DEFINE(SETGROUPS_NOOP)
Damien Millerbac2d8a2000-09-05 16:13:06 +1100159 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000160*-*-dgux*)
161 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker454da0b2003-12-18 12:52:19 +1100162 AC_DEFINE(SETEUID_BREAKS_SETUID)
163 AC_DEFINE(BROKEN_SETREUID)
164 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom58055132001-02-15 18:34:29 +0000165 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000166*-*-darwin*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000167 AC_MSG_CHECKING(if we have working getaddrinfo)
168 AC_TRY_RUN([#include <mach-o/dyld.h>
169main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
170 exit(0);
171 else
172 exit(1);
173}], [AC_MSG_RESULT(working)],
174 [AC_MSG_RESULT(buggy)
175 AC_DEFINE(BROKEN_GETADDRINFO)],
Tim Rice480ef8d2003-09-21 21:38:11 -0700176 [AC_MSG_RESULT(assume it is working)])
Darren Tucker20379a32003-09-22 11:07:40 +1000177 AC_DEFINE(SETEUID_BREAKS_SETUID)
178 AC_DEFINE(BROKEN_SETREUID)
179 AC_DEFINE(BROKEN_SETREGID)
Damien Miller7a2ea782004-01-02 17:52:10 +1100180 AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1)
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000181 ;;
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000182*-*-hpux10.26)
183 if test -z "$GCC"; then
184 CFLAGS="$CFLAGS -Ae"
185 fi
186 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
187 IPADDR_IN_DISPLAY=yes
188 AC_DEFINE(HAVE_SECUREWARE)
189 AC_DEFINE(USE_PIPES)
190 AC_DEFINE(LOGIN_NO_ENDOPT)
191 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Darren Tuckere41bba52003-08-25 11:51:19 +1000192 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
Damien Miller35276252003-06-03 10:14:28 +1000193 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Tim Ricef028f1e2002-07-19 12:41:10 -0700194 LIBS="$LIBS -lsec -lsecpw"
195 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000196 disable_ptmx_check=yes
197 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100198*-*-hpux10*)
199 if test -z "$GCC"; then
Damien Millerfda78d92000-05-20 15:33:44 +1000200 CFLAGS="$CFLAGS -Ae"
Damien Miller76112de1999-12-21 11:18:08 +1100201 fi
Kevin Steves315f8b72001-06-28 00:24:41 +0000202 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100203 IPADDR_IN_DISPLAY=yes
Damien Millerb0785672000-08-23 09:10:39 +1000204 AC_DEFINE(USE_PIPES)
Kevin Steves5feaaef2002-04-23 20:45:55 +0000205 AC_DEFINE(LOGIN_NO_ENDOPT)
206 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Darren Tuckere41bba52003-08-25 11:51:19 +1000207 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
Damien Miller35276252003-06-03 10:14:28 +1000208 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Tim Ricef028f1e2002-07-19 12:41:10 -0700209 LIBS="$LIBS -lsec"
210 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
Damien Miller76112de1999-12-21 11:18:08 +1100211 ;;
Damien Miller1bead332000-04-30 00:47:29 +1000212*-*-hpux11*)
Kevin Steves6a7b0de2001-06-27 16:32:24 +0000213 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100214 IPADDR_IN_DISPLAY=yes
Damien Miller82cf0ce2000-12-20 13:34:48 +1100215 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller5552d7a2000-08-30 09:53:24 +1100216 AC_DEFINE(USE_PIPES)
Kevin Steves5feaaef2002-04-23 20:45:55 +0000217 AC_DEFINE(LOGIN_NO_ENDOPT)
218 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Damien Millerd6f204d2000-09-23 13:57:27 +1100219 AC_DEFINE(DISABLE_UTMP)
Darren Tuckere41bba52003-08-25 11:51:19 +1000220 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
Damien Miller35276252003-06-03 10:14:28 +1000221 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Darren Tucker4398cf52004-04-06 21:39:02 +1000222 check_for_hpux_broken_getaddrinfo=1
Tim Ricef028f1e2002-07-19 12:41:10 -0700223 LIBS="$LIBS -lsec"
224 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
Damien Miller1bead332000-04-30 00:47:29 +1000225 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100226*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100227 PATH="$PATH:/usr/etc"
Damien Miller11fa2cc2000-08-16 10:35:58 +1000228 AC_DEFINE(BROKEN_INET_NTOA)
Darren Tuckerbeaf6792003-09-24 20:03:48 +1000229 AC_DEFINE(SETEUID_BREAKS_SETUID)
230 AC_DEFINE(BROKEN_SETREUID)
231 AC_DEFINE(BROKEN_SETREGID)
Damien Millerf1b9d112002-04-23 23:09:19 +1000232 AC_DEFINE(WITH_ABBREV_NO_TTY)
Darren Tuckere41bba52003-08-25 11:51:19 +1000233 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller1808f382000-01-06 12:03:12 +1100234 ;;
235*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100236 PATH="$PATH:/usr/etc"
Damien Miller91606b12000-06-28 08:22:29 +1000237 AC_DEFINE(WITH_IRIX_ARRAY)
238 AC_DEFINE(WITH_IRIX_PROJECT)
239 AC_DEFINE(WITH_IRIX_AUDIT)
Ben Lindstrom8ff2a8d2002-04-06 18:58:31 +0000240 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS)])
Damien Miller11fa2cc2000-08-16 10:35:58 +1000241 AC_DEFINE(BROKEN_INET_NTOA)
Darren Tuckerbe79af12003-09-22 11:58:21 +1000242 AC_DEFINE(SETEUID_BREAKS_SETUID)
243 AC_DEFINE(BROKEN_SETREUID)
244 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker8db9a0f2004-04-06 21:31:12 +1000245 AC_DEFINE(BROKEN_UPDWTMPX)
Damien Millerf1b9d112002-04-23 23:09:19 +1000246 AC_DEFINE(WITH_ABBREV_NO_TTY)
Darren Tuckere41bba52003-08-25 11:51:19 +1000247 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Millerbeb4ba51999-12-28 15:09:35 +1100248 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100249*-*-linux*)
250 no_dev_ptmx=1
Damien Millera64b57a2001-01-17 10:44:13 +1100251 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000252 check_for_openpty_ctty_bug=1
Damien Miller7bcb0892000-03-11 20:45:40 +1100253 AC_DEFINE(DONT_TRY_OTHER_AF)
Damien Miller4e997202000-07-09 21:21:52 +1000254 AC_DEFINE(PAM_TTY_KLUDGE)
Darren Tucker809031f2004-03-30 14:03:45 +1000255 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!")
Damien Miller35276252003-06-03 10:14:28 +1000256 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
Darren Tuckere59b5082004-06-28 16:01:19 +1000257 AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM)
Damien Miller7bcb0892000-03-11 20:45:40 +1100258 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000259 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000260 1.*|2.0.*)
Darren Tucker3c016542003-05-02 20:48:21 +1000261 AC_DEFINE(BROKEN_CMSG_TYPE)
262 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000263 esac
Damien Millerb29ea912000-01-15 14:12:03 +1100264 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000265mips-sony-bsd|mips-sony-newsos4)
266 AC_DEFINE(HAVE_NEWS4)
267 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000268 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100269*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000270 check_for_libcrypt_before=1
Tim Rice88368a32003-12-08 12:35:59 -0800271 if test "x$withval" != "xno" ; then
272 need_dash_r=1
273 fi
Damien Milleree1c0b32000-01-21 00:18:15 +1100274 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100275*-*-freebsd*)
276 check_for_libcrypt_later=1
277 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000278*-*-bsdi*)
279 AC_DEFINE(SETEUID_BREAKS_SETUID)
280 AC_DEFINE(BROKEN_SETREUID)
281 AC_DEFINE(BROKEN_SETREGID)
282 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000283*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000284 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100285 conf_utmp_location=/etc/utmp
286 conf_wtmp_location=/usr/adm/wtmp
287 MAIL=/usr/spool/mail
Damien Miller0f91b4e2000-06-18 15:43:25 +1000288 AC_DEFINE(HAVE_NEXT)
Ben Lindstromb4df15d2000-10-15 00:17:36 +0000289 AC_DEFINE(BROKEN_REALPATH)
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000290 AC_DEFINE(USE_PIPES)
Damien Millerfbd884a2001-02-27 08:39:07 +1100291 AC_DEFINE(BROKEN_SAVED_UIDS)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000292 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100293*-*-solaris*)
Tim Ricead4a1882004-02-29 15:53:37 -0800294 if test "x$withval" != "xno" ; then
295 need_dash_r=1
296 fi
Damien Miller82cf0ce2000-12-20 13:34:48 +1100297 AC_DEFINE(PAM_SUN_CODEBASE)
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000298 AC_DEFINE(LOGIN_NEEDS_UTMPX)
299 AC_DEFINE(LOGIN_NEEDS_TERM)
Ben Lindstrom95276712001-10-23 17:14:00 +0000300 AC_DEFINE(PAM_TTY_KLUDGE)
Darren Tucker21dd0892004-08-16 23:12:05 +1000301 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID)
Darren Tuckere41bba52003-08-25 11:51:19 +1000302 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Darren Tuckerc437cda2003-05-10 17:05:46 +1000303 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
304 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckere1a790d2003-09-16 11:52:19 +1000305 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000306 # hardwire lastlog location (can't detect it on some versions)
307 conf_lastlog_location="/var/adm/lastlog"
Damien Millera1cb6442000-06-09 11:58:35 +1000308 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
309 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
310 if test "$sol2ver" -ge 8; then
311 AC_MSG_RESULT(yes)
312 AC_DEFINE(DISABLE_UTMP)
313 AC_DEFINE(DISABLE_WTMP)
314 else
315 AC_MSG_RESULT(no)
316 fi
Damien Miller75b1d102000-01-07 14:01:41 +1100317 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +1000318*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000319 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Damien Millerdfc83f42000-05-20 15:02:59 +1000320 AC_CHECK_FUNCS(getpwanam)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100321 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000322 conf_utmp_location=/etc/utmp
323 conf_wtmp_location=/var/adm/wtmp
324 conf_lastlog_location=/var/adm/lastlog
Damien Millerb0785672000-08-23 09:10:39 +1000325 AC_DEFINE(USE_PIPES)
Damien Millerdfc83f42000-05-20 15:02:59 +1000326 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000327*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -0700328 LIBS="$LIBS -lc89"
Kevin Steves0bd4b342002-01-05 23:24:27 +0000329 AC_DEFINE(USE_PIPES)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000330 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker00130112003-09-22 11:40:24 +1000331 AC_DEFINE(SETEUID_BREAKS_SETUID)
332 AC_DEFINE(BROKEN_SETREUID)
333 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000334 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000335*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -0700336 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Darren Tucker89df7a32003-10-07 20:35:57 +1000337 AC_CHECK_LIB(dl, dlsym, ,)
Damien Millerfd9885e2001-01-10 08:16:53 +1100338 IPADDR_IN_DISPLAY=yes
339 AC_DEFINE(USE_PIPES)
Damien Miller2ae714f2000-07-11 09:29:50 +1000340 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker3b2a06c2003-10-07 18:37:11 +1000341 AC_DEFINE(SETEUID_BREAKS_SETUID)
342 AC_DEFINE(BROKEN_SETREUID)
343 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000344 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckere1a790d2003-09-16 11:52:19 +1000345 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -0700346 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
347 # Attention: always take care to bind libsocket and libnsl before libc,
348 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +1000349 ;;
Damien Miller78315eb2000-09-29 23:01:36 +1100350*-*-sysv4.2*)
Damien Miller5dfe9762001-02-16 12:05:39 +1100351 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700352 AC_DEFINE(SETEUID_BREAKS_SETUID)
353 AC_DEFINE(BROKEN_SETREUID)
354 AC_DEFINE(BROKEN_SETREGID)
Damien Miller78315eb2000-09-29 23:01:36 +1100355 ;;
356*-*-sysv5*)
Damien Miller5dfe9762001-02-16 12:05:39 +1100357 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700358 AC_DEFINE(SETEUID_BREAKS_SETUID)
359 AC_DEFINE(BROKEN_SETREUID)
360 AC_DEFINE(BROKEN_SETREGID)
Damien Miller78315eb2000-09-29 23:01:36 +1100361 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100362*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +1100363 ;;
Damien Miller78315eb2000-09-29 23:01:36 +1100364*-*-sco3.2v4*)
Tim Ricefcb62202004-01-23 18:35:16 -0800365 CPPFLAGS="$CPPFLAGS -Dftruncate=chsize"
Tim Ricee8c898a2004-02-23 21:47:04 -0800366 LIBS="$LIBS -los -lprot -lcrypt_i -lx -ltinfo -lm"
Damien Miller5dfe9762001-02-16 12:05:39 +1100367 RANLIB=true
368 no_dev_ptmx=1
369 AC_DEFINE(BROKEN_SYS_TERMIO_H)
370 AC_DEFINE(USE_PIPES)
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000371 AC_DEFINE(HAVE_SECUREWARE)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000372 AC_DEFINE(DISABLE_SHADOW)
Damien Millerfbd884a2001-02-27 08:39:07 +1100373 AC_DEFINE(BROKEN_SAVED_UIDS)
Tim Ricefe6d5aa2004-04-16 20:03:07 -0700374 AC_DEFINE(SETEUID_BREAKS_SETUID)
375 AC_DEFINE(BROKEN_SETREUID)
376 AC_DEFINE(BROKEN_SETREGID)
Tim Riceae477e92003-09-12 18:15:15 -0700377 AC_DEFINE(WITH_ABBREV_NO_TTY)
Damien Miller217f5672001-02-16 12:12:41 +1100378 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700379 MANTYPE=man
Tim Rice13aae5e2001-10-21 17:53:58 -0700380 do_sco3_extra_lib_check=yes
Tim Ricef7ba8f62004-06-20 10:37:32 -0700381 TEST_SHELL=ksh
Damien Miller78315eb2000-09-29 23:01:36 +1100382 ;;
383*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -0800384 if test -z "$GCC"; then
385 CFLAGS="$CFLAGS -belf"
386 fi
Damien Miller5dfe9762001-02-16 12:05:39 +1100387 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000388 no_dev_ptmx=1
Damien Miller5dfe9762001-02-16 12:05:39 +1100389 AC_DEFINE(USE_PIPES)
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000390 AC_DEFINE(HAVE_SECUREWARE)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000391 AC_DEFINE(DISABLE_SHADOW)
Tim Rice9dd30812002-07-07 13:43:36 -0700392 AC_DEFINE(DISABLE_FD_PASSING)
Tim Riced546a842003-09-11 22:24:36 -0700393 AC_DEFINE(SETEUID_BREAKS_SETUID)
394 AC_DEFINE(BROKEN_SETREUID)
395 AC_DEFINE(BROKEN_SETREGID)
Tim Riceae477e92003-09-12 18:15:15 -0700396 AC_DEFINE(WITH_ABBREV_NO_TTY)
Tim Rice816bd0d2004-07-19 10:19:26 -0700397 AC_DEFINE(BROKEN_UPDWTMPX)
Damien Miller217f5672001-02-16 12:12:41 +1100398 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700399 MANTYPE=man
Tim Ricef7ba8f62004-06-20 10:37:32 -0700400 TEST_SHELL=ksh
Damien Millera66626b2000-06-13 18:57:53 +1000401 ;;
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000402*-*-unicosmk*)
Darren Tucker2df33432004-01-30 14:34:21 +1100403 AC_DEFINE(NO_SSH_LASTLOG)
404 AC_DEFINE(SETEUID_BREAKS_SETUID)
405 AC_DEFINE(BROKEN_SETREUID)
406 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000407 AC_DEFINE(USE_PIPES)
408 AC_DEFINE(DISABLE_FD_PASSING)
409 LDFLAGS="$LDFLAGS"
410 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
411 MANTYPE=cat
Ben Lindstrom762104e2002-07-23 00:00:05 +0000412 ;;
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000413*-*-unicosmp*)
Darren Tucker2df33432004-01-30 14:34:21 +1100414 AC_DEFINE(SETEUID_BREAKS_SETUID)
415 AC_DEFINE(BROKEN_SETREUID)
416 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000417 AC_DEFINE(WITH_ABBREV_NO_TTY)
418 AC_DEFINE(USE_PIPES)
419 AC_DEFINE(DISABLE_FD_PASSING)
420 LDFLAGS="$LDFLAGS"
Darren Tucker2df33432004-01-30 14:34:21 +1100421 LIBS="$LIBS -lgen -lacid -ldb"
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000422 MANTYPE=cat
423 ;;
Ben Lindstromd9e08242001-07-22 19:32:00 +0000424*-*-unicos*)
Darren Tucker2df33432004-01-30 14:34:21 +1100425 AC_DEFINE(SETEUID_BREAKS_SETUID)
426 AC_DEFINE(BROKEN_SETREUID)
427 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstromd9e08242001-07-22 19:32:00 +0000428 AC_DEFINE(USE_PIPES)
Tim Rice9dd30812002-07-07 13:43:36 -0700429 AC_DEFINE(DISABLE_FD_PASSING)
Tim Rice81ed5182002-09-25 17:38:46 -0700430 AC_DEFINE(NO_SSH_LASTLOG)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000431 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
432 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
433 MANTYPE=cat
Tim Ricee991e3c2001-08-07 15:29:07 -0700434 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000435*-dec-osf*)
Ben Lindstrom72af2ef2001-05-08 20:42:28 +0000436 AC_MSG_CHECKING(for Digital Unix SIA)
437 no_osfsia=""
438 AC_ARG_WITH(osfsia,
439 [ --with-osfsia Enable Digital Unix SIA],
440 [
441 if test "x$withval" = "xno" ; then
442 AC_MSG_RESULT(disabled)
443 no_osfsia=1
444 fi
445 ],
446 )
447 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +1000448 if test -f /etc/sia/matrix.conf; then
449 AC_MSG_RESULT(yes)
450 AC_DEFINE(HAVE_OSF_SIA)
451 AC_DEFINE(DISABLE_LOGIN)
Ben Lindstromc8c548d2003-03-21 01:18:09 +0000452 AC_DEFINE(DISABLE_FD_PASSING)
Damien Millerb8c656e2000-06-28 15:22:41 +1000453 LIBS="$LIBS -lsecurity -ldb -lm -laud"
454 else
455 AC_MSG_RESULT(no)
Darren Tucker4e06a1d2003-11-22 14:25:15 +1100456 AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin")
Damien Millerb8c656e2000-06-28 15:22:41 +1000457 fi
458 fi
Darren Tucker3c8e1e12003-08-25 13:27:40 +1000459 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Rice7a74c6b2003-09-21 21:00:59 -0700460 AC_DEFINE(SETEUID_BREAKS_SETUID)
Darren Tuckered92b212003-09-22 11:26:16 +1000461 AC_DEFINE(BROKEN_SETREUID)
462 AC_DEFINE(BROKEN_SETREGID)
Damien Millerb8c656e2000-06-28 15:22:41 +1000463 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000464
465*-*-nto-qnx)
466 AC_DEFINE(USE_PIPES)
467 AC_DEFINE(NO_X11_UNIX_SOCKETS)
468 AC_DEFINE(MISSING_NFDBITS)
469 AC_DEFINE(MISSING_HOWMANY)
470 AC_DEFINE(MISSING_FD_MASK)
471 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100472esac
473
Damien Millere37bfc12000-06-05 09:37:43 +1000474# Allow user to specify flags
475AC_ARG_WITH(cflags,
476 [ --with-cflags Specify additional flags to pass to compiler],
477 [
478 if test "x$withval" != "xno" ; then
479 CFLAGS="$CFLAGS $withval"
480 fi
481 ]
482)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000483AC_ARG_WITH(cppflags,
484 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
485 [
486 if test "x$withval" != "xno"; then
487 CPPFLAGS="$CPPFLAGS $withval"
488 fi
489 ]
490)
Damien Millere37bfc12000-06-05 09:37:43 +1000491AC_ARG_WITH(ldflags,
Ben Lindstrom2ed98182000-11-06 07:15:43 +0000492 [ --with-ldflags Specify additional flags to pass to linker],
Damien Millere37bfc12000-06-05 09:37:43 +1000493 [
494 if test "x$withval" != "xno" ; then
495 LDFLAGS="$LDFLAGS $withval"
496 fi
497 ]
498)
499AC_ARG_WITH(libs,
500 [ --with-libs Specify additional libraries to link with],
501 [
502 if test "x$withval" != "xno" ; then
503 LIBS="$LIBS $withval"
504 fi
505 ]
506)
507
Darren Tucker6eb93042003-06-29 21:30:41 +1000508AC_MSG_CHECKING(compiler and flags for sanity)
Darren Tucker623d92f2004-09-12 22:36:15 +1000509AC_RUN_IFELSE(
510 [AC_LANG_SOURCE([
Darren Tucker6eb93042003-06-29 21:30:41 +1000511#include <stdio.h>
512int main(){exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +1000513 ])],
Darren Tucker6eb93042003-06-29 21:30:41 +1000514 [ AC_MSG_RESULT(yes) ],
515 [
516 AC_MSG_RESULT(no)
517 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000518 ],
519 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
Darren Tucker6eb93042003-06-29 21:30:41 +1000520)
521
Tim Rice4cec93f2002-02-26 08:40:48 -0800522# Checks for header files.
Damien Miller36f49652004-08-15 18:40:59 +1000523AC_CHECK_HEADERS(bstring.h crypt.h dirent.h endian.h features.h \
524 floatingpoint.h getopt.h glob.h ia.h lastlog.h limits.h login.h \
525 login_cap.h maillock.h ndir.h netdb.h netgroup.h \
Damien Miller0f47c532004-01-02 18:01:30 +1100526 netinet/in_systm.h pam/pam_appl.h paths.h pty.h readpassphrase.h \
Ben Lindstrom7577fd82002-03-08 03:11:07 +0000527 rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
Damien Miller36f49652004-08-15 18:40:59 +1000528 strings.h sys/dir.h sys/strtio.h sys/audit.h sys/bitypes.h \
529 sys/bsdtty.h sys/cdefs.h sys/mman.h sys/ndir.h sys/prctl.h \
Darren Tucker48d99d32004-08-29 17:04:50 +1000530 sys/pstat.h sys/select.h sys/stat.h sys/stream.h \
Damien Miller36f49652004-08-15 18:40:59 +1000531 sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h sys/un.h \
532 time.h tmpdir.h ttyent.h usersec.h util.h utime.h utmp.h utmpx.h vis.h)
Tim Rice4cec93f2002-02-26 08:40:48 -0800533
Darren Tucker48d99d32004-08-29 17:04:50 +1000534# sys/ptms.h requires sys/stream.h to be included first on Solaris
535AC_CHECK_HEADERS(sys/ptms.h, [], [], [
536#ifdef HAVE_SYS_STREAM_H
537# include <sys/stream.h>
538#endif
539])
540
Damien Millera22ba012000-03-02 23:09:20 +1100541# Checks for libraries.
Tim Rice13aae5e2001-10-21 17:53:58 -0700542AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
543AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000544
Damien Millerdf288022001-02-18 13:07:07 +1100545dnl SCO OS3 needs this for libwrap
Tim Rice13aae5e2001-10-21 17:53:58 -0700546if test "x$with_tcp_wrappers" != "xno" ; then
547 if test "x$do_sco3_extra_lib_check" = "xyes" ; then
548 AC_CHECK_LIB(rpc, innetgr, LIBS="-lrpc -lyp -lrpc $LIBS" , , -lyp -lrpc)
549 fi
550fi
Damien Millerdf288022001-02-18 13:07:07 +1100551
Tim Rice1e1ef642003-09-11 22:19:31 -0700552dnl IRIX and Solaris 2.5.1 have dirname() in libgen
553AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
554 AC_CHECK_LIB(gen, dirname,[
555 AC_CACHE_CHECK([for broken dirname],
556 ac_cv_have_broken_dirname, [
557 save_LIBS="$LIBS"
558 LIBS="$LIBS -lgen"
559 AC_TRY_RUN(
560 [
561#include <libgen.h>
562#include <string.h>
563
564int main(int argc, char **argv) {
565 char *s, buf[32];
566
567 strncpy(buf,"/etc", 32);
568 s = dirname(buf);
569 if (!s || strncmp(s, "/", 32) != 0) {
570 exit(1);
571 } else {
572 exit(0);
573 }
574}
575 ],
576 [ ac_cv_have_broken_dirname="no" ],
577 [ ac_cv_have_broken_dirname="yes" ]
578 )
579 LIBS="$save_LIBS"
580 ])
581 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
582 LIBS="$LIBS -lgen"
583 AC_DEFINE(HAVE_DIRNAME)
584 AC_CHECK_HEADERS(libgen.h)
585 fi
586 ])
587])
588
589AC_CHECK_FUNC(getspnam, ,
590 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
591AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME))
592
Tim Rice13aae5e2001-10-21 17:53:58 -0700593dnl zlib is required
594AC_ARG_WITH(zlib,
595 [ --with-zlib=PATH Use zlib in PATH],
596 [
Kevin Steves7dc81972002-01-22 21:59:31 +0000597 if test "x$withval" = "xno" ; then
Damien Miller6c21c512002-01-22 21:57:53 +1100598 AC_MSG_ERROR([*** zlib is required ***])
599 fi
Tim Rice13aae5e2001-10-21 17:53:58 -0700600 if test -d "$withval/lib"; then
601 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700602 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700603 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700604 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700605 fi
606 else
607 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700608 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700609 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700610 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700611 fi
612 fi
613 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700614 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700615 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700616 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700617 fi
618 ]
619)
620
Tim Ricefcb62202004-01-23 18:35:16 -0800621AC_CHECK_LIB(z, deflate, ,
622 [
623 saved_CPPFLAGS="$CPPFLAGS"
624 saved_LDFLAGS="$LDFLAGS"
625 save_LIBS="$LIBS"
626 dnl Check default zlib install dir
627 if test -n "${need_dash_r}"; then
628 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
629 else
630 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
631 fi
632 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
633 LIBS="$LIBS -lz"
634 AC_TRY_LINK_FUNC(deflate, AC_DEFINE(HAVE_LIBZ),
635 [
636 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
637 ]
638 )
639 ]
640)
Darren Tucker2dcd2392004-01-23 17:13:33 +1100641AC_CHECK_HEADER([zlib.h], ,AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***]))
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100642
643AC_ARG_WITH(zlib-version-check,
644 [ --without-zlib-version-check Disable zlib version check],
645 [ if test "x$withval" = "xno" ; then
646 zlib_check_nonfatal=1
647 fi
648 ]
649)
650
Darren Tucker2dcd2392004-01-23 17:13:33 +1100651AC_MSG_CHECKING(for zlib 1.1.4 or greater)
Darren Tucker623d92f2004-09-12 22:36:15 +1000652AC_RUN_IFELSE([AC_LANG_SOURCE([[
Darren Tucker2dcd2392004-01-23 17:13:33 +1100653#include <zlib.h>
654int main()
655{
656 int a, b, c, v;
657 if (sscanf(ZLIB_VERSION, "%d.%d.%d", &a, &b, &c) != 3)
658 exit(1);
659 v = a*1000000 + b*1000 + c;
660 if (v >= 1001004)
661 exit(0);
662 exit(2);
663}
Darren Tucker623d92f2004-09-12 22:36:15 +1000664 ]])],
Darren Tucker2dcd2392004-01-23 17:13:33 +1100665 AC_MSG_RESULT(yes),
666 [ AC_MSG_RESULT(no)
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100667 if test -z "$zlib_check_nonfatal" ; then
668 AC_MSG_ERROR([*** zlib too old - check config.log ***
669Your reported zlib version has known security problems. It's possible your
670vendor has fixed these problems without changing the version number. If you
671are sure this is the case, you can disable the check by running
672"./configure --without-zlib-version-check".
673If you are in doubt, upgrade zlib to version 1.1.4 or greater.])
674 else
675 AC_MSG_WARN([zlib version may have security problems])
676 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +1000677 ],
678 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
Darren Tucker2dcd2392004-01-23 17:13:33 +1100679)
Damien Miller6f9c3372000-10-25 10:06:04 +1100680
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000681dnl UnixWare 2.x
Damien Millera8e06ce2003-11-21 23:48:55 +1100682AC_CHECK_FUNC(strcasecmp,
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000683 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
684)
Damien Millera8e06ce2003-11-21 23:48:55 +1100685AC_CHECK_FUNC(utimes,
Tim Ricecbb90662002-07-08 19:17:10 -0700686 [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
687 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000688)
Damien Millerab18c411999-11-11 10:40:23 +1100689
Tim Ricee589a292001-11-03 11:09:32 -0800690dnl Checks for libutil functions
691AC_CHECK_HEADERS(libutil.h)
692AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN)])
693AC_CHECK_FUNCS(logout updwtmp logwtmp)
694
Ben Lindstrom8697e082001-02-24 21:41:10 +0000695AC_FUNC_STRFTIME
696
Damien Miller3c027682001-03-14 11:39:45 +1100697# Check for ALTDIRFUNC glob() extension
698AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
699AC_EGREP_CPP(FOUNDIT,
700 [
701 #include <glob.h>
702 #ifdef GLOB_ALTDIRFUNC
703 FOUNDIT
704 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +1100705 ],
Damien Miller3c027682001-03-14 11:39:45 +1100706 [
707 AC_DEFINE(GLOB_HAS_ALTDIRFUNC)
708 AC_MSG_RESULT(yes)
709 ],
710 [
711 AC_MSG_RESULT(no)
712 ]
713)
Damien Millerab18c411999-11-11 10:40:23 +1100714
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000715# Check for g.gl_matchc glob() extension
716AC_MSG_CHECKING(for gl_matchc field in glob_t)
717AC_EGREP_CPP(FOUNDIT,
Damien Millera8e06ce2003-11-21 23:48:55 +1100718 [
719 #include <glob.h>
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000720 int main(void){glob_t g; g.gl_matchc = 1;}
Damien Millera8e06ce2003-11-21 23:48:55 +1100721 ],
722 [
723 AC_DEFINE(GLOB_HAS_GL_MATCHC)
724 AC_MSG_RESULT(yes)
725 ],
726 [
727 AC_MSG_RESULT(no)
728 ]
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000729)
730
Damien Miller18bb4732001-03-28 14:35:30 +1000731AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000732AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +1000733 [AC_LANG_SOURCE([[
Damien Miller18bb4732001-03-28 14:35:30 +1000734#include <sys/types.h>
735#include <dirent.h>
Tim Rice2c961ce2002-09-23 16:54:10 -0700736int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
Darren Tucker623d92f2004-09-12 22:36:15 +1000737 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +1100738 [AC_MSG_RESULT(yes)],
Damien Miller18bb4732001-03-28 14:35:30 +1000739 [
740 AC_MSG_RESULT(no)
741 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
Darren Tuckera0c2b392004-09-11 23:26:37 +1000742 ],
743 [
744 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
745 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
Damien Miller18bb4732001-03-28 14:35:30 +1000746 ]
747)
748
Damien Miller36f49652004-08-15 18:40:59 +1000749AC_MSG_CHECKING([for /proc/pid/fd directory])
750if test -d "/proc/$$/fd" ; then
751 AC_DEFINE(HAVE_PROC_PID)
752 AC_MSG_RESULT(yes)
753else
754 AC_MSG_RESULT(no)
755fi
756
Damien Millerc547bf12001-02-16 10:18:12 +1100757# Check whether user wants S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +1100758SKEY_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +1100759AC_ARG_WITH(skey,
Tim Rice13aae5e2001-10-21 17:53:58 -0700760 [ --with-skey[[=PATH]] Enable S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +1100761 (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +1100762 [
763 if test "x$withval" != "xno" ; then
764
765 if test "x$withval" != "xyes" ; then
766 CPPFLAGS="$CPPFLAGS -I${withval}/include"
767 LDFLAGS="$LDFLAGS -L${withval}/lib"
768 fi
769
770 AC_DEFINE(SKEY)
771 LIBS="-lskey $LIBS"
Damien Millera8e06ce2003-11-21 23:48:55 +1100772 SKEY_MSG="yes"
Damien Millerc547bf12001-02-16 10:18:12 +1100773
Tim Rice4cec93f2002-02-26 08:40:48 -0800774 AC_MSG_CHECKING([for s/key support])
775 AC_TRY_RUN(
Damien Millerc547bf12001-02-16 10:18:12 +1100776 [
Tim Rice4cec93f2002-02-26 08:40:48 -0800777#include <stdio.h>
778#include <skey.h>
Tim Rice2c961ce2002-09-23 16:54:10 -0700779int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
Tim Rice4cec93f2002-02-26 08:40:48 -0800780 ],
781 [AC_MSG_RESULT(yes)],
782 [
783 AC_MSG_RESULT(no)
Damien Millerc547bf12001-02-16 10:18:12 +1100784 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
785 ])
Darren Tucker3b908f62004-04-14 15:26:39 +1000786 AC_MSG_CHECKING(if skeychallenge takes 4 arguments)
787 AC_TRY_COMPILE(
788 [#include <stdio.h>
789 #include <skey.h>],
790 [(void)skeychallenge(NULL,"name","",0);],
791 [AC_MSG_RESULT(yes)
792 AC_DEFINE(SKEYCHALLENGE_4ARG)],
793 [AC_MSG_RESULT(no)]
794 )
Damien Millerc547bf12001-02-16 10:18:12 +1100795 fi
796 ]
797)
798
799# Check whether user wants TCP wrappers support
Tim Rice13aae5e2001-10-21 17:53:58 -0700800TCPW_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +1100801AC_ARG_WITH(tcp-wrappers,
Tim Rice13aae5e2001-10-21 17:53:58 -0700802 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support
Damien Millera8e06ce2003-11-21 23:48:55 +1100803 (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +1100804 [
805 if test "x$withval" != "xno" ; then
806 saved_LIBS="$LIBS"
Tim Rice13aae5e2001-10-21 17:53:58 -0700807 saved_LDFLAGS="$LDFLAGS"
808 saved_CPPFLAGS="$CPPFLAGS"
809 if test -n "${withval}" -a "${withval}" != "yes"; then
810 if test -d "${withval}/lib"; then
811 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700812 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700813 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700814 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700815 fi
816 else
817 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700818 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700819 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700820 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700821 fi
822 fi
823 if test -d "${withval}/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700824 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700825 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700826 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700827 fi
Tim Rice13aae5e2001-10-21 17:53:58 -0700828 fi
Tim Rice4cec93f2002-02-26 08:40:48 -0800829 LIBWRAP="-lwrap"
830 LIBS="$LIBWRAP $LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +1100831 AC_MSG_CHECKING(for libwrap)
832 AC_TRY_LINK(
833 [
Damien Miller0ac45002004-04-14 20:14:26 +1000834#include <sys/types.h>
835#include <sys/socket.h>
836#include <netinet/in.h>
Damien Millerc547bf12001-02-16 10:18:12 +1100837#include <tcpd.h>
838 int deny_severity = 0, allow_severity = 0;
839 ],
840 [hosts_access(0);],
841 [
842 AC_MSG_RESULT(yes)
843 AC_DEFINE(LIBWRAP)
Tim Rice4cec93f2002-02-26 08:40:48 -0800844 AC_SUBST(LIBWRAP)
Tim Rice13aae5e2001-10-21 17:53:58 -0700845 TCPW_MSG="yes"
Damien Millerc547bf12001-02-16 10:18:12 +1100846 ],
847 [
848 AC_MSG_ERROR([*** libwrap missing])
849 ]
850 )
Tim Rice4cec93f2002-02-26 08:40:48 -0800851 LIBS="$saved_LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +1100852 fi
853 ]
854)
855
Damien Millerfe1f1432003-02-24 15:45:42 +1100856dnl Checks for library functions. Please keep in alphabetical order
857AC_CHECK_FUNCS(\
Darren Tucker60bd4092004-06-25 14:03:34 +1000858 arc4random __b64_ntop b64_ntop __b64_pton b64_pton bcopy \
Damien Miller36f49652004-08-15 18:40:59 +1000859 bindresvport_sa clock closefrom dirfd fchmod fchown freeaddrinfo \
860 futimes getaddrinfo getcwd getgrouplist getnameinfo getopt \
Darren Tuckerf1159b52003-07-07 19:44:01 +1000861 getpeereid _getpty getrlimit getttyent glob inet_aton \
Damien Millerfe1f1432003-02-24 15:45:42 +1100862 inet_ntoa inet_ntop innetgr login_getcapbool md5_crypt memmove \
Damien Miller1340ec22003-05-20 09:24:42 +1000863 mkdtemp mmap ngetaddrinfo nsleep ogetaddrinfo openlog_r openpty \
Damien Miller6c4914a2004-03-03 11:08:59 +1100864 pstat prctl readpassphrase realpath recvmsg rresvport_af sendmsg \
Damien Miller1340ec22003-05-20 09:24:42 +1000865 setdtablesize setegid setenv seteuid setgroups setlogin setpcred \
Darren Tucker2a6b0292003-12-31 14:59:17 +1100866 setproctitle setregid setreuid setrlimit \
Damien Miller5fe46a42003-06-05 09:53:31 +1000867 setsid setvbuf sigaction sigvec snprintf socketpair strerror \
Darren Tucker2e8c0cc2003-10-07 17:49:56 +1000868 strlcat strlcpy strmode strnvis strtoul sysconf tcgetpgrp \
Darren Tucker86c093d2004-03-08 22:59:03 +1100869 truncate unsetenv updwtmpx utimes vhangup vsnprintf waitpid \
Damien Millerfe1f1432003-02-24 15:45:42 +1100870)
Tim Rice13aae5e2001-10-21 17:53:58 -0700871
Darren Tuckerd5e082f2003-09-22 12:08:23 +1000872# IRIX has a const char return value for gai_strerror()
873AC_CHECK_FUNCS(gai_strerror,[
874 AC_DEFINE(HAVE_GAI_STRERROR)
875 AC_TRY_COMPILE([
876#include <sys/types.h>
877#include <sys/socket.h>
878#include <netdb.h>
879
880const char *gai_strerror(int);],[
881char *str;
882
883str = gai_strerror(0);],[
884 AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1,
885 [Define if gai_strerror() returns const char *])])])
886
Damien Millercd6853c2003-01-28 11:33:42 +1100887AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP))
888
Darren Tuckerf1159b52003-07-07 19:44:01 +1000889dnl Make sure prototypes are defined for these before using them.
Ben Lindstrom3e006472002-10-16 00:24:03 +0000890AC_CHECK_DECL(strsep, [AC_CHECK_FUNCS(strsep)])
Darren Tuckerf1159b52003-07-07 19:44:01 +1000891AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
Ben Lindstrom3e006472002-10-16 00:24:03 +0000892
Darren Tuckerb2427c82003-09-10 15:22:44 +1000893dnl tcsendbreak might be a macro
894AC_CHECK_DECL(tcsendbreak,
895 [AC_DEFINE(HAVE_TCSENDBREAK)],
Damien Millera8e06ce2003-11-21 23:48:55 +1100896 [AC_CHECK_FUNCS(tcsendbreak)],
Darren Tuckerb2427c82003-09-10 15:22:44 +1000897 [#include <termios.h>]
898)
899
Darren Tucker5bb14002004-04-23 18:53:10 +1000900AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>])
901
Darren Tucker2a6b0292003-12-31 14:59:17 +1100902AC_CHECK_FUNCS(setresuid, [
903 dnl Some platorms have setresuid that isn't implemented, test for this
904 AC_MSG_CHECKING(if setresuid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +1000905 AC_RUN_IFELSE(
906 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +1100907#include <stdlib.h>
908#include <errno.h>
909int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +1000910 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +1100911 [AC_MSG_RESULT(yes)],
Darren Tuckerfd0894a2004-01-09 00:19:25 +1100912 [AC_DEFINE(BROKEN_SETRESUID)
Darren Tuckera0c2b392004-09-11 23:26:37 +1000913 AC_MSG_RESULT(not implemented)],
914 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +1100915 )
916])
Darren Tuckere937be32003-12-17 18:53:26 +1100917
Darren Tucker2a6b0292003-12-31 14:59:17 +1100918AC_CHECK_FUNCS(setresgid, [
919 dnl Some platorms have setresgid that isn't implemented, test for this
920 AC_MSG_CHECKING(if setresgid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +1000921 AC_RUN_IFELSE(
922 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +1100923#include <stdlib.h>
924#include <errno.h>
925int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +1000926 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +1100927 [AC_MSG_RESULT(yes)],
928 [AC_DEFINE(BROKEN_SETRESGID)
Darren Tuckera0c2b392004-09-11 23:26:37 +1000929 AC_MSG_RESULT(not implemented)],
930 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +1100931 )
932])
Darren Tuckere937be32003-12-17 18:53:26 +1100933
Damien Millerad833b32000-08-23 10:46:23 +1000934dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +0000935AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +1000936dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000937AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +0000938AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +1000939dnl Checks for utmpx functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000940AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
andre2ff7b5d2000-06-03 14:57:40 +0000941AC_CHECK_FUNCS(setutxent utmpxname)
Damien Millercedfecc1999-11-15 14:36:53 +1100942
Damien Millera8e06ce2003-11-21 23:48:55 +1100943AC_CHECK_FUNC(daemon,
Damien Miller04f80141999-11-19 15:32:34 +1100944 [AC_DEFINE(HAVE_DAEMON)],
945 [AC_CHECK_LIB(bsd, daemon, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
946)
947
Damien Millera8e06ce2003-11-21 23:48:55 +1100948AC_CHECK_FUNC(getpagesize,
Damien Miller9fb07e42000-03-05 16:22:59 +1100949 [AC_DEFINE(HAVE_GETPAGESIZE)],
950 [AC_CHECK_LIB(ucb, getpagesize, [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
951)
952
Damien Millercb170cb2000-07-01 16:52:55 +1000953# Check for broken snprintf
954if test "x$ac_cv_func_snprintf" = "xyes" ; then
955 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000956 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +1000957 [AC_LANG_SOURCE([[
Damien Millercb170cb2000-07-01 16:52:55 +1000958#include <stdio.h>
Tim Rice2c961ce2002-09-23 16:54:10 -0700959int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
Darren Tucker623d92f2004-09-12 22:36:15 +1000960 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +1100961 [AC_MSG_RESULT(yes)],
Damien Millercb170cb2000-07-01 16:52:55 +1000962 [
963 AC_MSG_RESULT(no)
964 AC_DEFINE(BROKEN_SNPRINTF)
965 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000966 ],
967 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
Damien Millercb170cb2000-07-01 16:52:55 +1000968 )
969fi
970
Damien Millerb4097182004-05-23 14:09:40 +1000971# Check for missing getpeereid (or equiv) support
972NO_PEERCHECK=""
973if test "x$ac_cv_func_getpeereid" != "xyes" ; then
974 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
975 AC_TRY_COMPILE(
976 [#include <sys/types.h>
977 #include <sys/socket.h>],
978 [int i = SO_PEERCRED;],
979 [AC_MSG_RESULT(yes)],
980 [AC_MSG_RESULT(no)
981 NO_PEERCHECK=1]
982 )
983fi
984
Damien Millere8328192003-01-07 15:18:32 +1100985dnl see whether mkstemp() requires XXXXXX
986if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
987AC_MSG_CHECKING([for (overly) strict mkstemp])
988AC_TRY_RUN(
989 [
990#include <stdlib.h>
991main() { char template[]="conftest.mkstemp-test";
992if (mkstemp(template) == -1)
993 exit(1);
994unlink(template); exit(0);
995}
996 ],
997 [
998 AC_MSG_RESULT(no)
999 ],
Damien Millera8e06ce2003-11-21 23:48:55 +11001000 [
Damien Millere8328192003-01-07 15:18:32 +11001001 AC_MSG_RESULT(yes)
1002 AC_DEFINE(HAVE_STRICT_MKSTEMP)
1003 ],
1004 [
1005 AC_MSG_RESULT(yes)
1006 AC_DEFINE(HAVE_STRICT_MKSTEMP)
Damien Millera8e06ce2003-11-21 23:48:55 +11001007 ]
Damien Millere8328192003-01-07 15:18:32 +11001008)
1009fi
1010
Darren Tucker70a3d552003-08-21 17:58:29 +10001011dnl make sure that openpty does not reacquire controlling terminal
1012if test ! -z "$check_for_openpty_ctty_bug"; then
1013 AC_MSG_CHECKING(if openpty correctly handles controlling tty)
1014 AC_TRY_RUN(
1015 [
1016#include <stdio.h>
1017#include <sys/fcntl.h>
1018#include <sys/types.h>
1019#include <sys/wait.h>
1020
1021int
1022main()
1023{
1024 pid_t pid;
1025 int fd, ptyfd, ttyfd, status;
1026
1027 pid = fork();
1028 if (pid < 0) { /* failed */
1029 exit(1);
1030 } else if (pid > 0) { /* parent */
1031 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +11001032 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +10001033 exit(WEXITSTATUS(status));
1034 else
1035 exit(2);
1036 } else { /* child */
1037 close(0); close(1); close(2);
1038 setsid();
1039 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
1040 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
1041 if (fd >= 0)
1042 exit(3); /* Acquired ctty: broken */
1043 else
1044 exit(0); /* Did not acquire ctty: OK */
1045 }
1046}
1047 ],
1048 [
1049 AC_MSG_RESULT(yes)
1050 ],
1051 [
1052 AC_MSG_RESULT(no)
1053 AC_DEFINE(SSHD_ACQUIRES_CTTY)
1054 ]
1055 )
1056fi
1057
Darren Tucker4398cf52004-04-06 21:39:02 +10001058if test "x$ac_cv_func_getaddrinfo" = "xyes" -a "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
1059 AC_MSG_CHECKING(if getaddrinfo seems to work)
1060 AC_TRY_RUN(
1061 [
1062#include <stdio.h>
1063#include <sys/socket.h>
1064#include <netdb.h>
1065#include <errno.h>
1066#include <netinet/in.h>
1067
1068#define TEST_PORT "2222"
1069
1070int
1071main(void)
1072{
1073 int err, sock;
1074 struct addrinfo *gai_ai, *ai, hints;
1075 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1076
1077 memset(&hints, 0, sizeof(hints));
1078 hints.ai_family = PF_UNSPEC;
1079 hints.ai_socktype = SOCK_STREAM;
1080 hints.ai_flags = AI_PASSIVE;
1081
1082 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1083 if (err != 0) {
1084 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1085 exit(1);
1086 }
1087
1088 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1089 if (ai->ai_family != AF_INET6)
1090 continue;
1091
1092 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1093 sizeof(ntop), strport, sizeof(strport),
1094 NI_NUMERICHOST|NI_NUMERICSERV);
1095
1096 if (err != 0) {
1097 if (err == EAI_SYSTEM)
1098 perror("getnameinfo EAI_SYSTEM");
1099 else
1100 fprintf(stderr, "getnameinfo failed: %s\n",
1101 gai_strerror(err));
1102 exit(2);
1103 }
1104
1105 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1106 if (sock < 0)
1107 perror("socket");
1108 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1109 if (errno == EBADF)
1110 exit(3);
1111 }
1112 }
1113 exit(0);
1114}
1115 ],
1116 [
1117 AC_MSG_RESULT(yes)
1118 ],
1119 [
1120 AC_MSG_RESULT(no)
1121 AC_DEFINE(BROKEN_GETADDRINFO)
1122 ]
1123 )
1124fi
1125
Damien Miller606f8802000-09-16 15:39:56 +11001126AC_FUNC_GETPGRP
1127
Damien Millera64b57a2001-01-17 10:44:13 +11001128# Check for PAM libs
Damien Miller7b22d652000-06-18 14:07:04 +10001129PAM_MSG="no"
Damien Millera22ba012000-03-02 23:09:20 +11001130AC_ARG_WITH(pam,
Damien Millera64b57a2001-01-17 10:44:13 +11001131 [ --with-pam Enable PAM support ],
Damien Millera22ba012000-03-02 23:09:20 +11001132 [
Damien Millera64b57a2001-01-17 10:44:13 +11001133 if test "x$withval" != "xno" ; then
Damien Miller0f47c532004-01-02 18:01:30 +11001134 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
1135 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
Damien Millera64b57a2001-01-17 10:44:13 +11001136 AC_MSG_ERROR([PAM headers not found])
1137 fi
1138
1139 AC_CHECK_LIB(dl, dlopen, , )
1140 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
1141 AC_CHECK_FUNCS(pam_getenvlist)
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001142 AC_CHECK_FUNCS(pam_putenv)
Damien Millera64b57a2001-01-17 10:44:13 +11001143
Damien Millera64b57a2001-01-17 10:44:13 +11001144 PAM_MSG="yes"
1145
1146 AC_DEFINE(USE_PAM)
Tim Rice7d2d1f12002-02-26 22:05:11 -08001147 if test $ac_cv_lib_dl_dlopen = yes; then
1148 LIBPAM="-lpam -ldl"
1149 else
1150 LIBPAM="-lpam"
1151 fi
1152 AC_SUBST(LIBPAM)
Damien Millera22ba012000-03-02 23:09:20 +11001153 fi
1154 ]
1155)
Damien Millera22ba012000-03-02 23:09:20 +11001156
Damien Millera64b57a2001-01-17 10:44:13 +11001157# Check for older PAM
1158if test "x$PAM_MSG" = "xyes" ; then
Damien Millera22ba012000-03-02 23:09:20 +11001159 # Check PAM strerror arguments (old PAM)
1160 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
1161 AC_TRY_COMPILE(
1162 [
Damien Miller81171112000-04-23 11:14:01 +10001163#include <stdlib.h>
Damien Miller0f47c532004-01-02 18:01:30 +11001164#if defined(HAVE_SECURITY_PAM_APPL_H)
Damien Miller81171112000-04-23 11:14:01 +10001165#include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +11001166#elif defined (HAVE_PAM_PAM_APPL_H)
1167#include <pam/pam_appl.h>
1168#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001169 ],
1170 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
Damien Millera22ba012000-03-02 23:09:20 +11001171 [AC_MSG_RESULT(no)],
1172 [
1173 AC_DEFINE(HAVE_OLD_PAM)
1174 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +10001175 PAM_MSG="yes (old library)"
Damien Millera22ba012000-03-02 23:09:20 +11001176 ]
Damien Millera64b57a2001-01-17 10:44:13 +11001177 )
Damien Millera22ba012000-03-02 23:09:20 +11001178fi
1179
Tim Riceaef73712002-05-11 13:17:42 -07001180# Search for OpenSSL
1181saved_CPPFLAGS="$CPPFLAGS"
1182saved_LDFLAGS="$LDFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +11001183AC_ARG_WITH(ssl-dir,
1184 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
1185 [
Ben Lindstrom23e13712000-10-29 22:49:19 +00001186 if test "x$withval" != "xno" ; then
Tim Riceaef73712002-05-11 13:17:42 -07001187 if test -d "$withval/lib"; then
1188 if test -n "${need_dash_r}"; then
1189 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1190 else
1191 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1192 fi
1193 else
1194 if test -n "${need_dash_r}"; then
1195 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
1196 else
1197 LDFLAGS="-L${withval} ${LDFLAGS}"
1198 fi
1199 fi
1200 if test -d "$withval/include"; then
1201 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
1202 else
1203 CPPFLAGS="-I${withval} ${CPPFLAGS}"
1204 fi
Damien Millera22ba012000-03-02 23:09:20 +11001205 fi
1206 ]
1207)
Tim Rice3d5352e2004-02-12 09:27:21 -08001208LIBS="-lcrypto $LIBS"
Tim Riceaef73712002-05-11 13:17:42 -07001209AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
Damien Miller3b512e12000-05-17 23:29:18 +10001210 [
Tim Riceaef73712002-05-11 13:17:42 -07001211 dnl Check default openssl install dir
1212 if test -n "${need_dash_r}"; then
1213 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001214 else
Tim Riceaef73712002-05-11 13:17:42 -07001215 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001216 fi
Tim Riceaef73712002-05-11 13:17:42 -07001217 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
1218 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
1219 [
1220 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
1221 ]
1222 )
1223 ]
1224)
1225
Tim Riced730b782002-08-13 18:52:10 -07001226# Determine OpenSSL header version
1227AC_MSG_CHECKING([OpenSSL header version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001228AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001229 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07001230#include <stdio.h>
1231#include <string.h>
1232#include <openssl/opensslv.h>
1233#define DATA "conftest.sslincver"
1234int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001235 FILE *fd;
1236 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001237
Damien Millera8e06ce2003-11-21 23:48:55 +11001238 fd = fopen(DATA,"w");
1239 if(fd == NULL)
1240 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001241
1242 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
1243 exit(1);
1244
1245 exit(0);
1246}
Darren Tucker623d92f2004-09-12 22:36:15 +10001247 ]])],
Tim Riced730b782002-08-13 18:52:10 -07001248 [
1249 ssl_header_ver=`cat conftest.sslincver`
1250 AC_MSG_RESULT($ssl_header_ver)
1251 ],
1252 [
1253 AC_MSG_RESULT(not found)
1254 AC_MSG_ERROR(OpenSSL version header not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10001255 ],
1256 [
1257 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07001258 ]
1259)
1260
1261# Determine OpenSSL library version
1262AC_MSG_CHECKING([OpenSSL library version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001263AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001264 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07001265#include <stdio.h>
1266#include <string.h>
1267#include <openssl/opensslv.h>
1268#include <openssl/crypto.h>
1269#define DATA "conftest.ssllibver"
1270int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001271 FILE *fd;
1272 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001273
Damien Millera8e06ce2003-11-21 23:48:55 +11001274 fd = fopen(DATA,"w");
1275 if(fd == NULL)
1276 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001277
1278 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
1279 exit(1);
1280
1281 exit(0);
1282}
Darren Tucker623d92f2004-09-12 22:36:15 +10001283 ]])],
Tim Riced730b782002-08-13 18:52:10 -07001284 [
1285 ssl_library_ver=`cat conftest.ssllibver`
1286 AC_MSG_RESULT($ssl_library_ver)
1287 ],
1288 [
1289 AC_MSG_RESULT(not found)
1290 AC_MSG_ERROR(OpenSSL library not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10001291 ],
1292 [
1293 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07001294 ]
1295)
Damien Millera22ba012000-03-02 23:09:20 +11001296
Damien Millerec932372002-01-22 22:16:03 +11001297# Sanity check OpenSSL headers
1298AC_MSG_CHECKING([whether OpenSSL's headers match the library])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001299AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001300 [AC_LANG_SOURCE([[
Damien Millerec932372002-01-22 22:16:03 +11001301#include <string.h>
1302#include <openssl/opensslv.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001303int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10001304 ]])],
Damien Millerec932372002-01-22 22:16:03 +11001305 [
1306 AC_MSG_RESULT(yes)
1307 ],
1308 [
1309 AC_MSG_RESULT(no)
Darren Tuckera0472e02003-06-24 20:22:09 +10001310 AC_MSG_ERROR([Your OpenSSL headers do not match your library.
1311Check config.log for details.
1312Also see contrib/findssl.sh for help identifying header/library mismatches.])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001313 ],
1314 [
1315 AC_MSG_WARN([cross compiling: not checking])
Damien Millerec932372002-01-22 22:16:03 +11001316 ]
1317)
1318
Tim Rice3d5352e2004-02-12 09:27:21 -08001319# Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
1320# because the system crypt() is more featureful.
1321if test "x$check_for_libcrypt_before" = "x1"; then
1322 AC_CHECK_LIB(crypt, crypt)
1323fi
1324
Damien Millera8e06ce2003-11-21 23:48:55 +11001325# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
Tim Rice43fa5572004-02-11 14:46:40 -08001326# version in OpenSSL.
Damien Miller4f9f42a2003-05-10 19:28:02 +10001327if test "x$check_for_libcrypt_later" = "x1"; then
Damien Miller95aa2d62001-03-01 09:16:11 +11001328 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
Damien Millera64b57a2001-01-17 10:44:13 +11001329fi
1330
Damien Miller6c21c512002-01-22 21:57:53 +11001331
1332### Configure cryptographic random number support
1333
1334# Check wheter OpenSSL seeds itself
1335AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001336AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001337 [AC_LANG_SOURCE([[
Damien Miller6c21c512002-01-22 21:57:53 +11001338#include <string.h>
1339#include <openssl/rand.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001340int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10001341 ]])],
Damien Miller6c21c512002-01-22 21:57:53 +11001342 [
1343 OPENSSL_SEEDS_ITSELF=yes
1344 AC_MSG_RESULT(yes)
1345 ],
1346 [
1347 AC_MSG_RESULT(no)
1348 # Default to use of the rand helper if OpenSSL doesn't
1349 # seed itself
1350 USE_RAND_HELPER=yes
Darren Tuckera0c2b392004-09-11 23:26:37 +10001351 ],
1352 [
1353 AC_MSG_WARN([cross compiling: assuming yes])
1354 # This is safe, since all recent OpenSSL versions will
1355 # complain at runtime if not seeded correctly.
1356 OPENSSL_SEEDS_ITSELF=yes
Damien Miller6c21c512002-01-22 21:57:53 +11001357 ]
1358)
1359
1360
1361# Do we want to force the use of the rand helper?
1362AC_ARG_WITH(rand-helper,
1363 [ --with-rand-helper Use subprocess to gather strong randomness ],
1364 [
1365 if test "x$withval" = "xno" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11001366 # Force use of OpenSSL's internal RNG, even if
Damien Miller6c21c512002-01-22 21:57:53 +11001367 # the previous test showed it to be unseeded.
1368 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
1369 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
1370 OPENSSL_SEEDS_ITSELF=yes
1371 USE_RAND_HELPER=""
1372 fi
1373 else
1374 USE_RAND_HELPER=yes
1375 fi
1376 ],
1377)
1378
1379# Which randomness source do we use?
1380if test ! -z "$OPENSSL_SEEDS_ITSELF" -a -z "$USE_RAND_HELPER" ; then
1381 # OpenSSL only
1382 AC_DEFINE(OPENSSL_PRNG_ONLY)
1383 RAND_MSG="OpenSSL internal ONLY"
1384 INSTALL_SSH_RAND_HELPER=""
Tim Rice1e2c6002002-01-30 22:14:03 -08001385elif test ! -z "$USE_RAND_HELPER" ; then
1386 # install rand helper
Damien Miller6c21c512002-01-22 21:57:53 +11001387 RAND_MSG="ssh-rand-helper"
1388 INSTALL_SSH_RAND_HELPER="yes"
1389fi
1390AC_SUBST(INSTALL_SSH_RAND_HELPER)
1391
1392### Configuration of ssh-rand-helper
1393
1394# PRNGD TCP socket
1395AC_ARG_WITH(prngd-port,
1396 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
1397 [
Damien Millere996d722002-01-23 11:20:59 +11001398 case "$withval" in
1399 no)
1400 withval=""
1401 ;;
1402 [[0-9]]*)
1403 ;;
1404 *)
1405 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
1406 ;;
1407 esac
1408 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001409 PRNGD_PORT="$withval"
1410 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT)
1411 fi
1412 ]
1413)
1414
1415# PRNGD Unix domain socket
1416AC_ARG_WITH(prngd-socket,
1417 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
1418 [
Damien Millere996d722002-01-23 11:20:59 +11001419 case "$withval" in
1420 yes)
Damien Miller6c21c512002-01-22 21:57:53 +11001421 withval="/var/run/egd-pool"
Damien Millere996d722002-01-23 11:20:59 +11001422 ;;
1423 no)
1424 withval=""
1425 ;;
1426 /*)
1427 ;;
1428 *)
1429 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
1430 ;;
1431 esac
1432
1433 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001434 if test ! -z "$PRNGD_PORT" ; then
1435 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
1436 fi
Damien Miller6385ba02002-01-23 08:12:36 +11001437 if test ! -r "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001438 AC_MSG_WARN(Entropy socket is not readable)
1439 fi
1440 PRNGD_SOCKET="$withval"
1441 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
1442 fi
Tim Rice4cec93f2002-02-26 08:40:48 -08001443 ],
1444 [
1445 # Check for existing socket only if we don't have a random device already
1446 if test "$USE_RAND_HELPER" = yes ; then
1447 AC_MSG_CHECKING(for PRNGD/EGD socket)
1448 # Insert other locations here
1449 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
1450 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
1451 PRNGD_SOCKET="$sock"
1452 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
1453 break;
1454 fi
1455 done
1456 if test ! -z "$PRNGD_SOCKET" ; then
1457 AC_MSG_RESULT($PRNGD_SOCKET)
1458 else
1459 AC_MSG_RESULT(not found)
1460 fi
1461 fi
Damien Miller6c21c512002-01-22 21:57:53 +11001462 ]
1463)
1464
1465# Change default command timeout for hashing entropy source
1466entropy_timeout=200
1467AC_ARG_WITH(entropy-timeout,
1468 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
1469 [
1470 if test "x$withval" != "xno" ; then
1471 entropy_timeout=$withval
1472 fi
1473 ]
1474)
Damien Miller6c21c512002-01-22 21:57:53 +11001475AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1476
Damien Millerd3f6ad22002-06-25 10:24:47 +10001477SSH_PRIVSEP_USER=sshd
Kevin Steves7ff91122002-04-07 19:22:54 +00001478AC_ARG_WITH(privsep-user,
Kevin Stevesc81e1292002-05-13 03:51:40 +00001479 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00001480 [
1481 if test -n "$withval"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10001482 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00001483 fi
1484 ]
1485)
Damien Millerd3f6ad22002-06-25 10:24:47 +10001486AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER")
1487AC_SUBST(SSH_PRIVSEP_USER)
Kevin Steves7ff91122002-04-07 19:22:54 +00001488
Tim Rice88f2ab52002-03-17 12:17:34 -08001489# We do this little dance with the search path to insure
1490# that programs that we select for use by installed programs
1491# (which may be run by the super-user) come from trusted
1492# locations before they come from the user's private area.
1493# This should help avoid accidentally configuring some
1494# random version of a program in someone's personal bin.
1495
1496OPATH=$PATH
1497PATH=/bin:/usr/bin
Tim Riceae49fe62002-04-12 10:26:21 -07001498test -h /bin 2> /dev/null && PATH=/usr/bin
Tim Rice88f2ab52002-03-17 12:17:34 -08001499test -d /sbin && PATH=$PATH:/sbin
1500test -d /usr/sbin && PATH=$PATH:/usr/sbin
1501PATH=$PATH:/etc:$OPATH
1502
Damien Millera8e06ce2003-11-21 23:48:55 +11001503# These programs are used by the command hashing source to gather entropy
Damien Miller6c21c512002-01-22 21:57:53 +11001504OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
1505OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
1506OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
1507OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
1508OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
1509OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
1510OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
1511OSSH_PATH_ENTROPY_PROG(PROG_W, w)
1512OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
1513OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
1514OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
1515OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
1516OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
1517OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
1518OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
1519OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
Tim Rice88f2ab52002-03-17 12:17:34 -08001520# restore PATH
1521PATH=$OPATH
Damien Miller6c21c512002-01-22 21:57:53 +11001522
1523# Where does ssh-rand-helper get its randomness from?
1524INSTALL_SSH_PRNG_CMDS=""
1525if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
1526 if test ! -z "$PRNGD_PORT" ; then
1527 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
1528 elif test ! -z "$PRNGD_SOCKET" ; then
1529 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
1530 else
1531 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
1532 RAND_HELPER_CMDHASH=yes
1533 INSTALL_SSH_PRNG_CMDS="yes"
1534 fi
1535fi
1536AC_SUBST(INSTALL_SSH_PRNG_CMDS)
1537
1538
Ben Lindstromb5628642000-10-18 00:02:25 +00001539# Cheap hack to ensure NEWS-OS libraries are arranged right.
1540if test ! -z "$SONY" ; then
1541 LIBS="$LIBS -liberty";
1542fi
1543
Damien Millera22ba012000-03-02 23:09:20 +11001544# Checks for data types
Damien Millere0f45742000-01-18 09:12:06 +11001545AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +11001546AC_CHECK_SIZEOF(short int, 2)
1547AC_CHECK_SIZEOF(int, 4)
1548AC_CHECK_SIZEOF(long int, 4)
1549AC_CHECK_SIZEOF(long long int, 8)
1550
Damien Millerfa2bb692002-04-23 23:22:25 +10001551# Sanity check long long for some platforms (AIX)
1552if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
1553 ac_cv_sizeof_long_long_int=0
1554fi
1555
Damien Millera22ba012000-03-02 23:09:20 +11001556# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11001557AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
1558 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001559 [ #include <sys/types.h> ],
1560 [ u_int a; a = 1;],
Damien Millercaf6dd62000-08-29 11:33:50 +11001561 [ ac_cv_have_u_int="yes" ],
1562 [ ac_cv_have_u_int="no" ]
1563 )
1564])
1565if test "x$ac_cv_have_u_int" = "xyes" ; then
1566 AC_DEFINE(HAVE_U_INT)
1567 have_u_int=1
1568fi
1569
Damien Miller61e50f12000-05-08 20:49:37 +10001570AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
1571 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001572 [ #include <sys/types.h> ],
1573 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10001574 [ ac_cv_have_intxx_t="yes" ],
1575 [ ac_cv_have_intxx_t="no" ]
1576 )
1577])
1578if test "x$ac_cv_have_intxx_t" = "xyes" ; then
1579 AC_DEFINE(HAVE_INTXX_T)
1580 have_intxx_t=1
1581fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001582
1583if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11001584 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001585then
1586 AC_MSG_CHECKING([for intXX_t types in stdint.h])
1587 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001588 [ #include <stdint.h> ],
1589 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001590 [
1591 AC_DEFINE(HAVE_INTXX_T)
1592 AC_MSG_RESULT(yes)
1593 ],
1594 [ AC_MSG_RESULT(no) ]
1595 )
1596fi
1597
Damien Miller578783e2000-09-23 14:12:24 +11001598AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
1599 AC_TRY_COMPILE(
Tim Rice907881e2002-07-18 11:44:50 -07001600 [
1601#include <sys/types.h>
1602#ifdef HAVE_STDINT_H
1603# include <stdint.h>
1604#endif
1605#include <sys/socket.h>
1606#ifdef HAVE_SYS_BITYPES_H
1607# include <sys/bitypes.h>
1608#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001609 ],
1610 [ int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11001611 [ ac_cv_have_int64_t="yes" ],
1612 [ ac_cv_have_int64_t="no" ]
1613 )
1614])
1615if test "x$ac_cv_have_int64_t" = "xyes" ; then
1616 AC_DEFINE(HAVE_INT64_T)
Tim Rice4cec93f2002-02-26 08:40:48 -08001617fi
1618
Damien Miller61e50f12000-05-08 20:49:37 +10001619AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
1620 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001621 [ #include <sys/types.h> ],
1622 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10001623 [ ac_cv_have_u_intxx_t="yes" ],
1624 [ ac_cv_have_u_intxx_t="no" ]
1625 )
1626])
1627if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
1628 AC_DEFINE(HAVE_U_INTXX_T)
1629 have_u_intxx_t=1
1630fi
Damien Millerc6398ef1999-11-20 12:18:40 +11001631
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001632if test -z "$have_u_intxx_t" ; then
1633 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
1634 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001635 [ #include <sys/socket.h> ],
1636 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001637 [
1638 AC_DEFINE(HAVE_U_INTXX_T)
1639 AC_MSG_RESULT(yes)
1640 ],
1641 [ AC_MSG_RESULT(no) ]
1642 )
1643fi
1644
Damien Miller578783e2000-09-23 14:12:24 +11001645AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
1646 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001647 [ #include <sys/types.h> ],
1648 [ u_int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11001649 [ ac_cv_have_u_int64_t="yes" ],
1650 [ ac_cv_have_u_int64_t="no" ]
1651 )
1652])
1653if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
1654 AC_DEFINE(HAVE_U_INT64_T)
1655 have_u_int64_t=1
1656fi
1657
Tim Rice4cec93f2002-02-26 08:40:48 -08001658if test -z "$have_u_int64_t" ; then
1659 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
1660 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001661 [ #include <sys/bitypes.h> ],
Tim Rice4cec93f2002-02-26 08:40:48 -08001662 [ u_int64_t a; a = 1],
1663 [
1664 AC_DEFINE(HAVE_U_INT64_T)
1665 AC_MSG_RESULT(yes)
1666 ],
1667 [ AC_MSG_RESULT(no) ]
1668 )
1669fi
1670
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001671if test -z "$have_u_intxx_t" ; then
1672 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
1673 AC_TRY_COMPILE(
1674 [
1675#include <sys/types.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11001676 ],
1677 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001678 [ ac_cv_have_uintxx_t="yes" ],
1679 [ ac_cv_have_uintxx_t="no" ]
1680 )
1681 ])
1682 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
1683 AC_DEFINE(HAVE_UINTXX_T)
1684 fi
1685fi
1686
1687if test -z "$have_uintxx_t" ; then
1688 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
1689 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001690 [ #include <stdint.h> ],
1691 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001692 [
1693 AC_DEFINE(HAVE_UINTXX_T)
1694 AC_MSG_RESULT(yes)
1695 ],
1696 [ AC_MSG_RESULT(no) ]
1697 )
1698fi
1699
Damien Milleredb82922000-06-20 13:25:52 +10001700if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11001701 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11001702then
1703 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
1704 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +10001705 [
1706#include <sys/bitypes.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11001707 ],
Damien Millerb29ea912000-01-15 14:12:03 +11001708 [
Damien Miller70494d12000-04-03 15:57:06 +10001709 int8_t a; int16_t b; int32_t c;
1710 u_int8_t e; u_int16_t f; u_int32_t g;
1711 a = b = c = e = f = g = 1;
Damien Millera8e06ce2003-11-21 23:48:55 +11001712 ],
Damien Millerb29ea912000-01-15 14:12:03 +11001713 [
1714 AC_DEFINE(HAVE_U_INTXX_T)
1715 AC_DEFINE(HAVE_INTXX_T)
1716 AC_MSG_RESULT(yes)
1717 ],
1718 [AC_MSG_RESULT(no)]
Damien Millera8e06ce2003-11-21 23:48:55 +11001719 )
Damien Millerb29ea912000-01-15 14:12:03 +11001720fi
1721
Damien Miller58be7382001-09-15 21:31:54 +10001722
1723AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
1724 AC_TRY_COMPILE(
1725 [
1726#include <sys/types.h>
1727 ],
1728 [ u_char foo; foo = 125; ],
1729 [ ac_cv_have_u_char="yes" ],
1730 [ ac_cv_have_u_char="no" ]
1731 )
1732])
1733if test "x$ac_cv_have_u_char" = "xyes" ; then
1734 AC_DEFINE(HAVE_U_CHAR)
1735fi
1736
Tim Rice13aae5e2001-10-21 17:53:58 -07001737TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11001738
Tim Rice200a5c02002-02-26 22:12:34 -08001739AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
Tim Rice4cec93f2002-02-26 08:40:48 -08001740
Damien Miller61e50f12000-05-08 20:49:37 +10001741AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
1742 AC_TRY_COMPILE(
1743 [
1744#include <sys/types.h>
1745 ],
1746 [ size_t foo; foo = 1235; ],
1747 [ ac_cv_have_size_t="yes" ],
1748 [ ac_cv_have_size_t="no" ]
1749 )
1750])
1751if test "x$ac_cv_have_size_t" = "xyes" ; then
1752 AC_DEFINE(HAVE_SIZE_T)
1753fi
Damien Miller95058511999-12-29 10:36:45 +11001754
Damien Miller615f9392000-05-17 22:53:33 +10001755AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
1756 AC_TRY_COMPILE(
1757 [
1758#include <sys/types.h>
1759 ],
1760 [ ssize_t foo; foo = 1235; ],
1761 [ ac_cv_have_ssize_t="yes" ],
1762 [ ac_cv_have_ssize_t="no" ]
1763 )
1764])
1765if test "x$ac_cv_have_ssize_t" = "xyes" ; then
1766 AC_DEFINE(HAVE_SSIZE_T)
1767fi
1768
Ben Lindstrom0d5af602001-01-09 00:50:29 +00001769AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
1770 AC_TRY_COMPILE(
1771 [
1772#include <time.h>
1773 ],
1774 [ clock_t foo; foo = 1235; ],
1775 [ ac_cv_have_clock_t="yes" ],
1776 [ ac_cv_have_clock_t="no" ]
1777 )
1778])
1779if test "x$ac_cv_have_clock_t" = "xyes" ; then
1780 AC_DEFINE(HAVE_CLOCK_T)
1781fi
1782
Damien Millerb54b40e2000-06-23 08:23:34 +10001783AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
1784 AC_TRY_COMPILE(
1785 [
1786#include <sys/types.h>
1787#include <sys/socket.h>
1788 ],
1789 [ sa_family_t foo; foo = 1235; ],
1790 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +11001791 [ AC_TRY_COMPILE(
1792 [
1793#include <sys/types.h>
1794#include <sys/socket.h>
1795#include <netinet/in.h>
1796 ],
1797 [ sa_family_t foo; foo = 1235; ],
1798 [ ac_cv_have_sa_family_t="yes" ],
1799
Damien Millerb54b40e2000-06-23 08:23:34 +10001800 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +11001801 )]
Damien Millerb54b40e2000-06-23 08:23:34 +10001802 )
1803])
1804if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
1805 AC_DEFINE(HAVE_SA_FAMILY_T)
1806fi
1807
Damien Miller0f91b4e2000-06-18 15:43:25 +10001808AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
1809 AC_TRY_COMPILE(
1810 [
1811#include <sys/types.h>
1812 ],
1813 [ pid_t foo; foo = 1235; ],
1814 [ ac_cv_have_pid_t="yes" ],
1815 [ ac_cv_have_pid_t="no" ]
1816 )
1817])
1818if test "x$ac_cv_have_pid_t" = "xyes" ; then
1819 AC_DEFINE(HAVE_PID_T)
1820fi
1821
1822AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
1823 AC_TRY_COMPILE(
1824 [
1825#include <sys/types.h>
1826 ],
1827 [ mode_t foo; foo = 1235; ],
1828 [ ac_cv_have_mode_t="yes" ],
1829 [ ac_cv_have_mode_t="no" ]
1830 )
1831])
1832if test "x$ac_cv_have_mode_t" = "xyes" ; then
1833 AC_DEFINE(HAVE_MODE_T)
1834fi
1835
Damien Miller61e50f12000-05-08 20:49:37 +10001836
1837AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
1838 AC_TRY_COMPILE(
1839 [
Damien Miller81171112000-04-23 11:14:01 +10001840#include <sys/types.h>
1841#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001842 ],
1843 [ struct sockaddr_storage s; ],
1844 [ ac_cv_have_struct_sockaddr_storage="yes" ],
1845 [ ac_cv_have_struct_sockaddr_storage="no" ]
1846 )
1847])
1848if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
1849 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)
1850fi
Damien Miller34132e52000-01-14 15:45:46 +11001851
Damien Miller61e50f12000-05-08 20:49:37 +10001852AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
1853 AC_TRY_COMPILE(
1854 [
Damien Miller7b22d652000-06-18 14:07:04 +10001855#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001856#include <netinet/in.h>
1857 ],
1858 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
1859 [ ac_cv_have_struct_sockaddr_in6="yes" ],
1860 [ ac_cv_have_struct_sockaddr_in6="no" ]
1861 )
1862])
1863if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
1864 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)
1865fi
Damien Miller34132e52000-01-14 15:45:46 +11001866
Damien Miller61e50f12000-05-08 20:49:37 +10001867AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
1868 AC_TRY_COMPILE(
1869 [
Damien Miller7b22d652000-06-18 14:07:04 +10001870#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001871#include <netinet/in.h>
1872 ],
1873 [ struct in6_addr s; s.s6_addr[0] = 0; ],
1874 [ ac_cv_have_struct_in6_addr="yes" ],
1875 [ ac_cv_have_struct_in6_addr="no" ]
1876 )
1877])
1878if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
1879 AC_DEFINE(HAVE_STRUCT_IN6_ADDR)
1880fi
Damien Miller34132e52000-01-14 15:45:46 +11001881
Damien Miller61e50f12000-05-08 20:49:37 +10001882AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
1883 AC_TRY_COMPILE(
1884 [
Damien Miller81171112000-04-23 11:14:01 +10001885#include <sys/types.h>
1886#include <sys/socket.h>
1887#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001888 ],
1889 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
1890 [ ac_cv_have_struct_addrinfo="yes" ],
1891 [ ac_cv_have_struct_addrinfo="no" ]
1892 )
1893])
1894if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
1895 AC_DEFINE(HAVE_STRUCT_ADDRINFO)
1896fi
1897
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001898AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
1899 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001900 [ #include <sys/time.h> ],
1901 [ struct timeval tv; tv.tv_sec = 1;],
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001902 [ ac_cv_have_struct_timeval="yes" ],
1903 [ ac_cv_have_struct_timeval="no" ]
1904 )
1905])
1906if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
1907 AC_DEFINE(HAVE_STRUCT_TIMEVAL)
1908 have_struct_timeval=1
1909fi
1910
Tim Rice4e4dc562003-03-18 10:21:40 -08001911AC_CHECK_TYPES(struct timespec)
1912
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00001913# We need int64_t or else certian parts of the compile will fail.
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001914if test "x$ac_cv_have_int64_t" = "xno" -a \
1915 "x$ac_cv_sizeof_long_int" != "x8" -a \
1916 "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00001917 echo "OpenSSH requires int64_t support. Contact your vendor or install"
1918 echo "an alternative compiler (I.E., GCC) before continuing."
1919 echo ""
1920 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08001921else
1922dnl test snprintf (broken on SCO w/gcc)
Darren Tuckera0c2b392004-09-11 23:26:37 +10001923 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001924 [AC_LANG_SOURCE([[
Tim Ricebee3f222001-03-11 17:32:12 -08001925#include <stdio.h>
1926#include <string.h>
1927#ifdef HAVE_SNPRINTF
1928main()
1929{
1930 char buf[50];
1931 char expected_out[50];
1932 int mazsize = 50 ;
1933#if (SIZEOF_LONG_INT == 8)
1934 long int num = 0x7fffffffffffffff;
1935#else
Kevin Steves6482ec82001-07-15 02:09:28 +00001936 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08001937#endif
1938 strcpy(expected_out, "9223372036854775807");
1939 snprintf(buf, mazsize, "%lld", num);
1940 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11001941 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08001942 exit(0);
1943}
1944#else
1945main() { exit(0); }
1946#endif
Darren Tucker623d92f2004-09-12 22:36:15 +10001947 ]])], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],
Darren Tuckera0c2b392004-09-11 23:26:37 +10001948 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
Tim Ricebee3f222001-03-11 17:32:12 -08001949 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001950fi
1951
Damien Miller78315eb2000-09-29 23:01:36 +11001952dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10001953OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
1954OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
1955OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
1956OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
1957OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10001958OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001959OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
1960OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10001961OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001962OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
1963OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
1964OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
1965OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00001966OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
1967OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
1968OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
1969OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Tim Rice13aae5e2001-10-21 17:53:58 -07001970
1971AC_CHECK_MEMBERS([struct stat.st_blksize])
andre2ff7b5d2000-06-03 14:57:40 +00001972
Damien Miller61e50f12000-05-08 20:49:37 +10001973AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
1974 ac_cv_have_ss_family_in_struct_ss, [
1975 AC_TRY_COMPILE(
1976 [
Damien Miller81171112000-04-23 11:14:01 +10001977#include <sys/types.h>
1978#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001979 ],
1980 [ struct sockaddr_storage s; s.ss_family = 1; ],
1981 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
1982 [ ac_cv_have_ss_family_in_struct_ss="no" ],
1983 )
1984])
1985if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
1986 AC_DEFINE(HAVE_SS_FAMILY_IN_SS)
1987fi
1988
Damien Miller61e50f12000-05-08 20:49:37 +10001989AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
1990 ac_cv_have___ss_family_in_struct_ss, [
1991 AC_TRY_COMPILE(
1992 [
Damien Miller81171112000-04-23 11:14:01 +10001993#include <sys/types.h>
1994#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001995 ],
1996 [ struct sockaddr_storage s; s.__ss_family = 1; ],
1997 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
1998 [ ac_cv_have___ss_family_in_struct_ss="no" ]
1999 )
2000])
2001if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
2002 AC_DEFINE(HAVE___SS_FAMILY_IN_SS)
2003fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11002004
Damien Millerad833b32000-08-23 10:46:23 +10002005AC_CACHE_CHECK([for pw_class field in struct passwd],
2006 ac_cv_have_pw_class_in_struct_passwd, [
2007 AC_TRY_COMPILE(
2008 [
Damien Millerad833b32000-08-23 10:46:23 +10002009#include <pwd.h>
2010 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00002011 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10002012 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
2013 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
2014 )
2015])
2016if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
2017 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD)
2018fi
2019
Kevin Steves82456952001-06-22 21:14:18 +00002020AC_CACHE_CHECK([for pw_expire field in struct passwd],
2021 ac_cv_have_pw_expire_in_struct_passwd, [
2022 AC_TRY_COMPILE(
2023 [
2024#include <pwd.h>
2025 ],
2026 [ struct passwd p; p.pw_expire = 0; ],
2027 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
2028 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
2029 )
2030])
2031if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
2032 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD)
2033fi
2034
2035AC_CACHE_CHECK([for pw_change field in struct passwd],
2036 ac_cv_have_pw_change_in_struct_passwd, [
2037 AC_TRY_COMPILE(
2038 [
2039#include <pwd.h>
2040 ],
2041 [ struct passwd p; p.pw_change = 0; ],
2042 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
2043 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
2044 )
2045])
2046if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
2047 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD)
2048fi
Damien Miller61e50f12000-05-08 20:49:37 +10002049
Tim Rice28bbb0c2002-05-27 17:37:32 -07002050dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00002051AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
2052 ac_cv_have_accrights_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10002053 AC_COMPILE_IFELSE(
Kevin Steves939c9db2002-03-22 17:23:25 +00002054 [
Tim Riceae49fe62002-04-12 10:26:21 -07002055#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00002056#include <sys/socket.h>
2057#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07002058int main() {
2059#ifdef msg_accrights
Darren Tuckera0c2b392004-09-11 23:26:37 +10002060#error "msg_accrights is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07002061exit(1);
2062#endif
2063struct msghdr m;
2064m.msg_accrights = 0;
2065exit(0);
2066}
Kevin Steves939c9db2002-03-22 17:23:25 +00002067 ],
Kevin Steves939c9db2002-03-22 17:23:25 +00002068 [ ac_cv_have_accrights_in_msghdr="yes" ],
2069 [ ac_cv_have_accrights_in_msghdr="no" ]
2070 )
2071])
2072if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
2073 AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR)
2074fi
2075
Kevin Stevesa44e0352002-04-07 16:18:03 +00002076AC_CACHE_CHECK([for msg_control field in struct msghdr],
2077 ac_cv_have_control_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10002078 AC_COMPILE_IFELSE(
Kevin Stevesa44e0352002-04-07 16:18:03 +00002079 [
Tim Riceae49fe62002-04-12 10:26:21 -07002080#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00002081#include <sys/socket.h>
2082#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07002083int main() {
2084#ifdef msg_control
Darren Tuckera0c2b392004-09-11 23:26:37 +10002085#error "msg_control is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07002086exit(1);
2087#endif
2088struct msghdr m;
2089m.msg_control = 0;
2090exit(0);
2091}
Kevin Stevesa44e0352002-04-07 16:18:03 +00002092 ],
Kevin Stevesa44e0352002-04-07 16:18:03 +00002093 [ ac_cv_have_control_in_msghdr="yes" ],
2094 [ ac_cv_have_control_in_msghdr="no" ]
2095 )
2096])
2097if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
2098 AC_DEFINE(HAVE_CONTROL_IN_MSGHDR)
2099fi
2100
Damien Miller61e50f12000-05-08 20:49:37 +10002101AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002102 AC_TRY_LINK([],
2103 [ extern char *__progname; printf("%s", __progname); ],
Damien Miller61e50f12000-05-08 20:49:37 +10002104 [ ac_cv_libc_defines___progname="yes" ],
2105 [ ac_cv_libc_defines___progname="no" ]
2106 )
2107])
2108if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
2109 AC_DEFINE(HAVE___PROGNAME)
2110fi
2111
Kevin Steves4846f4a2002-03-22 18:19:53 +00002112AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
2113 AC_TRY_LINK([
2114#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002115],
2116 [ printf("%s", __FUNCTION__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00002117 [ ac_cv_cc_implements___FUNCTION__="yes" ],
2118 [ ac_cv_cc_implements___FUNCTION__="no" ]
2119 )
2120])
2121if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
2122 AC_DEFINE(HAVE___FUNCTION__)
2123fi
2124
2125AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
2126 AC_TRY_LINK([
2127#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002128],
2129 [ printf("%s", __func__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00002130 [ ac_cv_cc_implements___func__="yes" ],
2131 [ ac_cv_cc_implements___func__="no" ]
2132 )
2133])
2134if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
2135 AC_DEFINE(HAVE___func__)
2136fi
2137
Damien Miller4f8e6692001-07-14 13:22:53 +10002138AC_CACHE_CHECK([whether getopt has optreset support],
2139 ac_cv_have_getopt_optreset, [
2140 AC_TRY_LINK(
2141 [
2142#include <getopt.h>
2143 ],
2144 [ extern int optreset; optreset = 0; ],
2145 [ ac_cv_have_getopt_optreset="yes" ],
2146 [ ac_cv_have_getopt_optreset="no" ]
2147 )
2148])
2149if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
2150 AC_DEFINE(HAVE_GETOPT_OPTRESET)
2151fi
Damien Millera22ba012000-03-02 23:09:20 +11002152
Damien Millerecbb26d2000-07-15 14:59:14 +10002153AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002154 AC_TRY_LINK([],
2155 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
Damien Millerecbb26d2000-07-15 14:59:14 +10002156 [ ac_cv_libc_defines_sys_errlist="yes" ],
2157 [ ac_cv_libc_defines_sys_errlist="no" ]
2158 )
2159])
2160if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
2161 AC_DEFINE(HAVE_SYS_ERRLIST)
2162fi
2163
2164
Damien Miller11fa2cc2000-08-16 10:35:58 +10002165AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002166 AC_TRY_LINK([],
2167 [ extern int sys_nerr; printf("%i", sys_nerr);],
Damien Miller11fa2cc2000-08-16 10:35:58 +10002168 [ ac_cv_libc_defines_sys_nerr="yes" ],
2169 [ ac_cv_libc_defines_sys_nerr="no" ]
2170 )
2171])
2172if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
2173 AC_DEFINE(HAVE_SYS_NERR)
2174fi
2175
Damien Millera8e06ce2003-11-21 23:48:55 +11002176SCARD_MSG="no"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002177# Check whether user wants sectok support
2178AC_ARG_WITH(sectok,
2179 [ --with-sectok Enable smartcard support using libsectok],
Damien Miller85de5802001-09-18 14:01:11 +10002180 [
2181 if test "x$withval" != "xno" ; then
2182 if test "x$withval" != "xyes" ; then
2183 CPPFLAGS="$CPPFLAGS -I${withval}"
2184 LDFLAGS="$LDFLAGS -L${withval}"
2185 if test ! -z "$need_dash_r" ; then
2186 LDFLAGS="$LDFLAGS -R${withval}"
2187 fi
2188 if test ! -z "$blibpath" ; then
2189 blibpath="$blibpath:${withval}"
2190 fi
2191 fi
2192 AC_CHECK_HEADERS(sectok.h)
2193 if test "$ac_cv_header_sectok_h" != yes; then
2194 AC_MSG_ERROR(Can't find sectok.h)
2195 fi
2196 AC_CHECK_LIB(sectok, sectok_open)
2197 if test "$ac_cv_lib_sectok_sectok_open" != yes; then
2198 AC_MSG_ERROR(Can't find libsectok)
2199 fi
2200 AC_DEFINE(SMARTCARD)
Ben Lindstroma42694f2002-04-05 16:11:45 +00002201 AC_DEFINE(USE_SECTOK)
Damien Millera8e06ce2003-11-21 23:48:55 +11002202 SCARD_MSG="yes, using sectok"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002203 fi
2204 ]
2205)
2206
2207# Check whether user wants OpenSC support
2208AC_ARG_WITH(opensc,
Damien Millerf6195f22002-04-23 22:48:46 +10002209 AC_HELP_STRING([--with-opensc=PFX],
2210 [Enable smartcard support using OpenSC]),
2211 opensc_config_prefix="$withval", opensc_config_prefix="")
2212if test x$opensc_config_prefix != x ; then
2213 OPENSC_CONFIG=$opensc_config_prefix/bin/opensc-config
2214 AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no)
2215 if test "$OPENSC_CONFIG" != "no"; then
2216 LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags`
2217 LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs`
2218 CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS"
2219 LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS"
2220 AC_DEFINE(SMARTCARD)
2221 AC_DEFINE(USE_OPENSC)
Damien Millera8e06ce2003-11-21 23:48:55 +11002222 SCARD_MSG="yes, using OpenSC"
Damien Millerf6195f22002-04-23 22:48:46 +10002223 fi
2224fi
Damien Miller85de5802001-09-18 14:01:11 +10002225
Darren Tucker5f88d342003-10-15 16:57:57 +10002226# Check libraries needed by DNS fingerprint support
Damien Millera8e06ce2003-11-21 23:48:55 +11002227AC_SEARCH_LIBS(getrrsetbyname, resolv,
Darren Tucker5f88d342003-10-15 16:57:57 +10002228 [AC_DEFINE(HAVE_GETRRSETBYNAME)],
Damien Miller7abe09b2003-05-15 10:53:49 +10002229 [
Darren Tucker5f88d342003-10-15 16:57:57 +10002230 # Needed by our getrrsetbyname()
2231 AC_SEARCH_LIBS(res_query, resolv)
2232 AC_SEARCH_LIBS(dn_expand, resolv)
Darren Tucker8e968a52004-05-13 11:56:16 +10002233 AC_MSG_CHECKING(if res_query will link)
2234 AC_TRY_LINK_FUNC(res_query, AC_MSG_RESULT(yes),
2235 [AC_MSG_RESULT(no)
2236 saved_LIBS="$LIBS"
2237 LIBS="$LIBS -lresolv"
2238 AC_MSG_CHECKING(for res_query in -lresolv)
2239 AC_LINK_IFELSE([
2240#include <resolv.h>
2241int main()
2242{
2243 res_query (0, 0, 0, 0, 0);
2244 return 0;
2245}
2246 ],
2247 [LIBS="$LIBS -lresolv"
2248 AC_MSG_RESULT(yes)],
2249 [LIBS="$saved_LIBS"
2250 AC_MSG_RESULT(no)])
2251 ])
Darren Tucker5f88d342003-10-15 16:57:57 +10002252 AC_CHECK_FUNCS(_getshort _getlong)
2253 AC_CHECK_MEMBER(HEADER.ad,
2254 [AC_DEFINE(HAVE_HEADER_AD)],,
2255 [#include <arpa/nameser.h>])
2256 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10002257
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002258# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11002259KRB5_MSG="no"
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002260AC_ARG_WITH(kerberos5,
Damien Millera8e06ce2003-11-21 23:48:55 +11002261 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11002262 [ if test "x$withval" != "xno" ; then
2263 if test "x$withval" = "xyes" ; then
2264 KRB5ROOT="/usr/local"
2265 else
2266 KRB5ROOT=${withval}
2267 fi
2268
2269 AC_DEFINE(KRB5)
2270 KRB5_MSG="yes"
2271
2272 AC_MSG_CHECKING(for krb5-config)
2273 if test -x $KRB5ROOT/bin/krb5-config ; then
2274 KRB5CONF=$KRB5ROOT/bin/krb5-config
2275 AC_MSG_RESULT($KRB5CONF)
2276
2277 AC_MSG_CHECKING(for gssapi support)
2278 if $KRB5CONF | grep gssapi >/dev/null ; then
2279 AC_MSG_RESULT(yes)
Darren Tucker0d27ed12004-02-24 10:37:33 +11002280 AC_DEFINE(GSSAPI)
2281 k5confopts=gssapi
Damien Millera8e06ce2003-11-21 23:48:55 +11002282 else
Darren Tucker1d3ca582004-01-22 12:05:34 +11002283 AC_MSG_RESULT(no)
Darren Tucker0d27ed12004-02-24 10:37:33 +11002284 k5confopts=""
Damien Millera8e06ce2003-11-21 23:48:55 +11002285 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11002286 K5CFLAGS="`$KRB5CONF --cflags $k5confopts`"
2287 K5LIBS="`$KRB5CONF --libs $k5confopts`"
Darren Tucker1d3ca582004-01-22 12:05:34 +11002288 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11002289 AC_MSG_CHECKING(whether we are using Heimdal)
2290 AC_TRY_COMPILE([ #include <krb5.h> ],
2291 [ char *tmp = heimdal_version; ],
2292 [ AC_MSG_RESULT(yes)
2293 AC_DEFINE(HEIMDAL) ],
2294 AC_MSG_RESULT(no)
2295 )
2296 else
2297 AC_MSG_RESULT(no)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002298 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11002299 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Damien Millera8e06ce2003-11-21 23:48:55 +11002300 AC_MSG_CHECKING(whether we are using Heimdal)
2301 AC_TRY_COMPILE([ #include <krb5.h> ],
2302 [ char *tmp = heimdal_version; ],
2303 [ AC_MSG_RESULT(yes)
2304 AC_DEFINE(HEIMDAL)
Damien Miller5561e0b2004-04-20 20:28:55 +10002305 K5LIBS="-lkrb5 -ldes"
2306 K5LIBS="$K5LIBS -lcom_err -lasn1"
2307 AC_CHECK_LIB(roken, net_write,
2308 [K5LIBS="$K5LIBS -lroken"])
Damien Millera8e06ce2003-11-21 23:48:55 +11002309 ],
2310 [ AC_MSG_RESULT(no)
2311 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
2312 ]
2313 )
Damien Miller200d0a72003-06-30 19:21:36 +10002314 AC_SEARCH_LIBS(dn_expand, resolv)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002315
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002316 AC_CHECK_LIB(gssapi,gss_init_sec_context,
2317 [ AC_DEFINE(GSSAPI)
2318 K5LIBS="-lgssapi $K5LIBS" ],
2319 [ AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context,
2320 [ AC_DEFINE(GSSAPI)
Damien Millera8e06ce2003-11-21 23:48:55 +11002321 K5LIBS="-lgssapi_krb5 $K5LIBS" ],
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002322 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
2323 $K5LIBS)
2324 ],
2325 $K5LIBS)
2326
2327 AC_CHECK_HEADER(gssapi.h, ,
2328 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11002329 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002330 AC_CHECK_HEADERS(gssapi.h, ,
2331 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11002332 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002333 ]
2334 )
2335
2336 oldCPP="$CPPFLAGS"
2337 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
2338 AC_CHECK_HEADER(gssapi_krb5.h, ,
2339 [ CPPFLAGS="$oldCPP" ])
2340
Damien Millera8e06ce2003-11-21 23:48:55 +11002341 fi
Darren Tucker1d3ca582004-01-22 12:05:34 +11002342 if test ! -z "$need_dash_r" ; then
2343 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
2344 fi
2345 if test ! -z "$blibpath" ; then
2346 blibpath="$blibpath:${KRB5ROOT}/lib"
2347 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11002348 fi
2349
2350 AC_CHECK_HEADERS(gssapi.h gssapi/gssapi.h)
2351 AC_CHECK_HEADERS(gssapi_krb5.h gssapi/gssapi_krb5.h)
2352 AC_CHECK_HEADERS(gssapi_generic.h gssapi/gssapi_generic.h)
2353
2354 LIBS="$LIBS $K5LIBS"
2355 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS))
Ben Lindstroma8104b52004-04-07 04:16:11 +00002356 AC_SEARCH_LIBS(krb5_init_ets, $K5LIBS, AC_DEFINE(KRB5_INIT_ETS))
Darren Tucker0d27ed12004-02-24 10:37:33 +11002357 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002358)
Damien Millerc79bc0d2001-03-28 13:03:42 +10002359
Damien Millera22ba012000-03-02 23:09:20 +11002360# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11002361
Damien Millerf58c6722002-05-13 13:15:42 +10002362PRIVSEP_PATH=/var/empty
2363AC_ARG_WITH(privsep-path,
Tim Ricecbb90662002-07-08 19:17:10 -07002364 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10002365 [
2366 if test "x$withval" != "$no" ; then
2367 PRIVSEP_PATH=$withval
2368 fi
2369 ]
2370)
2371AC_SUBST(PRIVSEP_PATH)
2372
Damien Millera22ba012000-03-02 23:09:20 +11002373AC_ARG_WITH(xauth,
2374 [ --with-xauth=PATH Specify path to xauth program ],
2375 [
Ben Lindstrom76020ba2000-10-25 16:55:00 +00002376 if test "x$withval" != "xno" ; then
Damien Miller7b22d652000-06-18 14:07:04 +10002377 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11002378 fi
2379 ],
2380 [
Tim Ricee22be3b2002-07-17 19:20:07 -07002381 TestPath="$PATH"
2382 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
2383 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
2384 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
2385 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
2386 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
Damien Milleredb82922000-06-20 13:25:52 +10002387 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11002388 xauth_path="/usr/openwin/bin/xauth"
2389 fi
2390 ]
2391)
2392
Damien Miller7d901272003-01-13 16:55:22 +11002393STRIP_OPT=-s
2394AC_ARG_ENABLE(strip,
2395 [ --disable-strip Disable calling strip(1) on install],
2396 [
2397 if test "x$enableval" = "xno" ; then
2398 STRIP_OPT=
2399 fi
2400 ]
2401)
2402AC_SUBST(STRIP_OPT)
2403
Damien Millera19cf472000-11-29 13:28:50 +11002404if test -z "$xauth_path" ; then
2405 XAUTH_PATH="undefined"
2406 AC_SUBST(XAUTH_PATH)
2407else
Damien Millera22ba012000-03-02 23:09:20 +11002408 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
Damien Millera19cf472000-11-29 13:28:50 +11002409 XAUTH_PATH=$xauth_path
2410 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11002411fi
Damien Millera22ba012000-03-02 23:09:20 +11002412
2413# Check for mail directory (last resort if we cannot get it from headers)
2414if test ! -z "$MAIL" ; then
2415 maildir=`dirname $MAIL`
2416 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir")
2417fi
2418
Darren Tucker623d92f2004-09-12 22:36:15 +10002419if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10002420 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
2421 disable_ptmx_check=yes
2422fi
Damien Millera22ba012000-03-02 23:09:20 +11002423if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00002424 if test "x$disable_ptmx_check" != "xyes" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11002425 AC_CHECK_FILE("/dev/ptmx",
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00002426 [
2427 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
2428 have_dev_ptmx=1
2429 ]
2430 )
2431 fi
Damien Millera22ba012000-03-02 23:09:20 +11002432fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10002433
Darren Tucker623d92f2004-09-12 22:36:15 +10002434if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10002435 AC_CHECK_FILE("/dev/ptc",
2436 [
2437 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
2438 have_dev_ptc=1
2439 ]
2440 )
2441else
2442 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
2443fi
Damien Miller204ad072000-03-02 23:56:12 +11002444
Damien Millera22ba012000-03-02 23:09:20 +11002445# Options from here on. Some of these are preset by platform above
Ben Lindstrom9841b0a2001-06-09 02:26:58 +00002446AC_ARG_WITH(mantype,
Damien Miller897741e2001-04-16 10:41:46 +10002447 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11002448 [
Damien Miller897741e2001-04-16 10:41:46 +10002449 case "$withval" in
2450 man|cat|doc)
2451 MANTYPE=$withval
2452 ;;
2453 *)
2454 AC_MSG_ERROR(invalid man type: $withval)
2455 ;;
2456 esac
Damien Miller670a4b82000-01-22 13:53:11 +11002457 ]
2458)
Ben Lindstrombc709922001-04-18 18:04:21 +00002459if test -z "$MANTYPE"; then
Tim Ricee22be3b2002-07-17 19:20:07 -07002460 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
2461 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
Ben Lindstrombc709922001-04-18 18:04:21 +00002462 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
2463 MANTYPE=doc
2464 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
2465 MANTYPE=man
2466 else
2467 MANTYPE=cat
2468 fi
2469fi
Damien Miller670a4b82000-01-22 13:53:11 +11002470AC_SUBST(MANTYPE)
Ben Lindstrombc709922001-04-18 18:04:21 +00002471if test "$MANTYPE" = "doc"; then
2472 mansubdir=man;
2473else
2474 mansubdir=$MANTYPE;
2475fi
2476AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11002477
Damien Millera22ba012000-03-02 23:09:20 +11002478# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11002479MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11002480AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11002481 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11002482 [
Damien Millerb85dcad2000-03-11 11:37:00 +11002483 if test "x$withval" != "xno" ; then
Damien Miller8bdeee21999-12-30 15:50:54 +11002484 AC_DEFINE(HAVE_MD5_PASSWORDS)
Damien Millera8e06ce2003-11-21 23:48:55 +11002485 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11002486 fi
2487 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11002488)
2489
Damien Millera22ba012000-03-02 23:09:20 +11002490# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11002491AC_ARG_WITH(shadow,
2492 [ --without-shadow Disable shadow password support],
2493 [
2494 if test "x$withval" = "xno" ; then
2495 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10002496 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11002497 fi
2498 ]
2499)
2500
Damien Miller1f335fb2000-06-26 11:31:33 +10002501if test -z "$disable_shadow" ; then
2502 AC_MSG_CHECKING([if the systems has expire shadow information])
2503 AC_TRY_COMPILE(
2504 [
2505#include <sys/types.h>
2506#include <shadow.h>
2507 struct spwd sp;
2508 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
2509 [ sp_expire_available=yes ], []
2510 )
2511
2512 if test "x$sp_expire_available" = "xyes" ; then
2513 AC_MSG_RESULT(yes)
2514 AC_DEFINE(HAS_SHADOW_EXPIRE)
2515 else
2516 AC_MSG_RESULT(no)
2517 fi
2518fi
2519
Damien Millera22ba012000-03-02 23:09:20 +11002520# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11002521if test ! -z "$IPADDR_IN_DISPLAY" ; then
2522 DISPLAY_HACK_MSG="yes"
2523 AC_DEFINE(IPADDR_IN_DISPLAY)
2524else
Damien Millera8e06ce2003-11-21 23:48:55 +11002525 DISPLAY_HACK_MSG="no"
Damien Miller9a947342000-08-30 10:03:33 +11002526 AC_ARG_WITH(ipaddr-display,
2527 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
2528 [
2529 if test "x$withval" != "xno" ; then
2530 AC_DEFINE(IPADDR_IN_DISPLAY)
Damien Millera8e06ce2003-11-21 23:48:55 +11002531 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11002532 fi
2533 ]
2534 )
2535fi
Damien Miller76112de1999-12-21 11:18:08 +11002536
Darren Tuckere1a790d2003-09-16 11:52:19 +10002537# check for /etc/default/login and use it if present.
Tim Rice7ff4e6d2003-09-22 19:50:14 -07002538AC_ARG_ENABLE(etc-default-login,
2539 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],,
Darren Tuckera0c2b392004-09-11 23:26:37 +10002540 [ AC_CHECK_FILE("/etc/default/login",
2541 [ external_path_file=/etc/default/login ])
Darren Tuckere1a790d2003-09-16 11:52:19 +10002542
Darren Tucker623d92f2004-09-12 22:36:15 +10002543 if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
2544 then
Darren Tuckera0c2b392004-09-11 23:26:37 +10002545 AC_MSG_WARN([cross compiling: Disabling /etc/default/login test])
2546 elif test "x$external_path_file" = "x/etc/default/login"; then
2547 AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN)
2548 fi
2549 ]
2550)
Darren Tuckere1a790d2003-09-16 11:52:19 +10002551
Tim Rice43a1c132002-04-17 21:19:14 -07002552dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
2553if test $ac_cv_func_login_getcapbool = "yes" -a \
2554 $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10002555 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07002556fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10002557
Damien Millera22ba012000-03-02 23:09:20 +11002558# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11002559SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11002560AC_ARG_WITH(default-path,
Damien Millerf71d2a52002-05-13 15:14:08 +10002561 [ --with-default-path= Specify default \$PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11002562 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10002563 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07002564 AC_MSG_WARN([
2565--with-default-path=PATH has no effect on this system.
2566Edit /etc/login.conf instead.])
2567 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07002568 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10002569 AC_MSG_WARN([
2570--with-default-path=PATH will only be used if PATH is not defined in
2571$external_path_file .])
2572 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08002573 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11002574 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11002575 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08002576 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10002577 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
2578 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07002579 else
Tim Riceb925b4b2003-09-15 22:40:49 -07002580 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10002581 AC_MSG_WARN([
2582If PATH is defined in $external_path_file, ensure the path to scp is included,
2583otherwise scp will not work.])
2584 fi
2585 AC_TRY_RUN(
2586 [
Tim Rice59ea0a02001-03-10 13:50:45 -08002587/* find out what STDPATH is */
2588#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08002589#ifdef HAVE_PATHS_H
2590# include <paths.h>
2591#endif
2592#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08002593# ifdef _PATH_USERPATH /* Irix */
2594# define _PATH_STDPATH _PATH_USERPATH
2595# else
2596# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
2597# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08002598#endif
2599#include <sys/types.h>
2600#include <sys/stat.h>
2601#include <fcntl.h>
2602#define DATA "conftest.stdpath"
2603
2604main()
2605{
2606 FILE *fd;
2607 int rc;
2608
2609 fd = fopen(DATA,"w");
2610 if(fd == NULL)
2611 exit(1);
2612
2613 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
2614 exit(1);
2615
2616 exit(0);
2617}
2618 ], [ user_path=`cat conftest.stdpath` ],
2619 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
2620 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
2621 )
2622# make sure $bindir is in USER_PATH so scp will work
2623 t_bindir=`eval echo ${bindir}`
2624 case $t_bindir in
2625 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
2626 esac
2627 case $t_bindir in
2628 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
2629 esac
2630 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
2631 if test $? -ne 0 ; then
2632 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
2633 if test $? -ne 0 ; then
2634 user_path=$user_path:$t_bindir
2635 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
2636 fi
2637 fi
Tim Rice43a1c132002-04-17 21:19:14 -07002638 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11002639)
Darren Tuckere1a790d2003-09-16 11:52:19 +10002640if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07002641 AC_DEFINE_UNQUOTED(USER_PATH, "$user_path")
2642 AC_SUBST(user_path)
2643fi
Damien Miller5a3e6831999-12-27 09:48:56 +11002644
Damien Millera18bbd32002-05-13 10:48:57 +10002645# Set superuser path separately to user path
Damien Millera18bbd32002-05-13 10:48:57 +10002646AC_ARG_WITH(superuser-path,
2647 [ --with-superuser-path= Specify different path for super-user],
2648 [
2649 if test "x$withval" != "xno" ; then
2650 AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval")
2651 superuser_path=$withval
2652 fi
2653 ]
2654)
2655
2656
Damien Miller61e50f12000-05-08 20:49:37 +10002657AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11002658IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11002659AC_ARG_WITH(4in6,
2660 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
2661 [
2662 if test "x$withval" != "xno" ; then
2663 AC_MSG_RESULT(yes)
2664 AC_DEFINE(IPV4_IN_IPV6)
Damien Millera8e06ce2003-11-21 23:48:55 +11002665 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11002666 else
2667 AC_MSG_RESULT(no)
2668 fi
2669 ],[
2670 if test "x$inet6_default_4in6" = "xyes"; then
2671 AC_MSG_RESULT([yes (default)])
2672 AC_DEFINE(IPV4_IN_IPV6)
Damien Millera8e06ce2003-11-21 23:48:55 +11002673 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11002674 else
2675 AC_MSG_RESULT([no (default)])
2676 fi
2677 ]
2678)
2679
Damien Miller60396b02001-02-18 17:01:00 +11002680# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11002681BSD_AUTH_MSG=no
Damien Miller60396b02001-02-18 17:01:00 +11002682AC_ARG_WITH(bsd-auth,
2683 [ --with-bsd-auth Enable BSD auth support],
2684 [
2685 if test "x$withval" != "xno" ; then
2686 AC_DEFINE(BSD_AUTH)
Damien Miller6c21c512002-01-22 21:57:53 +11002687 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11002688 fi
2689 ]
2690)
2691
Damien Millera22ba012000-03-02 23:09:20 +11002692# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11002693piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11002694# make sure the directory exists
2695if test ! -d $piddir ; then
2696 piddir=`eval echo ${sysconfdir}`
2697 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11002698 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11002699 esac
2700fi
2701
Tim Rice88f2ab52002-03-17 12:17:34 -08002702AC_ARG_WITH(pid-dir,
2703 [ --with-pid-dir=PATH Specify location of ssh.pid file],
2704 [
2705 if test "x$withval" != "xno" ; then
2706 piddir=$withval
2707 if test ! -d $piddir ; then
2708 AC_MSG_WARN([** no $piddir directory on this system **])
2709 fi
2710 fi
2711 ]
2712)
2713
Ben Lindstrom226cfa02001-01-22 05:34:40 +00002714AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir")
Damien Millerb13c73e2000-01-17 22:02:17 +11002715AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11002716
andre2ff7b5d2000-06-03 14:57:40 +00002717dnl allow user to disable some login recording features
2718AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00002719 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002720 [
2721 if test "x$enableval" = "xno" ; then
2722 AC_DEFINE(DISABLE_LASTLOG)
2723 fi
2724 ]
andre2ff7b5d2000-06-03 14:57:40 +00002725)
2726AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00002727 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002728 [
2729 if test "x$enableval" = "xno" ; then
2730 AC_DEFINE(DISABLE_UTMP)
2731 fi
2732 ]
andre2ff7b5d2000-06-03 14:57:40 +00002733)
2734AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00002735 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002736 [
2737 if test "x$enableval" = "xno" ; then
2738 AC_DEFINE(DISABLE_UTMPX)
2739 fi
2740 ]
andre2ff7b5d2000-06-03 14:57:40 +00002741)
2742AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00002743 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002744 [
2745 if test "x$enableval" = "xno" ; then
2746 AC_DEFINE(DISABLE_WTMP)
2747 fi
2748 ]
andre2ff7b5d2000-06-03 14:57:40 +00002749)
2750AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00002751 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002752 [
2753 if test "x$enableval" = "xno" ; then
2754 AC_DEFINE(DISABLE_WTMPX)
2755 fi
2756 ]
andre2ff7b5d2000-06-03 14:57:40 +00002757)
2758AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00002759 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002760 [
2761 if test "x$enableval" = "xno" ; then
2762 AC_DEFINE(DISABLE_LOGIN)
2763 fi
2764 ]
andre2ff7b5d2000-06-03 14:57:40 +00002765)
2766AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00002767 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002768 [
2769 if test "x$enableval" = "xno" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11002770 AC_DEFINE(DISABLE_PUTUTLINE)
Darren Tuckera3020db2003-06-28 12:54:33 +10002771 fi
2772 ]
andre2ff7b5d2000-06-03 14:57:40 +00002773)
2774AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00002775 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002776 [
2777 if test "x$enableval" = "xno" ; then
2778 AC_DEFINE(DISABLE_PUTUTXLINE)
2779 fi
2780 ]
andre2ff7b5d2000-06-03 14:57:40 +00002781)
2782AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00002783 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11002784 [
2785 if test "x$withval" = "xno" ; then
2786 AC_DEFINE(DISABLE_LASTLOG)
2787 else
2788 conf_lastlog_location=$withval
2789 fi
2790 ]
2791)
andre2ff7b5d2000-06-03 14:57:40 +00002792
2793dnl lastlog, [uw]tmpx? detection
2794dnl NOTE: set the paths in the platform section to avoid the
2795dnl need for command-line parameters
2796dnl lastlog and [uw]tmp are subject to a file search if all else fails
2797
2798dnl lastlog detection
2799dnl NOTE: the code itself will detect if lastlog is a directory
2800AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
2801AC_TRY_COMPILE([
2802#include <sys/types.h>
2803#include <utmp.h>
2804#ifdef HAVE_LASTLOG_H
2805# include <lastlog.h>
2806#endif
Damien Miller2994e082000-06-04 15:51:47 +10002807#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002808# include <paths.h>
2809#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002810#ifdef HAVE_LOGIN_H
2811# include <login.h>
2812#endif
andre2ff7b5d2000-06-03 14:57:40 +00002813 ],
2814 [ char *lastlog = LASTLOG_FILE; ],
2815 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10002816 [
2817 AC_MSG_RESULT(no)
2818 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
2819 AC_TRY_COMPILE([
2820#include <sys/types.h>
2821#include <utmp.h>
2822#ifdef HAVE_LASTLOG_H
2823# include <lastlog.h>
2824#endif
2825#ifdef HAVE_PATHS_H
2826# include <paths.h>
2827#endif
2828 ],
2829 [ char *lastlog = _PATH_LASTLOG; ],
2830 [ AC_MSG_RESULT(yes) ],
2831 [
andree441aa32000-06-12 22:34:38 +00002832 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10002833 system_lastlog_path=no
2834 ])
2835 ]
andre2ff7b5d2000-06-03 14:57:40 +00002836)
Damien Miller2994e082000-06-04 15:51:47 +10002837
andre2ff7b5d2000-06-03 14:57:40 +00002838if test -z "$conf_lastlog_location"; then
2839 if test x"$system_lastlog_path" = x"no" ; then
2840 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10002841 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00002842 conf_lastlog_location=$f
2843 fi
2844 done
2845 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00002846 AC_MSG_WARN([** Cannot find lastlog **])
2847 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00002848 fi
2849 fi
2850fi
2851
2852if test -n "$conf_lastlog_location"; then
2853 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location")
2854fi
2855
2856dnl utmp detection
2857AC_MSG_CHECKING([if your system defines UTMP_FILE])
2858AC_TRY_COMPILE([
2859#include <sys/types.h>
2860#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10002861#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002862# include <paths.h>
2863#endif
2864 ],
2865 [ char *utmp = UTMP_FILE; ],
2866 [ AC_MSG_RESULT(yes) ],
2867 [ AC_MSG_RESULT(no)
2868 system_utmp_path=no ]
2869)
2870if test -z "$conf_utmp_location"; then
2871 if test x"$system_utmp_path" = x"no" ; then
2872 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
2873 if test -f $f ; then
2874 conf_utmp_location=$f
2875 fi
2876 done
2877 if test -z "$conf_utmp_location"; then
2878 AC_DEFINE(DISABLE_UTMP)
2879 fi
2880 fi
2881fi
2882if test -n "$conf_utmp_location"; then
2883 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location")
2884fi
2885
2886dnl wtmp detection
2887AC_MSG_CHECKING([if your system defines WTMP_FILE])
2888AC_TRY_COMPILE([
2889#include <sys/types.h>
2890#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10002891#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002892# include <paths.h>
2893#endif
2894 ],
2895 [ char *wtmp = WTMP_FILE; ],
2896 [ AC_MSG_RESULT(yes) ],
2897 [ AC_MSG_RESULT(no)
2898 system_wtmp_path=no ]
2899)
2900if test -z "$conf_wtmp_location"; then
2901 if test x"$system_wtmp_path" = x"no" ; then
2902 for f in /usr/adm/wtmp /var/log/wtmp; do
2903 if test -f $f ; then
2904 conf_wtmp_location=$f
2905 fi
2906 done
2907 if test -z "$conf_wtmp_location"; then
2908 AC_DEFINE(DISABLE_WTMP)
2909 fi
2910 fi
2911fi
2912if test -n "$conf_wtmp_location"; then
2913 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location")
2914fi
2915
2916
2917dnl utmpx detection - I don't know any system so perverse as to require
2918dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
2919dnl there, though.
2920AC_MSG_CHECKING([if your system defines UTMPX_FILE])
2921AC_TRY_COMPILE([
2922#include <sys/types.h>
2923#include <utmp.h>
2924#ifdef HAVE_UTMPX_H
2925#include <utmpx.h>
2926#endif
Damien Miller2994e082000-06-04 15:51:47 +10002927#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002928# include <paths.h>
2929#endif
2930 ],
2931 [ char *utmpx = UTMPX_FILE; ],
2932 [ AC_MSG_RESULT(yes) ],
2933 [ AC_MSG_RESULT(no)
2934 system_utmpx_path=no ]
2935)
2936if test -z "$conf_utmpx_location"; then
2937 if test x"$system_utmpx_path" = x"no" ; then
2938 AC_DEFINE(DISABLE_UTMPX)
2939 fi
2940else
2941 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location")
2942fi
2943
2944dnl wtmpx detection
2945AC_MSG_CHECKING([if your system defines WTMPX_FILE])
2946AC_TRY_COMPILE([
2947#include <sys/types.h>
2948#include <utmp.h>
2949#ifdef HAVE_UTMPX_H
2950#include <utmpx.h>
2951#endif
Damien Miller2994e082000-06-04 15:51:47 +10002952#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002953# include <paths.h>
2954#endif
2955 ],
2956 [ char *wtmpx = WTMPX_FILE; ],
2957 [ AC_MSG_RESULT(yes) ],
2958 [ AC_MSG_RESULT(no)
2959 system_wtmpx_path=no ]
2960)
2961if test -z "$conf_wtmpx_location"; then
2962 if test x"$system_wtmpx_path" = x"no" ; then
2963 AC_DEFINE(DISABLE_WTMPX)
2964 fi
2965else
2966 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location")
2967fi
2968
Damien Miller4018c192000-04-30 09:30:44 +10002969
Damien Miller29ea30d2000-03-17 10:54:15 +11002970if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10002971 LDFLAGS="$LDFLAGS $blibflags$blibpath"
2972 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11002973fi
2974
Tim Rice4cec93f2002-02-26 08:40:48 -08002975dnl remove pam and dl because they are in $LIBPAM
2976if test "$PAM_MSG" = yes ; then
Tim Rice7d2d1f12002-02-26 22:05:11 -08002977 LIBS=`echo $LIBS | sed 's/-lpam //'`
2978fi
2979if test "$ac_cv_lib_pam_pam_set_item" = yes ; then
2980 LIBS=`echo $LIBS | sed 's/-ldl //'`
Tim Rice4cec93f2002-02-26 08:40:48 -08002981fi
2982
Damien Millerbac2d8a2000-09-05 16:13:06 +11002983AC_EXEEXT
Tim Rice5af9db92004-06-19 19:31:06 -07002984AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openbsd-compat/Makefile scard/Makefile ssh_prng_cmds])
Tim Rice13aae5e2001-10-21 17:53:58 -07002985AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10002986
Damien Miller7b22d652000-06-18 14:07:04 +10002987# Print summary of options
2988
Damien Miller7b22d652000-06-18 14:07:04 +10002989# Someone please show me a better way :)
2990A=`eval echo ${prefix}` ; A=`eval echo ${A}`
2991B=`eval echo ${bindir}` ; B=`eval echo ${B}`
2992C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
2993D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00002994E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00002995F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10002996G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10002997H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
2998I=`eval echo ${user_path}` ; I=`eval echo ${I}`
2999J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10003000
3001echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00003002echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10003003echo " User binaries: $B"
3004echo " System binaries: $C"
3005echo " Configuration files: $D"
3006echo " Askpass program: $E"
3007echo " Manual pages: $F"
3008echo " PID file: $G"
3009echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10003010if test "x$external_path_file" = "x/etc/login.conf" ; then
3011echo " At runtime, sshd will use the path defined in $external_path_file"
3012echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07003013else
Damien Millerf58c6722002-05-13 13:15:42 +10003014echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07003015 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003016echo " (If PATH is set in $external_path_file it will be used instead. If"
3017echo " used, ensure the path to scp is present, otherwise scp will not work.)"
3018 fi
Tim Rice43a1c132002-04-17 21:19:14 -07003019fi
Damien Millera18bbd32002-05-13 10:48:57 +10003020if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10003021echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10003022fi
Damien Millerf58c6722002-05-13 13:15:42 +10003023echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10003024echo " PAM support: $PAM_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003025echo " KerberosV support: $KRB5_MSG"
3026echo " Smartcard support: $SCARD_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003027echo " S/KEY support: $SKEY_MSG"
3028echo " TCP Wrappers support: $TCPW_MSG"
3029echo " MD5 password support: $MD5_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10003030echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003031echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
3032echo " BSD Auth support: $BSD_AUTH_MSG"
3033echo " Random number source: $RAND_MSG"
Damien Miller6c21c512002-01-22 21:57:53 +11003034if test ! -z "$USE_RAND_HELPER" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10003035echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
Damien Miller60396b02001-02-18 17:01:00 +11003036fi
3037
Damien Miller7b22d652000-06-18 14:07:04 +10003038echo ""
3039
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00003040echo " Host: ${host}"
3041echo " Compiler: ${CC}"
3042echo " Compiler flags: ${CFLAGS}"
3043echo "Preprocessor flags: ${CPPFLAGS}"
3044echo " Linker flags: ${LDFLAGS}"
Tim Rice4cec93f2002-02-26 08:40:48 -08003045echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}"
Damien Miller7b22d652000-06-18 14:07:04 +10003046
3047echo ""
3048
Tim Rice6f1f7582004-05-30 21:38:51 -07003049if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
Darren Tuckercf59d312004-08-29 21:18:09 +10003050 echo "SVR4 style packages are supported with \"make package\""
3051 echo ""
Tim Rice6f1f7582004-05-30 21:38:51 -07003052fi
3053
Damien Miller82cf0ce2000-12-20 13:34:48 +11003054if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11003055 echo "PAM is enabled. You may need to install a PAM control file "
3056 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11003057 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11003058 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11003059 echo ""
3060fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003061
Damien Miller6c21c512002-01-22 21:57:53 +11003062if test ! -z "$RAND_HELPER_CMDHASH" ; then
3063 echo "WARNING: you are using the builtin random number collection "
3064 echo "service. Please read WARNING.RNG and request that your OS "
3065 echo "vendor includes kernel-based random number collection in "
3066 echo "future versions of your OS."
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003067 echo ""
3068fi
Damien Miller60396b02001-02-18 17:01:00 +11003069
Damien Millerb4097182004-05-23 14:09:40 +10003070if test ! -z "$NO_PEERCHECK" ; then
3071 echo "WARNING: the operating system that you are using does not "
3072 echo "appear to support either the getpeereid() API nor the "
3073 echo "SO_PEERCRED getsockopt() option. These facilities are used to "
3074 echo "enforce security checks to prevent unauthorised connections to "
3075 echo "ssh-agent. Their absence increases the risk that a malicious "
3076 echo "user can connect to your agent. "
3077 echo ""
3078fi
3079