blob: f6cd7bb959481e02b9420e13dad18e542a030ffa [file] [log] [blame]
Darren Tucker0249f932006-06-24 12:10:07 +10001# $Id: configure.ac,v 1.342 2006/06/24 02:10:07 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
Darren Tucker6a45f3d2005-06-03 19:33:10 +100017AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
Darren Tucker0249f932006-06-24 12:10:07 +100018AC_REVISION($Revision: 1.342 $)
Tim Rice13aae5e2001-10-21 17:53:58 -070019AC_CONFIG_SRCDIR([ssh.c])
Damien Miller7f6ea021999-10-28 13:25:17 +100020
21AC_CONFIG_HEADER(config.h)
Damien Miller856799b2000-03-15 21:18:10 +110022AC_PROG_CC
Damien Miller76112de1999-12-21 11:18:08 +110023AC_CANONICAL_HOST
Damien Miller4df5c762001-02-28 08:14:22 +110024AC_C_BIGENDIAN
Damien Miller7f6ea021999-10-28 13:25:17 +100025
Damien Millera22ba012000-03-02 23:09:20 +110026# Checks for programs.
Darren Tucker167bd9c2003-09-07 12:34:54 +100027AC_PROG_AWK
Damien Millerab18c411999-11-11 10:40:23 +110028AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +100029AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110030AC_PROG_INSTALL
Tim Ricefd80ddc2006-02-02 19:11:56 -080031AC_PROG_EGREP
Ben Lindstrom582d3982001-02-06 22:54:30 +000032AC_PATH_PROG(AR, ar)
Tim Rice5af9db92004-06-19 19:31:06 -070033AC_PATH_PROG(CAT, cat)
34AC_PATH_PROG(KILL, kill)
Tim Riceb8fbb8e2001-04-21 14:31:52 -070035AC_PATH_PROGS(PERL, perl5 perl)
Tim Riced0d7a8b2003-01-08 17:22:59 -080036AC_PATH_PROG(SED, sed)
Damien Millere79334a1999-12-29 10:03:37 +110037AC_SUBST(PERL)
Damien Miller8d1fd572000-05-17 21:34:07 +100038AC_PATH_PROG(ENT, ent)
39AC_SUBST(ENT)
Damien Miller4864e8f2001-02-08 10:07:08 +110040AC_PATH_PROG(TEST_MINUS_S_SH, bash)
41AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
42AC_PATH_PROG(TEST_MINUS_S_SH, sh)
Tim Rice0502a472002-05-08 16:04:14 -070043AC_PATH_PROG(SH, sh)
Tim Ricef7ba8f62004-06-20 10:37:32 -070044AC_SUBST(TEST_SHELL,sh)
Damien Miller2e1b0821999-12-25 10:11:29 +110045
Tim Rice6f1f7582004-05-30 21:38:51 -070046dnl for buildpkg.sh
47AC_PATH_PROG(PATH_GROUPADD_PROG, groupadd, groupadd,
48 [/usr/sbin${PATH_SEPARATOR}/etc])
49AC_PATH_PROG(PATH_USERADD_PROG, useradd, useradd,
50 [/usr/sbin${PATH_SEPARATOR}/etc])
51AC_CHECK_PROG(MAKE_PACKAGE_SUPPORTED, pkgmk, yes, no)
Darren Tuckerfbea7642006-01-30 00:22:39 +110052if test -x /sbin/sh; then
53 AC_SUBST(STARTUP_SCRIPT_SHELL,/sbin/sh)
54else
55 AC_SUBST(STARTUP_SCRIPT_SHELL,/bin/sh)
56fi
Tim Rice6f1f7582004-05-30 21:38:51 -070057
Damien Millere8bb4502001-09-25 16:39:35 +100058# System features
59AC_SYS_LARGEFILE
60
Damien Miller3f62aba2000-11-29 11:56:35 +110061if test -z "$AR" ; then
62 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
63fi
64
Damien Millerad833b32000-08-23 10:46:23 +100065# Use LOGIN_PROGRAM from environment if possible
66if test ! -z "$LOGIN_PROGRAM" ; then
Tim Rice7df8d392005-09-19 09:33:39 -070067 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM",
68 [If your header files don't define LOGIN_PROGRAM,
69 then use this (detected) from environment and PATH])
Damien Millerad833b32000-08-23 10:46:23 +100070else
71 # Search for login
72 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
73 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
74 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
75 fi
76fi
77
Darren Tucker23bc8d02004-02-06 16:24:31 +110078AC_PATH_PROG(PATH_PASSWD_PROG, passwd)
79if test ! -z "$PATH_PASSWD_PROG" ; then
Tim Rice7df8d392005-09-19 09:33:39 -070080 AC_DEFINE_UNQUOTED(_PATH_PASSWD_PROG, "$PATH_PASSWD_PROG",
81 [Full path of your "passwd" program])
Darren Tucker23bc8d02004-02-06 16:24:31 +110082fi
83
Damien Miller166bd442000-03-16 10:48:25 +110084if test -z "$LD" ; then
85 LD=$CC
86fi
87AC_SUBST(LD)
Tim Riceeae17cc2005-03-17 16:52:20 -080088
Damien Miller166bd442000-03-16 10:48:25 +110089AC_C_INLINE
Darren Tucker67b37032005-06-03 17:58:31 +100090
91AC_CHECK_DECL(LLONG_MAX, have_llong_max=1, , [#include <limits.h>])
92
Damien Millera8e06ce2003-11-21 23:48:55 +110093if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
Darren Tuckerdd352b62005-08-02 17:21:29 +100094 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wuninitialized"
Darren Tucker3f9545e2005-11-12 15:20:52 +110095 GCC_VER=`$CC -v 2>&1 | $AWK '/gcc version /{print $3}'`
Tim Rice3db1e3f2005-08-23 17:11:26 -070096 case $GCC_VER in
97 1.*) ;;
98 2.8* | 2.9*) CFLAGS="$CFLAGS -Wsign-compare" ;;
99 2.*) ;;
Darren Tuckerb0288092005-11-10 14:46:48 +1100100 3.*) CFLAGS="$CFLAGS -Wsign-compare" ;;
Darren Tuckerf0324352005-11-10 21:30:36 +1100101 4.*) CFLAGS="$CFLAGS -Wsign-compare -Wno-pointer-sign" ;;
102 *) ;;
Tim Rice3db1e3f2005-08-23 17:11:26 -0700103 esac
Damien Millerde3cb0a2005-05-26 20:48:25 +1000104
Darren Tucker67b37032005-06-03 17:58:31 +1000105 if test -z "$have_llong_max"; then
106 # retry LLONG_MAX with -std=gnu99, needed on some Linuxes
107 unset ac_cv_have_decl_LLONG_MAX
108 saved_CFLAGS="$CFLAGS"
109 CFLAGS="$CFLAGS -std=gnu99"
110 AC_CHECK_DECL(LLONG_MAX,
111 [have_llong_max=1],
112 [CFLAGS="$saved_CFLAGS"],
113 [#include <limits.h>]
114 )
115 fi
Damien Miller166bd442000-03-16 10:48:25 +1100116fi
117
Tim Rice88368a32003-12-08 12:35:59 -0800118AC_ARG_WITH(rpath,
119 [ --without-rpath Disable auto-added -R linker paths],
120 [
Tim Riceeae17cc2005-03-17 16:52:20 -0800121 if test "x$withval" = "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800122 need_dash_r=""
123 fi
124 if test "x$withval" = "xyes" ; then
125 need_dash_r=1
126 fi
127 ]
128)
129
Damien Millera22ba012000-03-02 23:09:20 +1100130# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +1100131case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +1100132*-*-aix*)
Damien Millera8e06ce2003-11-21 23:48:55 +1100133 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
Damien Millereab4bae2003-04-29 23:22:40 +1000134 if (test -z "$blibpath"); then
Tim Ricefcb62202004-01-23 18:35:16 -0800135 blibpath="/usr/lib:/lib"
Damien Miller29ea30d2000-03-17 10:54:15 +1100136 fi
Damien Millereab4bae2003-04-29 23:22:40 +1000137 saved_LDFLAGS="$LDFLAGS"
138 for tryflags in -blibpath: -Wl,-blibpath: -Wl,-rpath, ;do
139 if (test -z "$blibflags"); then
140 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
141 AC_TRY_LINK([], [], [blibflags=$tryflags])
142 fi
143 done
144 if (test -z "$blibflags"); then
145 AC_MSG_RESULT(not found)
146 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
147 else
148 AC_MSG_RESULT($blibflags)
149 fi
150 LDFLAGS="$saved_LDFLAGS"
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000151 dnl Check for authenticate. Might be in libs.a on older AIXes
Tim Rice7df8d392005-09-19 09:33:39 -0700152 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE, 1,
153 [Define if you want to enable AIX4's authenticate function])],
Tim Ricee958ed32002-07-05 07:12:33 -0700154 [AC_CHECK_LIB(s,authenticate,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000155 [ AC_DEFINE(WITH_AIXAUTHENTICATE)
Tim Ricee958ed32002-07-05 07:12:33 -0700156 LIBS="$LIBS -ls"
157 ])
158 ])
Darren Tucker3c774c52005-02-16 22:49:31 +1100159 dnl Check for various auth function declarations in headers.
Darren Tucker04cfbe02005-02-20 23:27:11 +1100160 AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
Darren Tuckere66519d2005-03-21 22:46:34 +1100161 passwdexpired, setauthdb], , , [#include <usersec.h>])
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000162 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
Darren Tucker3c774c52005-02-16 22:49:31 +1100163 AC_CHECK_DECLS(loginfailed,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000164 [AC_MSG_CHECKING(if loginfailed takes 4 arguments)
165 AC_TRY_COMPILE(
Darren Tuckera0c0b632003-07-08 20:52:12 +1000166 [#include <usersec.h>],
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000167 [(void)loginfailed("user","host","tty",0);],
168 [AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -0700169 AC_DEFINE(AIX_LOGINFAILED_4ARG, 1,
170 [Define if your AIX loginfailed() function
171 takes 4 arguments (AIX >= 5.2)])],
Darren Tuckera0c0b632003-07-08 20:52:12 +1000172 [AC_MSG_RESULT(no)]
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000173 )],
174 [],
175 [#include <usersec.h>]
176 )
Darren Tuckerfc3454e2003-07-14 16:41:55 +1000177 AC_CHECK_FUNCS(setauthdb)
Darren Tucker691d5232005-02-15 21:45:57 +1100178 check_for_aix_broken_getaddrinfo=1
Tim Rice7df8d392005-09-19 09:33:39 -0700179 AC_DEFINE(BROKEN_REALPATH, 1, [Define if you have a broken realpath.])
180 AC_DEFINE(SETEUID_BREAKS_SETUID, 1,
181 [Define if your platform breaks doing a seteuid before a setuid])
182 AC_DEFINE(BROKEN_SETREUID, 1, [Define if your setreuid() is broken])
183 AC_DEFINE(BROKEN_SETREGID, 1, [Define if your setregid() is broken])
andre60f3c982000-06-03 16:18:19 +0000184 dnl AIX handles lastlog as part of its login message
Tim Rice7df8d392005-09-19 09:33:39 -0700185 AC_DEFINE(DISABLE_LASTLOG, 1, [Define if you don't want to use lastlog])
186 AC_DEFINE(LOGIN_NEEDS_UTMPX, 1,
187 [Some systems need a utmpx entry for /bin/login to work])
188 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV,
189 [Define to a Set Process Title type if your system is
190 supported by bsd-setproctitle.c])
Darren Tucker91d25a02005-11-26 22:24:09 +1100191 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
192 [AIX 5.2 and 5.3 (and presumably newer) require this])
Darren Tucker9afe1152006-06-23 21:24:12 +1000193 AC_DEFINE(PTY_ZEROREAD, 1, [read(1) can return 0 for a non-closed fd])
Damien Miller75b1d102000-01-07 14:01:41 +1100194 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100195*-*-cygwin*)
Damien Millerc8936ac2003-02-11 10:04:03 +1100196 check_for_libcrypt_later=1
Tim Ricefe1d1002001-11-26 17:19:43 -0800197 LIBS="$LIBS /usr/lib/textmode.o"
Tim Rice7df8d392005-09-19 09:33:39 -0700198 AC_DEFINE(HAVE_CYGWIN, 1, [Define if you are on Cygwin])
199 AC_DEFINE(USE_PIPES, 1, [Use PIPES instead of a socketpair()])
200 AC_DEFINE(DISABLE_SHADOW, 1,
201 [Define if you want to disable shadow passwords])
202 AC_DEFINE(IP_TOS_IS_BROKEN, 1,
203 [Define if your system choked on IP TOS setting])
204 AC_DEFINE(NO_X11_UNIX_SOCKETS, 1,
205 [Define if X11 doesn't support AF_UNIX sockets on that system])
206 AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT, 1,
207 [Define if the concept of ports only accessible to
208 superusers isn't known])
209 AC_DEFINE(DISABLE_FD_PASSING, 1,
210 [Define if your platform needs to skip post auth
211 file descriptor passing])
Damien Millerbac2d8a2000-09-05 16:13:06 +1100212 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000213*-*-dgux*)
214 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker454da0b2003-12-18 12:52:19 +1100215 AC_DEFINE(SETEUID_BREAKS_SETUID)
216 AC_DEFINE(BROKEN_SETREUID)
217 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom58055132001-02-15 18:34:29 +0000218 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000219*-*-darwin*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000220 AC_MSG_CHECKING(if we have working getaddrinfo)
221 AC_TRY_RUN([#include <mach-o/dyld.h>
222main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
223 exit(0);
224 else
225 exit(1);
226}], [AC_MSG_RESULT(working)],
227 [AC_MSG_RESULT(buggy)
Tim Rice7df8d392005-09-19 09:33:39 -0700228 AC_DEFINE(BROKEN_GETADDRINFO, 1, [getaddrinfo is broken (if present)])],
Tim Rice480ef8d2003-09-21 21:38:11 -0700229 [AC_MSG_RESULT(assume it is working)])
Darren Tucker20379a32003-09-22 11:07:40 +1000230 AC_DEFINE(SETEUID_BREAKS_SETUID)
231 AC_DEFINE(BROKEN_SETREUID)
232 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700233 AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1,
234 [Define if your resolver libs need this for getrrsetbyname])
Darren Tucker3eb48342006-06-23 21:05:12 +1000235 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
236 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
237 [Use tunnel device compatibility to OpenBSD])
238 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
239 [Prepend the address family to IP tunnel traffic])
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000240 ;;
Darren Tuckerfd333282005-05-28 18:31:42 +1000241*-*-hpux*)
242 # first we define all of the options common to all HP-UX releases
Kevin Steves315f8b72001-06-28 00:24:41 +0000243 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100244 IPADDR_IN_DISPLAY=yes
Damien Millerb0785672000-08-23 09:10:39 +1000245 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700246 AC_DEFINE(LOGIN_NO_ENDOPT, 1,
247 [Define if your login program cannot handle end of options ("--")])
Kevin Steves5feaaef2002-04-23 20:45:55 +0000248 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700249 AC_DEFINE(LOCKED_PASSWD_STRING, "*",
250 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000251 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Darren Tucker1e6616b2005-10-08 12:07:01 +1000252 MAIL="/var/mail/username"
Tim Ricef028f1e2002-07-19 12:41:10 -0700253 LIBS="$LIBS -lsec"
Darren Tuckerfd333282005-05-28 18:31:42 +1000254 AC_CHECK_LIB(xnet, t_error, ,
255 AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
256
257 # next, we define all of the options specific to major releases
258 case "$host" in
259 *-*-hpux10*)
260 if test -z "$GCC"; then
261 CFLAGS="$CFLAGS -Ae"
262 fi
263 ;;
264 *-*-hpux11*)
Tim Rice7df8d392005-09-19 09:33:39 -0700265 AC_DEFINE(PAM_SUN_CODEBASE, 1,
266 [Define if you are using Solaris-derived PAM which
267 passes pam_messages to the conversation function
268 with an extra level of indirection])
269 AC_DEFINE(DISABLE_UTMP, 1,
270 [Define if you don't want to use utmp])
Darren Tuckerfd333282005-05-28 18:31:42 +1000271 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
272 check_for_hpux_broken_getaddrinfo=1
273 check_for_conflicting_getspnam=1
274 ;;
275 esac
276
277 # lastly, we define options specific to minor releases
278 case "$host" in
279 *-*-hpux10.26)
Tim Rice7df8d392005-09-19 09:33:39 -0700280 AC_DEFINE(HAVE_SECUREWARE, 1,
281 [Define if you have SecureWare-based
282 protected password database])
Darren Tuckerfd333282005-05-28 18:31:42 +1000283 disable_ptmx_check=yes
284 LIBS="$LIBS -lsecpw"
285 ;;
286 esac
Damien Miller1bead332000-04-30 00:47:29 +1000287 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100288*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100289 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700290 AC_DEFINE(BROKEN_INET_NTOA, 1,
291 [Define if you system's inet_ntoa is busted
292 (e.g. Irix gcc issue)])
Darren Tuckerbeaf6792003-09-24 20:03:48 +1000293 AC_DEFINE(SETEUID_BREAKS_SETUID)
294 AC_DEFINE(BROKEN_SETREUID)
295 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700296 AC_DEFINE(WITH_ABBREV_NO_TTY, 1,
297 [Define if you shouldn't strip 'tty' from your
298 ttyname in [uw]tmp])
Darren Tuckere41bba52003-08-25 11:51:19 +1000299 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller1808f382000-01-06 12:03:12 +1100300 ;;
301*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100302 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700303 AC_DEFINE(WITH_IRIX_ARRAY, 1,
304 [Define if you have/want arrays
305 (cluster-wide session managment, not C arrays)])
306 AC_DEFINE(WITH_IRIX_PROJECT, 1,
307 [Define if you want IRIX project management])
308 AC_DEFINE(WITH_IRIX_AUDIT, 1,
309 [Define if you want IRIX audit trails])
310 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS, 1,
311 [Define if you want IRIX kernel jobs])])
Damien Miller11fa2cc2000-08-16 10:35:58 +1000312 AC_DEFINE(BROKEN_INET_NTOA)
Darren Tuckerbe79af12003-09-22 11:58:21 +1000313 AC_DEFINE(SETEUID_BREAKS_SETUID)
314 AC_DEFINE(BROKEN_SETREUID)
315 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700316 AC_DEFINE(BROKEN_UPDWTMPX, 1, [updwtmpx is broken (if present)])
Damien Millerf1b9d112002-04-23 23:09:19 +1000317 AC_DEFINE(WITH_ABBREV_NO_TTY)
Darren Tuckere41bba52003-08-25 11:51:19 +1000318 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Millerbeb4ba51999-12-28 15:09:35 +1100319 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100320*-*-linux*)
321 no_dev_ptmx=1
Damien Millera64b57a2001-01-17 10:44:13 +1100322 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000323 check_for_openpty_ctty_bug=1
Tim Rice7df8d392005-09-19 09:33:39 -0700324 AC_DEFINE(DONT_TRY_OTHER_AF, 1, [Workaround more Linux IPv6 quirks])
325 AC_DEFINE(PAM_TTY_KLUDGE, 1,
326 [Work around problematic Linux PAM modules handling of PAM_TTY])
327 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!",
328 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000329 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
Tim Rice7df8d392005-09-19 09:33:39 -0700330 AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM,
331 [Define to whatever link() returns for "not supported"
332 if it doesn't return EOPNOTSUPP.])
Darren Tucker2fba9932005-02-02 23:30:24 +1100333 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
Tim Rice7df8d392005-09-19 09:33:39 -0700334 AC_DEFINE(USE_BTMP)
Damien Miller7bcb0892000-03-11 20:45:40 +1100335 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000336 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000337 1.*|2.0.*)
Tim Rice7df8d392005-09-19 09:33:39 -0700338 AC_DEFINE(BROKEN_CMSG_TYPE, 1,
339 [Define if cmsg_type is not passed correctly])
Darren Tucker3c016542003-05-02 20:48:21 +1000340 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000341 esac
Damien Miller89e03ba2005-12-31 16:42:03 +1100342 # tun(4) forwarding compat code
Damien Millerc4bcc912005-12-31 17:05:58 +1100343 AC_CHECK_HEADERS(linux/if_tun.h)
Damien Millerbd4e4102006-01-01 21:03:30 +1100344 if test "x$ac_cv_header_linux_if_tun_h" = "xyes" ; then
Damien Miller89e03ba2005-12-31 16:42:03 +1100345 AC_DEFINE(SSH_TUN_LINUX, 1,
346 [Open tunnel devices the Linux tun/tap way])
347 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
348 [Use tunnel device compatibility to OpenBSD])
349 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
350 [Prepend the address family to IP tunnel traffic])
351 fi
Damien Millerb29ea912000-01-15 14:12:03 +1100352 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000353mips-sony-bsd|mips-sony-newsos4)
Darren Tucker988b3fd2006-02-08 22:11:27 +1100354 AC_DEFINE(NEED_SETPGRP, 1, [Need setpgrp to acquire controlling tty])
Ben Lindstromb5628642000-10-18 00:02:25 +0000355 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000356 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100357*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000358 check_for_libcrypt_before=1
Tim Riceeae17cc2005-03-17 16:52:20 -0800359 if test "x$withval" != "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800360 need_dash_r=1
361 fi
Damien Miller2dcddbf2006-01-01 19:47:05 +1100362 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
363 AC_CHECK_HEADER([net/if_tap.h], ,
364 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
365 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
366 [Prepend the address family to IP tunnel traffic])
Damien Milleree1c0b32000-01-21 00:18:15 +1100367 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100368*-*-freebsd*)
369 check_for_libcrypt_later=1
Darren Tuckerac7e6302005-10-06 01:39:58 +1000370 AC_DEFINE(LOCKED_PASSWD_PREFIX, "*LOCKED*", [Account locked with pw(1)])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100371 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
372 AC_CHECK_HEADER([net/if_tap.h], ,
373 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
Damien Millerfbd884a2001-02-27 08:39:07 +1100374 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000375*-*-bsdi*)
376 AC_DEFINE(SETEUID_BREAKS_SETUID)
377 AC_DEFINE(BROKEN_SETREUID)
378 AC_DEFINE(BROKEN_SETREGID)
379 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000380*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000381 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100382 conf_utmp_location=/etc/utmp
383 conf_wtmp_location=/usr/adm/wtmp
384 MAIL=/usr/spool/mail
Tim Rice7df8d392005-09-19 09:33:39 -0700385 AC_DEFINE(HAVE_NEXT, 1, [Define if you are on NeXT])
Ben Lindstromb4df15d2000-10-15 00:17:36 +0000386 AC_DEFINE(BROKEN_REALPATH)
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000387 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700388 AC_DEFINE(BROKEN_SAVED_UIDS, 1, [Needed for NeXT])
Damien Miller0f91b4e2000-06-18 15:43:25 +1000389 ;;
Darren Tucker4a422572005-07-14 17:22:11 +1000390*-*-openbsd*)
391 AC_DEFINE(HAVE_ATTRIBUTE__SENTINEL__, 1, [OpenBSD's gcc has sentinel])
Darren Tucker9ac1a652005-10-09 11:40:03 +1000392 AC_DEFINE(HAVE_ATTRIBUTE__BOUNDED__, 1, [OpenBSD's gcc has bounded])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100393 AC_DEFINE(SSH_TUN_OPENBSD, 1, [Open tunnel devices the OpenBSD way])
Darren Tucker4a422572005-07-14 17:22:11 +1000394 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100395*-*-solaris*)
Tim Riceeae17cc2005-03-17 16:52:20 -0800396 if test "x$withval" != "xno" ; then
Tim Ricead4a1882004-02-29 15:53:37 -0800397 need_dash_r=1
398 fi
Damien Miller82cf0ce2000-12-20 13:34:48 +1100399 AC_DEFINE(PAM_SUN_CODEBASE)
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000400 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700401 AC_DEFINE(LOGIN_NEEDS_TERM, 1,
402 [Some versions of /bin/login need the TERM supplied
403 on the commandline])
Ben Lindstrom95276712001-10-23 17:14:00 +0000404 AC_DEFINE(PAM_TTY_KLUDGE)
Tim Rice7df8d392005-09-19 09:33:39 -0700405 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
406 [Define if pam_chauthtok wants real uid set
407 to the unpriv'ed user])
Darren Tuckere41bba52003-08-25 11:51:19 +1000408 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Darren Tuckerc437cda2003-05-10 17:05:46 +1000409 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
Tim Rice7df8d392005-09-19 09:33:39 -0700410 AC_DEFINE(SSHD_ACQUIRES_CTTY, 1,
411 [Define if sshd somehow reacquires a controlling TTY
412 after setsid()])
Darren Tucker0249f932006-06-24 12:10:07 +1000413 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd
414 in case the name is longer than 8 chars])
Darren Tuckere1a790d2003-09-16 11:52:19 +1000415 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000416 # hardwire lastlog location (can't detect it on some versions)
417 conf_lastlog_location="/var/adm/lastlog"
Damien Millera1cb6442000-06-09 11:58:35 +1000418 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
419 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
420 if test "$sol2ver" -ge 8; then
421 AC_MSG_RESULT(yes)
422 AC_DEFINE(DISABLE_UTMP)
Tim Rice7df8d392005-09-19 09:33:39 -0700423 AC_DEFINE(DISABLE_WTMP, 1,
424 [Define if you don't want to use wtmp])
Damien Millera1cb6442000-06-09 11:58:35 +1000425 else
426 AC_MSG_RESULT(no)
427 fi
Damien Miller75b1d102000-01-07 14:01:41 +1100428 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +1000429*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000430 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Damien Millerdfc83f42000-05-20 15:02:59 +1000431 AC_CHECK_FUNCS(getpwanam)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100432 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000433 conf_utmp_location=/etc/utmp
434 conf_wtmp_location=/var/adm/wtmp
435 conf_lastlog_location=/var/adm/lastlog
Damien Millerb0785672000-08-23 09:10:39 +1000436 AC_DEFINE(USE_PIPES)
Damien Millerdfc83f42000-05-20 15:02:59 +1000437 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000438*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -0700439 LIBS="$LIBS -lc89"
Kevin Steves0bd4b342002-01-05 23:24:27 +0000440 AC_DEFINE(USE_PIPES)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000441 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker00130112003-09-22 11:40:24 +1000442 AC_DEFINE(SETEUID_BREAKS_SETUID)
443 AC_DEFINE(BROKEN_SETREUID)
444 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000445 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000446*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -0700447 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Darren Tucker89df7a32003-10-07 20:35:57 +1000448 AC_CHECK_LIB(dl, dlsym, ,)
Darren Tucker79d09fa2005-11-24 22:34:54 +1100449 # -lresolv needs to be at the end of LIBS or DNS lookups break
450 AC_CHECK_LIB(resolv, res_query, [ LIBS="$LIBS -lresolv" ])
Damien Millerfd9885e2001-01-10 08:16:53 +1100451 IPADDR_IN_DISPLAY=yes
452 AC_DEFINE(USE_PIPES)
Damien Miller2ae714f2000-07-11 09:29:50 +1000453 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker3b2a06c2003-10-07 18:37:11 +1000454 AC_DEFINE(SETEUID_BREAKS_SETUID)
455 AC_DEFINE(BROKEN_SETREUID)
456 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000457 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckere1a790d2003-09-16 11:52:19 +1000458 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -0700459 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
460 # Attention: always take care to bind libsocket and libnsl before libc,
461 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +1000462 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800463# UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
Damien Miller78315eb2000-09-29 23:01:36 +1100464*-*-sysv4.2*)
Damien Miller57f39152005-11-24 19:58:19 +1100465 CFLAGS="$CFLAGS -Dva_list=_VA_LIST"
Damien Miller5dfe9762001-02-16 12:05:39 +1100466 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700467 AC_DEFINE(SETEUID_BREAKS_SETUID)
468 AC_DEFINE(BROKEN_SETREUID)
469 AC_DEFINE(BROKEN_SETREGID)
Tim Rice2f97b8b2005-04-11 19:00:18 -0700470 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd])
Tim Rice46259d82005-11-28 18:40:34 -0800471 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller78315eb2000-09-29 23:01:36 +1100472 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800473# UnixWare 7.x, OpenUNIX 8
Damien Miller78315eb2000-09-29 23:01:36 +1100474*-*-sysv5*)
Tim Riceeb456542005-08-30 07:12:02 -0700475 check_for_libcrypt_later=1
476 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
Damien Miller5dfe9762001-02-16 12:05:39 +1100477 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700478 AC_DEFINE(SETEUID_BREAKS_SETUID)
479 AC_DEFINE(BROKEN_SETREUID)
480 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700481 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Tim Rice4dbacff2005-06-01 20:09:28 -0700482 case "$host" in
483 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
484 TEST_SHELL=/u95/bin/sh
Tim Rice7df8d392005-09-19 09:33:39 -0700485 AC_DEFINE(BROKEN_LIBIAF, 1,
486 [ia_uinfo routines not supported by OS yet])
Tim Rice4dbacff2005-06-01 20:09:28 -0700487 ;;
Tim Rice46259d82005-11-28 18:40:34 -0800488 *) AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
489 ;;
Tim Rice4dbacff2005-06-01 20:09:28 -0700490 esac
Damien Miller78315eb2000-09-29 23:01:36 +1100491 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100492*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +1100493 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800494# SCO UNIX and OEM versions of SCO UNIX
Damien Miller78315eb2000-09-29 23:01:36 +1100495*-*-sco3.2v4*)
Tim Ricec390c8d2005-03-07 01:21:37 -0800496 AC_MSG_ERROR("This Platform is no longer supported.")
Damien Miller78315eb2000-09-29 23:01:36 +1100497 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800498# SCO OpenServer 5.x
Damien Miller78315eb2000-09-29 23:01:36 +1100499*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -0800500 if test -z "$GCC"; then
501 CFLAGS="$CFLAGS -belf"
502 fi
Damien Miller5dfe9762001-02-16 12:05:39 +1100503 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000504 no_dev_ptmx=1
Damien Miller5dfe9762001-02-16 12:05:39 +1100505 AC_DEFINE(USE_PIPES)
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000506 AC_DEFINE(HAVE_SECUREWARE)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000507 AC_DEFINE(DISABLE_SHADOW)
Tim Rice9dd30812002-07-07 13:43:36 -0700508 AC_DEFINE(DISABLE_FD_PASSING)
Tim Riced546a842003-09-11 22:24:36 -0700509 AC_DEFINE(SETEUID_BREAKS_SETUID)
510 AC_DEFINE(BROKEN_SETREUID)
511 AC_DEFINE(BROKEN_SETREGID)
Tim Riceae477e92003-09-12 18:15:15 -0700512 AC_DEFINE(WITH_ABBREV_NO_TTY)
Tim Rice816bd0d2004-07-19 10:19:26 -0700513 AC_DEFINE(BROKEN_UPDWTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700514 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Damien Miller217f5672001-02-16 12:12:41 +1100515 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700516 MANTYPE=man
Tim Ricef7ba8f62004-06-20 10:37:32 -0700517 TEST_SHELL=ksh
Damien Millera66626b2000-06-13 18:57:53 +1000518 ;;
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000519*-*-unicosmk*)
Tim Rice7df8d392005-09-19 09:33:39 -0700520 AC_DEFINE(NO_SSH_LASTLOG, 1,
521 [Define if you don't want to use lastlog in session.c])
Darren Tucker2df33432004-01-30 14:34:21 +1100522 AC_DEFINE(SETEUID_BREAKS_SETUID)
523 AC_DEFINE(BROKEN_SETREUID)
524 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000525 AC_DEFINE(USE_PIPES)
526 AC_DEFINE(DISABLE_FD_PASSING)
527 LDFLAGS="$LDFLAGS"
528 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
529 MANTYPE=cat
Ben Lindstrom762104e2002-07-23 00:00:05 +0000530 ;;
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000531*-*-unicosmp*)
Darren Tucker2df33432004-01-30 14:34:21 +1100532 AC_DEFINE(SETEUID_BREAKS_SETUID)
533 AC_DEFINE(BROKEN_SETREUID)
534 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000535 AC_DEFINE(WITH_ABBREV_NO_TTY)
536 AC_DEFINE(USE_PIPES)
537 AC_DEFINE(DISABLE_FD_PASSING)
538 LDFLAGS="$LDFLAGS"
Darren Tucker2df33432004-01-30 14:34:21 +1100539 LIBS="$LIBS -lgen -lacid -ldb"
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000540 MANTYPE=cat
541 ;;
Ben Lindstromd9e08242001-07-22 19:32:00 +0000542*-*-unicos*)
Darren Tucker2df33432004-01-30 14:34:21 +1100543 AC_DEFINE(SETEUID_BREAKS_SETUID)
544 AC_DEFINE(BROKEN_SETREUID)
545 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstromd9e08242001-07-22 19:32:00 +0000546 AC_DEFINE(USE_PIPES)
Tim Rice9dd30812002-07-07 13:43:36 -0700547 AC_DEFINE(DISABLE_FD_PASSING)
Tim Rice81ed5182002-09-25 17:38:46 -0700548 AC_DEFINE(NO_SSH_LASTLOG)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000549 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
550 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
551 MANTYPE=cat
Tim Ricee991e3c2001-08-07 15:29:07 -0700552 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000553*-dec-osf*)
Ben Lindstrom72af2ef2001-05-08 20:42:28 +0000554 AC_MSG_CHECKING(for Digital Unix SIA)
555 no_osfsia=""
556 AC_ARG_WITH(osfsia,
557 [ --with-osfsia Enable Digital Unix SIA],
558 [
559 if test "x$withval" = "xno" ; then
560 AC_MSG_RESULT(disabled)
561 no_osfsia=1
562 fi
563 ],
564 )
565 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +1000566 if test -f /etc/sia/matrix.conf; then
567 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -0700568 AC_DEFINE(HAVE_OSF_SIA, 1,
569 [Define if you have Digital Unix Security
570 Integration Architecture])
571 AC_DEFINE(DISABLE_LOGIN, 1,
572 [Define if you don't want to use your
573 system's login() call])
Ben Lindstromc8c548d2003-03-21 01:18:09 +0000574 AC_DEFINE(DISABLE_FD_PASSING)
Damien Millerb8c656e2000-06-28 15:22:41 +1000575 LIBS="$LIBS -lsecurity -ldb -lm -laud"
576 else
577 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -0700578 AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin",
579 [String used in /etc/passwd to denote locked account])
Damien Millerb8c656e2000-06-28 15:22:41 +1000580 fi
581 fi
Darren Tucker3c8e1e12003-08-25 13:27:40 +1000582 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Rice7a74c6b2003-09-21 21:00:59 -0700583 AC_DEFINE(SETEUID_BREAKS_SETUID)
Darren Tuckered92b212003-09-22 11:26:16 +1000584 AC_DEFINE(BROKEN_SETREUID)
585 AC_DEFINE(BROKEN_SETREGID)
Damien Millerb8c656e2000-06-28 15:22:41 +1000586 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000587
Tim Rice70335a62006-02-04 17:42:58 -0800588*-*-nto-qnx*)
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000589 AC_DEFINE(USE_PIPES)
590 AC_DEFINE(NO_X11_UNIX_SOCKETS)
Tim Rice7df8d392005-09-19 09:33:39 -0700591 AC_DEFINE(MISSING_NFDBITS, 1, [Define on *nto-qnx systems])
592 AC_DEFINE(MISSING_HOWMANY, 1, [Define on *nto-qnx systems])
593 AC_DEFINE(MISSING_FD_MASK, 1, [Define on *nto-qnx systems])
Tim Rice70335a62006-02-04 17:42:58 -0800594 AC_DEFINE(DISABLE_LASTLOG)
Darren Tucker54b75fe2006-02-26 12:31:48 +1100595 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Tim Rice2f993462006-02-11 18:37:48 -0800596 enable_etc_default_login=no # has incompatible /etc/default/login
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000597 ;;
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000598
599*-*-ultrix*)
Tim Rice7df8d392005-09-19 09:33:39 -0700600 AC_DEFINE(BROKEN_GETGROUPS, 1, [getgroups(0,NULL) will return -1])
601 AC_DEFINE(BROKEN_MMAP, 1, [Ultrix mmap can't map files])
Darren Tucker988b3fd2006-02-08 22:11:27 +1100602 AC_DEFINE(NEED_SETPGRP)
Tim Ricefcc7ff12005-06-02 20:28:29 -0700603 AC_DEFINE(HAVE_SYS_SYSLOG_H, 1, [Force use of sys/syslog.h on Ultrix])
604 ;;
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000605
606*-*-lynxos)
607 CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
Tim Rice7df8d392005-09-19 09:33:39 -0700608 AC_DEFINE(MISSING_HOWMANY)
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000609 AC_DEFINE(BROKEN_SETVBUF, 1, [LynxOS has broken setvbuf() implementation])
610 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100611esac
612
Damien Millere37bfc12000-06-05 09:37:43 +1000613# Allow user to specify flags
614AC_ARG_WITH(cflags,
615 [ --with-cflags Specify additional flags to pass to compiler],
616 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800617 if test -n "$withval" && test "x$withval" != "xno" && \
618 test "x${withval}" != "xyes"; then
Damien Millere37bfc12000-06-05 09:37:43 +1000619 CFLAGS="$CFLAGS $withval"
620 fi
Tim Riceeae17cc2005-03-17 16:52:20 -0800621 ]
Damien Millere37bfc12000-06-05 09:37:43 +1000622)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000623AC_ARG_WITH(cppflags,
624 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
625 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800626 if test -n "$withval" && test "x$withval" != "xno" && \
627 test "x${withval}" != "xyes"; then
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000628 CPPFLAGS="$CPPFLAGS $withval"
629 fi
630 ]
631)
Damien Millere37bfc12000-06-05 09:37:43 +1000632AC_ARG_WITH(ldflags,
Ben Lindstrom2ed98182000-11-06 07:15:43 +0000633 [ --with-ldflags Specify additional flags to pass to linker],
Damien Millere37bfc12000-06-05 09:37:43 +1000634 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800635 if test -n "$withval" && test "x$withval" != "xno" && \
636 test "x${withval}" != "xyes"; then
Damien Millere37bfc12000-06-05 09:37:43 +1000637 LDFLAGS="$LDFLAGS $withval"
638 fi
Tim Riceeae17cc2005-03-17 16:52:20 -0800639 ]
Damien Millere37bfc12000-06-05 09:37:43 +1000640)
641AC_ARG_WITH(libs,
642 [ --with-libs Specify additional libraries to link with],
643 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800644 if test -n "$withval" && test "x$withval" != "xno" && \
645 test "x${withval}" != "xyes"; then
Damien Millere37bfc12000-06-05 09:37:43 +1000646 LIBS="$LIBS $withval"
647 fi
Tim Riceeae17cc2005-03-17 16:52:20 -0800648 ]
Damien Millere37bfc12000-06-05 09:37:43 +1000649)
Darren Tucker7da23cb2005-08-03 00:20:15 +1000650AC_ARG_WITH(Werror,
651 [ --with-Werror Build main code with -Werror],
652 [
653 if test -n "$withval" && test "x$withval" != "xno"; then
654 werror_flags="-Werror"
Damien Millere04ec6f2005-10-08 16:21:19 +1000655 if test "x${withval}" != "xyes"; then
Darren Tucker7da23cb2005-08-03 00:20:15 +1000656 werror_flags="$withval"
657 fi
658 fi
659 ]
660)
Damien Millere37bfc12000-06-05 09:37:43 +1000661
Darren Tucker6eb93042003-06-29 21:30:41 +1000662AC_MSG_CHECKING(compiler and flags for sanity)
Darren Tucker623d92f2004-09-12 22:36:15 +1000663AC_RUN_IFELSE(
664 [AC_LANG_SOURCE([
Darren Tucker6eb93042003-06-29 21:30:41 +1000665#include <stdio.h>
666int main(){exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +1000667 ])],
Darren Tucker6eb93042003-06-29 21:30:41 +1000668 [ AC_MSG_RESULT(yes) ],
669 [
670 AC_MSG_RESULT(no)
671 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000672 ],
673 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
Darren Tucker6eb93042003-06-29 21:30:41 +1000674)
675
Darren Tucker0c9653f2005-05-28 15:58:14 +1000676dnl Checks for header files.
677AC_CHECK_HEADERS( \
678 bstring.h \
679 crypt.h \
Darren Tuckerc4953012006-03-16 08:14:34 +1100680 crypto/sha2.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000681 dirent.h \
682 endian.h \
683 features.h \
684 floatingpoint.h \
685 getopt.h \
686 glob.h \
687 ia.h \
Tim Rice2291c002005-08-26 13:15:19 -0700688 iaf.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000689 limits.h \
690 login.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000691 maillock.h \
692 ndir.h \
Darren Tucker3eb48342006-06-23 21:05:12 +1000693 net/if_tun.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000694 netdb.h \
695 netgroup.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000696 pam/pam_appl.h \
697 paths.h \
698 pty.h \
699 readpassphrase.h \
700 rpc/types.h \
701 security/pam_appl.h \
Damien Miller41e364b2006-03-15 13:12:41 +1100702 sha2.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000703 shadow.h \
704 stddef.h \
705 stdint.h \
Darren Tucker390b6d52005-05-28 16:54:36 +1000706 string.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000707 strings.h \
708 sys/audit.h \
709 sys/bitypes.h \
710 sys/bsdtty.h \
711 sys/cdefs.h \
712 sys/dir.h \
713 sys/mman.h \
714 sys/ndir.h \
715 sys/prctl.h \
716 sys/pstat.h \
717 sys/select.h \
718 sys/stat.h \
719 sys/stream.h \
720 sys/stropts.h \
721 sys/strtio.h \
722 sys/sysmacros.h \
723 sys/time.h \
724 sys/timers.h \
725 sys/un.h \
726 time.h \
727 tmpdir.h \
728 ttyent.h \
Darren Tucker7d2171b2005-05-28 16:57:00 +1000729 unistd.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000730 usersec.h \
731 util.h \
732 utime.h \
733 utmp.h \
734 utmpx.h \
Darren Tuckere910be12005-05-28 16:01:18 +1000735 vis.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000736)
Tim Rice4cec93f2002-02-26 08:40:48 -0800737
Tim Rice0daad782006-02-04 17:33:55 -0800738# lastlog.h requires sys/time.h to be included first on Solaris
739AC_CHECK_HEADERS(lastlog.h, [], [], [
740#ifdef HAVE_SYS_TIME_H
741# include <sys/time.h>
742#endif
743])
744
Darren Tucker48d99d32004-08-29 17:04:50 +1000745# sys/ptms.h requires sys/stream.h to be included first on Solaris
746AC_CHECK_HEADERS(sys/ptms.h, [], [], [
747#ifdef HAVE_SYS_STREAM_H
748# include <sys/stream.h>
749#endif
750])
751
Darren Tucker8bb9e2c2006-03-15 22:28:17 +1100752# login_cap.h requires sys/types.h on NetBSD
753AC_CHECK_HEADERS(login_cap.h, [], [], [
754#include <sys/types.h>
755])
756
Damien Millera22ba012000-03-02 23:09:20 +1100757# Checks for libraries.
Tim Rice13aae5e2001-10-21 17:53:58 -0700758AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
759AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000760
Tim Rice1e1ef642003-09-11 22:19:31 -0700761dnl IRIX and Solaris 2.5.1 have dirname() in libgen
762AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
763 AC_CHECK_LIB(gen, dirname,[
764 AC_CACHE_CHECK([for broken dirname],
765 ac_cv_have_broken_dirname, [
766 save_LIBS="$LIBS"
767 LIBS="$LIBS -lgen"
Darren Tucker314d89e2005-10-17 23:29:23 +1000768 AC_RUN_IFELSE(
769 [AC_LANG_SOURCE([[
Tim Rice1e1ef642003-09-11 22:19:31 -0700770#include <libgen.h>
771#include <string.h>
772
773int main(int argc, char **argv) {
774 char *s, buf[32];
775
776 strncpy(buf,"/etc", 32);
777 s = dirname(buf);
778 if (!s || strncmp(s, "/", 32) != 0) {
779 exit(1);
780 } else {
781 exit(0);
782 }
783}
Darren Tucker314d89e2005-10-17 23:29:23 +1000784 ]])],
Tim Rice1e1ef642003-09-11 22:19:31 -0700785 [ ac_cv_have_broken_dirname="no" ],
Darren Tucker314d89e2005-10-17 23:29:23 +1000786 [ ac_cv_have_broken_dirname="yes" ],
787 [ ac_cv_have_broken_dirname="no" ],
Tim Rice1e1ef642003-09-11 22:19:31 -0700788 )
789 LIBS="$save_LIBS"
790 ])
791 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
792 LIBS="$LIBS -lgen"
793 AC_DEFINE(HAVE_DIRNAME)
794 AC_CHECK_HEADERS(libgen.h)
795 fi
796 ])
797])
798
799AC_CHECK_FUNC(getspnam, ,
800 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
Tim Rice7df8d392005-09-19 09:33:39 -0700801AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME, 1,
802 [Define if you have the basename function.]))
Tim Rice1e1ef642003-09-11 22:19:31 -0700803
Tim Rice13aae5e2001-10-21 17:53:58 -0700804dnl zlib is required
805AC_ARG_WITH(zlib,
806 [ --with-zlib=PATH Use zlib in PATH],
Darren Tucker86a5f8d2005-03-21 09:55:17 +1100807 [ if test "x$withval" = "xno" ; then
808 AC_MSG_ERROR([*** zlib is required ***])
809 elif test "x$withval" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -0700810 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
Darren Tucker86a5f8d2005-03-21 09:55:17 +1100828 fi ]
Tim Rice13aae5e2001-10-21 17:53:58 -0700829)
830
Tim Ricefcb62202004-01-23 18:35:16 -0800831AC_CHECK_LIB(z, deflate, ,
832 [
833 saved_CPPFLAGS="$CPPFLAGS"
834 saved_LDFLAGS="$LDFLAGS"
835 save_LIBS="$LIBS"
836 dnl Check default zlib install dir
837 if test -n "${need_dash_r}"; then
838 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
839 else
840 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
841 fi
842 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
843 LIBS="$LIBS -lz"
844 AC_TRY_LINK_FUNC(deflate, AC_DEFINE(HAVE_LIBZ),
845 [
846 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
847 ]
848 )
849 ]
850)
Darren Tucker2dcd2392004-01-23 17:13:33 +1100851AC_CHECK_HEADER([zlib.h], ,AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***]))
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100852
853AC_ARG_WITH(zlib-version-check,
854 [ --without-zlib-version-check Disable zlib version check],
855 [ if test "x$withval" = "xno" ; then
856 zlib_check_nonfatal=1
857 fi
858 ]
859)
860
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000861AC_MSG_CHECKING(for possibly buggy zlib)
Darren Tucker623d92f2004-09-12 22:36:15 +1000862AC_RUN_IFELSE([AC_LANG_SOURCE([[
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000863#include <stdio.h>
Darren Tucker2dcd2392004-01-23 17:13:33 +1100864#include <zlib.h>
865int main()
866{
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000867 int a=0, b=0, c=0, d=0, n, v;
868 n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
869 if (n != 3 && n != 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +1100870 exit(1);
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000871 v = a*1000000 + b*10000 + c*100 + d;
872 fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
873
874 /* 1.1.4 is OK */
875 if (a == 1 && b == 1 && c >= 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +1100876 exit(0);
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000877
Darren Tucker41097ed2005-07-25 15:24:21 +1000878 /* 1.2.3 and up are OK */
879 if (v >= 1020300)
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000880 exit(0);
881
Darren Tucker2dcd2392004-01-23 17:13:33 +1100882 exit(2);
883}
Darren Tucker623d92f2004-09-12 22:36:15 +1000884 ]])],
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000885 AC_MSG_RESULT(no),
886 [ AC_MSG_RESULT(yes)
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100887 if test -z "$zlib_check_nonfatal" ; then
888 AC_MSG_ERROR([*** zlib too old - check config.log ***
889Your reported zlib version has known security problems. It's possible your
890vendor has fixed these problems without changing the version number. If you
891are sure this is the case, you can disable the check by running
892"./configure --without-zlib-version-check".
Darren Tuckerac1910f2005-07-26 12:00:42 +1000893If you are in doubt, upgrade zlib to version 1.2.3 or greater.
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000894See http://www.gzip.org/zlib/ for details.])
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100895 else
896 AC_MSG_WARN([zlib version may have security problems])
897 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +1000898 ],
899 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
Darren Tucker2dcd2392004-01-23 17:13:33 +1100900)
Damien Miller6f9c3372000-10-25 10:06:04 +1100901
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000902dnl UnixWare 2.x
Damien Millera8e06ce2003-11-21 23:48:55 +1100903AC_CHECK_FUNC(strcasecmp,
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000904 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
905)
Darren Tucker5bfe1682005-11-12 18:42:36 +1100906AC_CHECK_FUNCS(utimes,
Tim Ricecbb90662002-07-08 19:17:10 -0700907 [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
908 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000909)
Damien Millerab18c411999-11-11 10:40:23 +1100910
Tim Ricee589a292001-11-03 11:09:32 -0800911dnl Checks for libutil functions
912AC_CHECK_HEADERS(libutil.h)
Tim Rice7df8d392005-09-19 09:33:39 -0700913AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN, 1,
914 [Define if your libraries define login()])])
Tim Ricee589a292001-11-03 11:09:32 -0800915AC_CHECK_FUNCS(logout updwtmp logwtmp)
916
Ben Lindstrom8697e082001-02-24 21:41:10 +0000917AC_FUNC_STRFTIME
918
Damien Miller3c027682001-03-14 11:39:45 +1100919# Check for ALTDIRFUNC glob() extension
920AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
921AC_EGREP_CPP(FOUNDIT,
922 [
923 #include <glob.h>
924 #ifdef GLOB_ALTDIRFUNC
925 FOUNDIT
926 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +1100927 ],
Damien Miller3c027682001-03-14 11:39:45 +1100928 [
Tim Rice7df8d392005-09-19 09:33:39 -0700929 AC_DEFINE(GLOB_HAS_ALTDIRFUNC, 1,
930 [Define if your system glob() function has
931 the GLOB_ALTDIRFUNC extension])
Damien Miller3c027682001-03-14 11:39:45 +1100932 AC_MSG_RESULT(yes)
933 ],
934 [
935 AC_MSG_RESULT(no)
936 ]
937)
Damien Millerab18c411999-11-11 10:40:23 +1100938
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000939# Check for g.gl_matchc glob() extension
940AC_MSG_CHECKING(for gl_matchc field in glob_t)
Darren Tucker486d95e2006-03-15 21:31:39 +1100941AC_TRY_COMPILE(
Damien Milleraf87af12006-03-15 13:02:28 +1100942 [ #include <glob.h> ],
943 [glob_t g; g.gl_matchc = 1;],
Damien Millera8e06ce2003-11-21 23:48:55 +1100944 [
Tim Rice7df8d392005-09-19 09:33:39 -0700945 AC_DEFINE(GLOB_HAS_GL_MATCHC, 1,
946 [Define if your system glob() function has
947 gl_matchc options in glob_t])
Damien Millera8e06ce2003-11-21 23:48:55 +1100948 AC_MSG_RESULT(yes)
949 ],
950 [
951 AC_MSG_RESULT(no)
952 ]
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000953)
954
Damien Miller18bb4732001-03-28 14:35:30 +1000955AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000956AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +1000957 [AC_LANG_SOURCE([[
Damien Miller18bb4732001-03-28 14:35:30 +1000958#include <sys/types.h>
959#include <dirent.h>
Tim Rice2c961ce2002-09-23 16:54:10 -0700960int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
Darren Tucker623d92f2004-09-12 22:36:15 +1000961 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +1100962 [AC_MSG_RESULT(yes)],
Damien Miller18bb4732001-03-28 14:35:30 +1000963 [
964 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -0700965 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
Darren Tucker79d09fa2005-11-24 22:34:54 +1100966 [Define if your struct dirent expects you to
Tim Rice7df8d392005-09-19 09:33:39 -0700967 allocate extra space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000968 ],
Tim Riceeae17cc2005-03-17 16:52:20 -0800969 [
Darren Tuckera0c2b392004-09-11 23:26:37 +1000970 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
971 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
Damien Miller18bb4732001-03-28 14:35:30 +1000972 ]
973)
974
Damien Miller36f49652004-08-15 18:40:59 +1000975AC_MSG_CHECKING([for /proc/pid/fd directory])
976if test -d "/proc/$$/fd" ; then
Tim Rice7df8d392005-09-19 09:33:39 -0700977 AC_DEFINE(HAVE_PROC_PID, 1, [Define if you have /proc/$pid/fd])
Damien Miller36f49652004-08-15 18:40:59 +1000978 AC_MSG_RESULT(yes)
979else
980 AC_MSG_RESULT(no)
981fi
982
Damien Millerc547bf12001-02-16 10:18:12 +1100983# Check whether user wants S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +1100984SKEY_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +1100985AC_ARG_WITH(skey,
Darren Tucker1b6f2292005-02-11 16:11:49 +1100986 [ --with-skey[[=PATH]] Enable S/Key support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +1100987 [
988 if test "x$withval" != "xno" ; then
989
990 if test "x$withval" != "xyes" ; then
991 CPPFLAGS="$CPPFLAGS -I${withval}/include"
992 LDFLAGS="$LDFLAGS -L${withval}/lib"
993 fi
994
Tim Rice7df8d392005-09-19 09:33:39 -0700995 AC_DEFINE(SKEY, 1, [Define if you want S/Key support])
Damien Millerc547bf12001-02-16 10:18:12 +1100996 LIBS="-lskey $LIBS"
Damien Millera8e06ce2003-11-21 23:48:55 +1100997 SKEY_MSG="yes"
Tim Riceeae17cc2005-03-17 16:52:20 -0800998
Tim Rice4cec93f2002-02-26 08:40:48 -0800999 AC_MSG_CHECKING([for s/key support])
Darren Tucker314d89e2005-10-17 23:29:23 +10001000 AC_LINK_IFELSE(
1001 [AC_LANG_SOURCE([[
Tim Rice4cec93f2002-02-26 08:40:48 -08001002#include <stdio.h>
1003#include <skey.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001004int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
Darren Tucker314d89e2005-10-17 23:29:23 +10001005 ]])],
Tim Rice4cec93f2002-02-26 08:40:48 -08001006 [AC_MSG_RESULT(yes)],
1007 [
1008 AC_MSG_RESULT(no)
Damien Millerc547bf12001-02-16 10:18:12 +11001009 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
1010 ])
Darren Tucker3b908f62004-04-14 15:26:39 +10001011 AC_MSG_CHECKING(if skeychallenge takes 4 arguments)
1012 AC_TRY_COMPILE(
1013 [#include <stdio.h>
1014 #include <skey.h>],
1015 [(void)skeychallenge(NULL,"name","",0);],
1016 [AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001017 AC_DEFINE(SKEYCHALLENGE_4ARG, 1,
1018 [Define if your skeychallenge()
1019 function takes 4 arguments (NetBSD)])],
Darren Tucker3b908f62004-04-14 15:26:39 +10001020 [AC_MSG_RESULT(no)]
1021 )
Damien Millerc547bf12001-02-16 10:18:12 +11001022 fi
1023 ]
1024)
1025
1026# Check whether user wants TCP wrappers support
Tim Rice13aae5e2001-10-21 17:53:58 -07001027TCPW_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +11001028AC_ARG_WITH(tcp-wrappers,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001029 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +11001030 [
1031 if test "x$withval" != "xno" ; then
1032 saved_LIBS="$LIBS"
Tim Rice13aae5e2001-10-21 17:53:58 -07001033 saved_LDFLAGS="$LDFLAGS"
1034 saved_CPPFLAGS="$CPPFLAGS"
Tim Rice8bb561b2005-03-17 16:23:19 -08001035 if test -n "${withval}" && \
Tim Rice35cc69d2005-03-17 16:44:25 -08001036 test "x${withval}" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001037 if test -d "${withval}/lib"; then
1038 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001039 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001040 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001041 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001042 fi
1043 else
1044 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001045 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001046 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001047 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001048 fi
1049 fi
1050 if test -d "${withval}/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001051 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001052 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001053 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001054 fi
Tim Rice13aae5e2001-10-21 17:53:58 -07001055 fi
Tim Rice4cec93f2002-02-26 08:40:48 -08001056 LIBWRAP="-lwrap"
1057 LIBS="$LIBWRAP $LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001058 AC_MSG_CHECKING(for libwrap)
1059 AC_TRY_LINK(
1060 [
Damien Miller0ac45002004-04-14 20:14:26 +10001061#include <sys/types.h>
1062#include <sys/socket.h>
1063#include <netinet/in.h>
Damien Millerc547bf12001-02-16 10:18:12 +11001064#include <tcpd.h>
1065 int deny_severity = 0, allow_severity = 0;
1066 ],
1067 [hosts_access(0);],
1068 [
1069 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001070 AC_DEFINE(LIBWRAP, 1,
1071 [Define if you want
1072 TCP Wrappers support])
Tim Rice4cec93f2002-02-26 08:40:48 -08001073 AC_SUBST(LIBWRAP)
Tim Rice13aae5e2001-10-21 17:53:58 -07001074 TCPW_MSG="yes"
Damien Millerc547bf12001-02-16 10:18:12 +11001075 ],
1076 [
1077 AC_MSG_ERROR([*** libwrap missing])
1078 ]
1079 )
Tim Rice4cec93f2002-02-26 08:40:48 -08001080 LIBS="$saved_LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001081 fi
1082 ]
1083)
1084
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001085# Check whether user wants libedit support
1086LIBEDIT_MSG="no"
1087AC_ARG_WITH(libedit,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001088 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001089 [ if test "x$withval" != "xno" ; then
Darren Tucker1df61452005-03-21 09:58:07 +11001090 if test "x$withval" != "xyes"; then
Darren Tuckerc373a562005-09-22 20:15:08 +10001091 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1092 if test -n "${need_dash_r}"; then
1093 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1094 else
1095 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1096 fi
Darren Tucker1df61452005-03-21 09:58:07 +11001097 fi
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001098 AC_CHECK_LIB(edit, el_init,
Tim Rice7df8d392005-09-19 09:33:39 -07001099 [ AC_DEFINE(USE_LIBEDIT, 1, [Use libedit for sftp])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001100 LIBEDIT="-ledit -lcurses"
1101 LIBEDIT_MSG="yes"
1102 AC_SUBST(LIBEDIT)
1103 ],
Darren Tucker1df61452005-03-21 09:58:07 +11001104 [ AC_MSG_ERROR(libedit not found) ],
1105 [ -lcurses ]
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001106 )
Darren Tuckerc7572b22005-08-10 20:34:15 +10001107 AC_MSG_CHECKING(if libedit version is compatible)
Tim Ricec1819c82005-08-15 17:48:40 -07001108 AC_COMPILE_IFELSE(
1109 [AC_LANG_SOURCE([[
1110#include <histedit.h>
Darren Tuckerc7572b22005-08-10 20:34:15 +10001111int main(void)
1112{
1113 int i = H_SETSIZE;
1114 el_init("", NULL, NULL, NULL);
1115 exit(0);
1116}
Tim Ricec1819c82005-08-15 17:48:40 -07001117 ]])],
Darren Tuckerc7572b22005-08-10 20:34:15 +10001118 [ AC_MSG_RESULT(yes) ],
1119 [ AC_MSG_RESULT(no)
1120 AC_MSG_ERROR(libedit version is not compatible) ]
1121 )
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001122 fi ]
1123)
1124
Darren Tuckerd9f88912005-02-20 21:01:48 +11001125AUDIT_MODULE=none
1126AC_ARG_WITH(audit,
1127 [ --with-audit=module Enable EXPERIMENTAL audit support (modules=debug,bsm)],
1128 [
1129 AC_MSG_CHECKING(for supported audit module)
1130 case "$withval" in
1131 bsm)
1132 AC_MSG_RESULT(bsm)
1133 AUDIT_MODULE=bsm
1134 dnl Checks for headers, libs and functions
1135 AC_CHECK_HEADERS(bsm/audit.h, [],
1136 [AC_MSG_ERROR(BSM enabled and bsm/audit.h not found)])
1137 AC_CHECK_LIB(bsm, getaudit, [],
1138 [AC_MSG_ERROR(BSM enabled and required library not found)])
1139 AC_CHECK_FUNCS(getaudit, [],
1140 [AC_MSG_ERROR(BSM enabled and required function not found)])
1141 # These are optional
Darren Tucker0d096692005-03-07 17:34:45 +11001142 AC_CHECK_FUNCS(getaudit_addr)
Tim Rice7df8d392005-09-19 09:33:39 -07001143 AC_DEFINE(USE_BSM_AUDIT, 1, [Use BSM audit module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001144 ;;
1145 debug)
1146 AUDIT_MODULE=debug
1147 AC_MSG_RESULT(debug)
Tim Rice7df8d392005-09-19 09:33:39 -07001148 AC_DEFINE(SSH_AUDIT_EVENTS, 1, Use audit debugging module)
Darren Tuckerd9f88912005-02-20 21:01:48 +11001149 ;;
Tim Rice8bc6b902005-08-09 10:09:53 -07001150 no)
Tim Ricec1819c82005-08-15 17:48:40 -07001151 AC_MSG_RESULT(no)
Tim Rice8bc6b902005-08-09 10:09:53 -07001152 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001153 *)
1154 AC_MSG_ERROR([Unknown audit module $withval])
1155 ;;
1156 esac ]
1157)
1158
Damien Millerfe1f1432003-02-24 15:45:42 +11001159dnl Checks for library functions. Please keep in alphabetical order
Darren Tucker0c9653f2005-05-28 15:58:14 +10001160AC_CHECK_FUNCS( \
1161 arc4random \
Damien Miller57f39152005-11-24 19:58:19 +11001162 asprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001163 b64_ntop \
1164 __b64_ntop \
1165 b64_pton \
1166 __b64_pton \
1167 bcopy \
1168 bindresvport_sa \
1169 clock \
1170 closefrom \
1171 dirfd \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001172 fchmod \
1173 fchown \
1174 freeaddrinfo \
1175 futimes \
1176 getaddrinfo \
1177 getcwd \
1178 getgrouplist \
1179 getnameinfo \
1180 getopt \
1181 getpeereid \
1182 _getpty \
1183 getrlimit \
1184 getttyent \
1185 glob \
1186 inet_aton \
1187 inet_ntoa \
1188 inet_ntop \
1189 innetgr \
1190 login_getcapbool \
1191 md5_crypt \
1192 memmove \
1193 mkdtemp \
1194 mmap \
1195 ngetaddrinfo \
1196 nsleep \
1197 ogetaddrinfo \
1198 openlog_r \
1199 openpty \
1200 prctl \
1201 pstat \
1202 readpassphrase \
1203 realpath \
1204 recvmsg \
1205 rresvport_af \
1206 sendmsg \
1207 setdtablesize \
1208 setegid \
1209 setenv \
1210 seteuid \
1211 setgroups \
1212 setlogin \
1213 setpcred \
1214 setproctitle \
1215 setregid \
1216 setreuid \
1217 setrlimit \
1218 setsid \
1219 setvbuf \
1220 sigaction \
1221 sigvec \
1222 snprintf \
1223 socketpair \
1224 strdup \
1225 strerror \
1226 strlcat \
1227 strlcpy \
1228 strmode \
1229 strnvis \
1230 strtonum \
Darren Tucker81eb5d52005-06-01 21:39:33 +10001231 strtoll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001232 strtoul \
1233 sysconf \
1234 tcgetpgrp \
1235 truncate \
1236 unsetenv \
1237 updwtmpx \
Damien Miller57f39152005-11-24 19:58:19 +11001238 vasprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001239 vhangup \
1240 vsnprintf \
1241 waitpid \
Damien Millerfe1f1432003-02-24 15:45:42 +11001242)
Tim Rice13aae5e2001-10-21 17:53:58 -07001243
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001244# IRIX has a const char return value for gai_strerror()
1245AC_CHECK_FUNCS(gai_strerror,[
1246 AC_DEFINE(HAVE_GAI_STRERROR)
1247 AC_TRY_COMPILE([
1248#include <sys/types.h>
1249#include <sys/socket.h>
1250#include <netdb.h>
1251
1252const char *gai_strerror(int);],[
1253char *str;
1254
1255str = gai_strerror(0);],[
1256 AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1,
1257 [Define if gai_strerror() returns const char *])])])
1258
Tim Rice7df8d392005-09-19 09:33:39 -07001259AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP, 1,
1260 [Some systems put nanosleep outside of libc]))
Damien Millercd6853c2003-01-28 11:33:42 +11001261
Darren Tuckerf1159b52003-07-07 19:44:01 +10001262dnl Make sure prototypes are defined for these before using them.
Darren Tuckerf1159b52003-07-07 19:44:01 +10001263AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
Darren Tucker390b6d52005-05-28 16:54:36 +10001264AC_CHECK_DECL(strsep,
1265 [AC_CHECK_FUNCS(strsep)],
1266 [],
1267 [
1268#ifdef HAVE_STRING_H
1269# include <string.h>
1270#endif
1271 ])
Ben Lindstrom3e006472002-10-16 00:24:03 +00001272
Darren Tuckerb2427c82003-09-10 15:22:44 +10001273dnl tcsendbreak might be a macro
1274AC_CHECK_DECL(tcsendbreak,
1275 [AC_DEFINE(HAVE_TCSENDBREAK)],
Damien Millera8e06ce2003-11-21 23:48:55 +11001276 [AC_CHECK_FUNCS(tcsendbreak)],
Darren Tuckerb2427c82003-09-10 15:22:44 +10001277 [#include <termios.h>]
1278)
1279
Darren Tucker5bb14002004-04-23 18:53:10 +10001280AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>])
1281
Darren Tucker2a6b0292003-12-31 14:59:17 +11001282AC_CHECK_FUNCS(setresuid, [
1283 dnl Some platorms have setresuid that isn't implemented, test for this
1284 AC_MSG_CHECKING(if setresuid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001285 AC_RUN_IFELSE(
1286 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001287#include <stdlib.h>
1288#include <errno.h>
1289int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001290 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001291 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001292 [AC_DEFINE(BROKEN_SETRESUID, 1,
1293 [Define if your setresuid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001294 AC_MSG_RESULT(not implemented)],
1295 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001296 )
1297])
Darren Tuckere937be32003-12-17 18:53:26 +11001298
Darren Tucker2a6b0292003-12-31 14:59:17 +11001299AC_CHECK_FUNCS(setresgid, [
1300 dnl Some platorms have setresgid that isn't implemented, test for this
1301 AC_MSG_CHECKING(if setresgid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001302 AC_RUN_IFELSE(
1303 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001304#include <stdlib.h>
1305#include <errno.h>
1306int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001307 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001308 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001309 [AC_DEFINE(BROKEN_SETRESGID, 1,
1310 [Define if your setresgid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001311 AC_MSG_RESULT(not implemented)],
1312 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001313 )
1314])
Darren Tuckere937be32003-12-17 18:53:26 +11001315
Damien Millerad833b32000-08-23 10:46:23 +10001316dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +00001317AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +10001318dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001319AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +00001320AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +10001321dnl Checks for utmpx functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001322AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
andre2ff7b5d2000-06-03 14:57:40 +00001323AC_CHECK_FUNCS(setutxent utmpxname)
Damien Millercedfecc1999-11-15 14:36:53 +11001324
Damien Millera8e06ce2003-11-21 23:48:55 +11001325AC_CHECK_FUNC(daemon,
Tim Rice7df8d392005-09-19 09:33:39 -07001326 [AC_DEFINE(HAVE_DAEMON, 1, [Define if your libraries define daemon()])],
1327 [AC_CHECK_LIB(bsd, daemon,
1328 [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
Damien Miller04f80141999-11-19 15:32:34 +11001329)
1330
Damien Millera8e06ce2003-11-21 23:48:55 +11001331AC_CHECK_FUNC(getpagesize,
Tim Rice7df8d392005-09-19 09:33:39 -07001332 [AC_DEFINE(HAVE_GETPAGESIZE, 1,
1333 [Define if your libraries define getpagesize()])],
1334 [AC_CHECK_LIB(ucb, getpagesize,
1335 [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
Damien Miller9fb07e42000-03-05 16:22:59 +11001336)
1337
Damien Millercb170cb2000-07-01 16:52:55 +10001338# Check for broken snprintf
1339if test "x$ac_cv_func_snprintf" = "xyes" ; then
1340 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001341 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001342 [AC_LANG_SOURCE([[
Damien Millercb170cb2000-07-01 16:52:55 +10001343#include <stdio.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001344int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
Darren Tucker623d92f2004-09-12 22:36:15 +10001345 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001346 [AC_MSG_RESULT(yes)],
Damien Millercb170cb2000-07-01 16:52:55 +10001347 [
1348 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -07001349 AC_DEFINE(BROKEN_SNPRINTF, 1,
1350 [Define if your snprintf is busted])
Damien Millercb170cb2000-07-01 16:52:55 +10001351 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001352 ],
1353 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
Damien Millercb170cb2000-07-01 16:52:55 +10001354 )
1355fi
1356
Damien Miller57f39152005-11-24 19:58:19 +11001357# If we don't have a working asprintf, then we strongly depend on vsnprintf
1358# returning the right thing on overflow: the number of characters it tried to
1359# create (as per SUSv3)
1360if test "x$ac_cv_func_asprintf" != "xyes" && \
1361 test "x$ac_cv_func_vsnprintf" = "xyes" ; then
1362 AC_MSG_CHECKING([whether vsnprintf returns correct values on overflow])
1363 AC_RUN_IFELSE(
1364 [AC_LANG_SOURCE([[
1365#include <sys/types.h>
1366#include <stdio.h>
1367#include <stdarg.h>
1368
1369int x_snprintf(char *str,size_t count,const char *fmt,...)
1370{
1371 size_t ret; va_list ap;
1372 va_start(ap, fmt); ret = vsnprintf(str, count, fmt, ap); va_end(ap);
1373 return ret;
1374}
1375int main(void)
1376{
1377 char x[1];
1378 exit(x_snprintf(x, 1, "%s %d", "hello", 12345) == 11 ? 0 : 1);
1379} ]])],
1380 [AC_MSG_RESULT(yes)],
1381 [
1382 AC_MSG_RESULT(no)
1383 AC_DEFINE(BROKEN_SNPRINTF, 1,
1384 [Define if your snprintf is busted])
1385 AC_MSG_WARN([****** Your vsnprintf() function is broken, complain to your vendor])
1386 ],
1387 [ AC_MSG_WARN([cross compiling: Assuming working vsnprintf()]) ]
1388 )
1389fi
1390
Darren Tuckerd40c66c2005-12-17 22:32:03 +11001391# On systems where [v]snprintf is broken, but is declared in stdio,
1392# check that the fmt argument is const char * or just char *.
1393# This is only useful for when BROKEN_SNPRINTF
1394AC_MSG_CHECKING([whether snprintf can declare const char *fmt])
1395AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
1396 int snprintf(char *a, size_t b, const char *c, ...) { return 0; }
1397 int main(void) { snprintf(0, 0, 0); }
1398 ]])],
1399 [AC_MSG_RESULT(yes)
1400 AC_DEFINE(SNPRINTF_CONST, [const],
1401 [Define as const if snprintf() can declare const char *fmt])],
1402 [AC_MSG_RESULT(no)
1403 AC_DEFINE(SNPRINTF_CONST, [/* not const */])])
1404
Damien Millerb4097182004-05-23 14:09:40 +10001405# Check for missing getpeereid (or equiv) support
1406NO_PEERCHECK=""
1407if test "x$ac_cv_func_getpeereid" != "xyes" ; then
1408 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
1409 AC_TRY_COMPILE(
1410 [#include <sys/types.h>
1411 #include <sys/socket.h>],
1412 [int i = SO_PEERCRED;],
Darren Tucker9d2562c2005-04-05 19:22:45 +10001413 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001414 AC_DEFINE(HAVE_SO_PEERCRED, 1, [Have PEERCRED socket option])
Darren Tucker9d2562c2005-04-05 19:22:45 +10001415 ],
Damien Millerb4097182004-05-23 14:09:40 +10001416 [AC_MSG_RESULT(no)
1417 NO_PEERCHECK=1]
1418 )
1419fi
1420
Damien Millere8328192003-01-07 15:18:32 +11001421dnl see whether mkstemp() requires XXXXXX
1422if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
1423AC_MSG_CHECKING([for (overly) strict mkstemp])
Darren Tucker314d89e2005-10-17 23:29:23 +10001424AC_RUN_IFELSE(
1425 [AC_LANG_SOURCE([[
Damien Millere8328192003-01-07 15:18:32 +11001426#include <stdlib.h>
1427main() { char template[]="conftest.mkstemp-test";
1428if (mkstemp(template) == -1)
1429 exit(1);
1430unlink(template); exit(0);
1431}
Darren Tucker314d89e2005-10-17 23:29:23 +10001432 ]])],
Damien Millere8328192003-01-07 15:18:32 +11001433 [
1434 AC_MSG_RESULT(no)
1435 ],
Damien Millera8e06ce2003-11-21 23:48:55 +11001436 [
Damien Millere8328192003-01-07 15:18:32 +11001437 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001438 AC_DEFINE(HAVE_STRICT_MKSTEMP, 1, [Silly mkstemp()])
Damien Millere8328192003-01-07 15:18:32 +11001439 ],
1440 [
1441 AC_MSG_RESULT(yes)
1442 AC_DEFINE(HAVE_STRICT_MKSTEMP)
Damien Millera8e06ce2003-11-21 23:48:55 +11001443 ]
Damien Millere8328192003-01-07 15:18:32 +11001444)
1445fi
1446
Darren Tucker70a3d552003-08-21 17:58:29 +10001447dnl make sure that openpty does not reacquire controlling terminal
1448if test ! -z "$check_for_openpty_ctty_bug"; then
1449 AC_MSG_CHECKING(if openpty correctly handles controlling tty)
Darren Tucker314d89e2005-10-17 23:29:23 +10001450 AC_RUN_IFELSE(
1451 [AC_LANG_SOURCE([[
Darren Tucker70a3d552003-08-21 17:58:29 +10001452#include <stdio.h>
1453#include <sys/fcntl.h>
1454#include <sys/types.h>
1455#include <sys/wait.h>
1456
1457int
1458main()
1459{
1460 pid_t pid;
1461 int fd, ptyfd, ttyfd, status;
1462
1463 pid = fork();
1464 if (pid < 0) { /* failed */
1465 exit(1);
1466 } else if (pid > 0) { /* parent */
1467 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +11001468 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +10001469 exit(WEXITSTATUS(status));
1470 else
1471 exit(2);
1472 } else { /* child */
1473 close(0); close(1); close(2);
1474 setsid();
1475 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
1476 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
1477 if (fd >= 0)
1478 exit(3); /* Acquired ctty: broken */
1479 else
1480 exit(0); /* Did not acquire ctty: OK */
1481 }
1482}
Darren Tucker314d89e2005-10-17 23:29:23 +10001483 ]])],
Darren Tucker70a3d552003-08-21 17:58:29 +10001484 [
1485 AC_MSG_RESULT(yes)
1486 ],
1487 [
1488 AC_MSG_RESULT(no)
1489 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker314d89e2005-10-17 23:29:23 +10001490 ],
1491 [
1492 AC_MSG_RESULT(cross-compiling, assuming yes)
Darren Tucker70a3d552003-08-21 17:58:29 +10001493 ]
1494 )
1495fi
1496
Tim Rice8bb561b2005-03-17 16:23:19 -08001497if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1498 test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
Darren Tucker4398cf52004-04-06 21:39:02 +10001499 AC_MSG_CHECKING(if getaddrinfo seems to work)
Darren Tucker314d89e2005-10-17 23:29:23 +10001500 AC_RUN_IFELSE(
1501 [AC_LANG_SOURCE([[
Darren Tucker4398cf52004-04-06 21:39:02 +10001502#include <stdio.h>
1503#include <sys/socket.h>
1504#include <netdb.h>
1505#include <errno.h>
1506#include <netinet/in.h>
1507
1508#define TEST_PORT "2222"
1509
1510int
1511main(void)
1512{
1513 int err, sock;
1514 struct addrinfo *gai_ai, *ai, hints;
1515 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1516
1517 memset(&hints, 0, sizeof(hints));
1518 hints.ai_family = PF_UNSPEC;
1519 hints.ai_socktype = SOCK_STREAM;
1520 hints.ai_flags = AI_PASSIVE;
1521
1522 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1523 if (err != 0) {
1524 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1525 exit(1);
1526 }
1527
1528 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1529 if (ai->ai_family != AF_INET6)
1530 continue;
1531
1532 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1533 sizeof(ntop), strport, sizeof(strport),
1534 NI_NUMERICHOST|NI_NUMERICSERV);
1535
1536 if (err != 0) {
1537 if (err == EAI_SYSTEM)
1538 perror("getnameinfo EAI_SYSTEM");
1539 else
1540 fprintf(stderr, "getnameinfo failed: %s\n",
1541 gai_strerror(err));
1542 exit(2);
1543 }
1544
1545 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1546 if (sock < 0)
1547 perror("socket");
1548 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1549 if (errno == EBADF)
1550 exit(3);
1551 }
1552 }
1553 exit(0);
1554}
Darren Tucker314d89e2005-10-17 23:29:23 +10001555 ]])],
Darren Tucker4398cf52004-04-06 21:39:02 +10001556 [
1557 AC_MSG_RESULT(yes)
1558 ],
1559 [
1560 AC_MSG_RESULT(no)
1561 AC_DEFINE(BROKEN_GETADDRINFO)
Darren Tucker314d89e2005-10-17 23:29:23 +10001562 ],
1563 [
1564 AC_MSG_RESULT(cross-compiling, assuming yes)
Darren Tucker4398cf52004-04-06 21:39:02 +10001565 ]
1566 )
1567fi
1568
Tim Rice8bb561b2005-03-17 16:23:19 -08001569if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1570 test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
Darren Tucker691d5232005-02-15 21:45:57 +11001571 AC_MSG_CHECKING(if getaddrinfo seems to work)
Darren Tucker314d89e2005-10-17 23:29:23 +10001572 AC_RUN_IFELSE(
1573 [AC_LANG_SOURCE([[
Darren Tucker691d5232005-02-15 21:45:57 +11001574#include <stdio.h>
1575#include <sys/socket.h>
1576#include <netdb.h>
1577#include <errno.h>
1578#include <netinet/in.h>
1579
1580#define TEST_PORT "2222"
1581
1582int
1583main(void)
1584{
1585 int err, sock;
1586 struct addrinfo *gai_ai, *ai, hints;
1587 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1588
1589 memset(&hints, 0, sizeof(hints));
1590 hints.ai_family = PF_UNSPEC;
1591 hints.ai_socktype = SOCK_STREAM;
1592 hints.ai_flags = AI_PASSIVE;
1593
1594 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1595 if (err != 0) {
1596 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1597 exit(1);
1598 }
1599
1600 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1601 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1602 continue;
1603
1604 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1605 sizeof(ntop), strport, sizeof(strport),
1606 NI_NUMERICHOST|NI_NUMERICSERV);
1607
1608 if (ai->ai_family == AF_INET && err != 0) {
1609 perror("getnameinfo");
1610 exit(2);
1611 }
1612 }
1613 exit(0);
1614}
Darren Tucker314d89e2005-10-17 23:29:23 +10001615 ]])],
Darren Tucker691d5232005-02-15 21:45:57 +11001616 [
1617 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001618 AC_DEFINE(AIX_GETNAMEINFO_HACK, 1,
1619 [Define if you have a getaddrinfo that fails
1620 for the all-zeros IPv6 address])
Darren Tucker691d5232005-02-15 21:45:57 +11001621 ],
1622 [
1623 AC_MSG_RESULT(no)
1624 AC_DEFINE(BROKEN_GETADDRINFO)
Darren Tucker314d89e2005-10-17 23:29:23 +10001625 ],
1626 AC_MSG_RESULT(cross-compiling, assuming no)
Darren Tucker691d5232005-02-15 21:45:57 +11001627 ]
1628 )
1629fi
1630
Darren Tuckera56f1912004-11-02 20:30:54 +11001631if test "x$check_for_conflicting_getspnam" = "x1"; then
1632 AC_MSG_CHECKING(for conflicting getspnam in shadow.h)
1633 AC_COMPILE_IFELSE(
1634 [
1635#include <shadow.h>
1636int main(void) {exit(0);}
1637 ],
1638 [
1639 AC_MSG_RESULT(no)
1640 ],
1641 [
1642 AC_MSG_RESULT(yes)
1643 AC_DEFINE(GETSPNAM_CONFLICTING_DEFS, 1,
1644 [Conflicting defs for getspnam])
1645 ]
1646 )
1647fi
1648
Damien Miller606f8802000-09-16 15:39:56 +11001649AC_FUNC_GETPGRP
1650
Damien Millera64b57a2001-01-17 10:44:13 +11001651# Check for PAM libs
Damien Miller7b22d652000-06-18 14:07:04 +10001652PAM_MSG="no"
Damien Millera22ba012000-03-02 23:09:20 +11001653AC_ARG_WITH(pam,
Damien Millera64b57a2001-01-17 10:44:13 +11001654 [ --with-pam Enable PAM support ],
Damien Millera22ba012000-03-02 23:09:20 +11001655 [
Damien Millera64b57a2001-01-17 10:44:13 +11001656 if test "x$withval" != "xno" ; then
Damien Miller0f47c532004-01-02 18:01:30 +11001657 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
1658 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
Damien Millera64b57a2001-01-17 10:44:13 +11001659 AC_MSG_ERROR([PAM headers not found])
1660 fi
1661
1662 AC_CHECK_LIB(dl, dlopen, , )
1663 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
1664 AC_CHECK_FUNCS(pam_getenvlist)
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001665 AC_CHECK_FUNCS(pam_putenv)
Damien Millera64b57a2001-01-17 10:44:13 +11001666
Damien Millera64b57a2001-01-17 10:44:13 +11001667 PAM_MSG="yes"
1668
Tim Rice7df8d392005-09-19 09:33:39 -07001669 AC_DEFINE(USE_PAM, 1,
1670 [Define if you want to enable PAM support])
Tim Rice7d2d1f12002-02-26 22:05:11 -08001671 if test $ac_cv_lib_dl_dlopen = yes; then
1672 LIBPAM="-lpam -ldl"
1673 else
1674 LIBPAM="-lpam"
1675 fi
1676 AC_SUBST(LIBPAM)
Damien Millera22ba012000-03-02 23:09:20 +11001677 fi
1678 ]
1679)
Damien Millera22ba012000-03-02 23:09:20 +11001680
Damien Millera64b57a2001-01-17 10:44:13 +11001681# Check for older PAM
1682if test "x$PAM_MSG" = "xyes" ; then
Damien Millera22ba012000-03-02 23:09:20 +11001683 # Check PAM strerror arguments (old PAM)
1684 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
1685 AC_TRY_COMPILE(
1686 [
Damien Miller81171112000-04-23 11:14:01 +10001687#include <stdlib.h>
Damien Miller0f47c532004-01-02 18:01:30 +11001688#if defined(HAVE_SECURITY_PAM_APPL_H)
Damien Miller81171112000-04-23 11:14:01 +10001689#include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +11001690#elif defined (HAVE_PAM_PAM_APPL_H)
1691#include <pam/pam_appl.h>
1692#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001693 ],
1694 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
Damien Millera22ba012000-03-02 23:09:20 +11001695 [AC_MSG_RESULT(no)],
1696 [
Tim Rice7df8d392005-09-19 09:33:39 -07001697 AC_DEFINE(HAVE_OLD_PAM, 1,
1698 [Define if you have an old version of PAM
1699 which takes only one argument to pam_strerror])
Damien Millera22ba012000-03-02 23:09:20 +11001700 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +10001701 PAM_MSG="yes (old library)"
Damien Millera22ba012000-03-02 23:09:20 +11001702 ]
Damien Millera64b57a2001-01-17 10:44:13 +11001703 )
Damien Millera22ba012000-03-02 23:09:20 +11001704fi
1705
Tim Riceaef73712002-05-11 13:17:42 -07001706# Search for OpenSSL
1707saved_CPPFLAGS="$CPPFLAGS"
1708saved_LDFLAGS="$LDFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +11001709AC_ARG_WITH(ssl-dir,
1710 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
1711 [
Ben Lindstrom23e13712000-10-29 22:49:19 +00001712 if test "x$withval" != "xno" ; then
Darren Tuckerc7e38d52005-02-09 22:12:30 +11001713 case "$withval" in
1714 # Relative paths
1715 ./*|../*) withval="`pwd`/$withval"
1716 esac
Tim Riceaef73712002-05-11 13:17:42 -07001717 if test -d "$withval/lib"; then
1718 if test -n "${need_dash_r}"; then
1719 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1720 else
1721 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1722 fi
1723 else
1724 if test -n "${need_dash_r}"; then
1725 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
1726 else
1727 LDFLAGS="-L${withval} ${LDFLAGS}"
1728 fi
1729 fi
1730 if test -d "$withval/include"; then
1731 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
1732 else
1733 CPPFLAGS="-I${withval} ${CPPFLAGS}"
1734 fi
Damien Millera22ba012000-03-02 23:09:20 +11001735 fi
1736 ]
1737)
Tim Rice3d5352e2004-02-12 09:27:21 -08001738LIBS="-lcrypto $LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07001739AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL, 1,
1740 [Define if your ssl headers are included
1741 with #include <openssl/header.h>]),
Damien Miller3b512e12000-05-17 23:29:18 +10001742 [
Tim Riceaef73712002-05-11 13:17:42 -07001743 dnl Check default openssl install dir
1744 if test -n "${need_dash_r}"; then
1745 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001746 else
Tim Riceaef73712002-05-11 13:17:42 -07001747 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001748 fi
Tim Riceaef73712002-05-11 13:17:42 -07001749 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
1750 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
1751 [
1752 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
1753 ]
1754 )
1755 ]
1756)
1757
Tim Riced730b782002-08-13 18:52:10 -07001758# Determine OpenSSL header version
1759AC_MSG_CHECKING([OpenSSL header version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001760AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001761 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07001762#include <stdio.h>
1763#include <string.h>
1764#include <openssl/opensslv.h>
1765#define DATA "conftest.sslincver"
1766int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001767 FILE *fd;
1768 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001769
Damien Millera8e06ce2003-11-21 23:48:55 +11001770 fd = fopen(DATA,"w");
1771 if(fd == NULL)
1772 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001773
1774 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
1775 exit(1);
1776
1777 exit(0);
1778}
Darren Tucker623d92f2004-09-12 22:36:15 +10001779 ]])],
Tim Riced730b782002-08-13 18:52:10 -07001780 [
1781 ssl_header_ver=`cat conftest.sslincver`
1782 AC_MSG_RESULT($ssl_header_ver)
1783 ],
1784 [
1785 AC_MSG_RESULT(not found)
1786 AC_MSG_ERROR(OpenSSL version header not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10001787 ],
1788 [
1789 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07001790 ]
1791)
1792
1793# Determine OpenSSL library version
1794AC_MSG_CHECKING([OpenSSL library version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001795AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001796 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07001797#include <stdio.h>
1798#include <string.h>
1799#include <openssl/opensslv.h>
1800#include <openssl/crypto.h>
1801#define DATA "conftest.ssllibver"
1802int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001803 FILE *fd;
1804 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001805
Damien Millera8e06ce2003-11-21 23:48:55 +11001806 fd = fopen(DATA,"w");
1807 if(fd == NULL)
1808 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001809
1810 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
1811 exit(1);
1812
1813 exit(0);
1814}
Darren Tucker623d92f2004-09-12 22:36:15 +10001815 ]])],
Tim Riced730b782002-08-13 18:52:10 -07001816 [
1817 ssl_library_ver=`cat conftest.ssllibver`
1818 AC_MSG_RESULT($ssl_library_ver)
1819 ],
1820 [
1821 AC_MSG_RESULT(not found)
1822 AC_MSG_ERROR(OpenSSL library not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10001823 ],
1824 [
1825 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07001826 ]
1827)
Damien Millera22ba012000-03-02 23:09:20 +11001828
Damien Millerec932372002-01-22 22:16:03 +11001829# Sanity check OpenSSL headers
1830AC_MSG_CHECKING([whether OpenSSL's headers match the library])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001831AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001832 [AC_LANG_SOURCE([[
Damien Millerec932372002-01-22 22:16:03 +11001833#include <string.h>
1834#include <openssl/opensslv.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001835int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10001836 ]])],
Damien Millerec932372002-01-22 22:16:03 +11001837 [
1838 AC_MSG_RESULT(yes)
1839 ],
1840 [
1841 AC_MSG_RESULT(no)
Darren Tuckera0472e02003-06-24 20:22:09 +10001842 AC_MSG_ERROR([Your OpenSSL headers do not match your library.
1843Check config.log for details.
1844Also see contrib/findssl.sh for help identifying header/library mismatches.])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001845 ],
1846 [
1847 AC_MSG_WARN([cross compiling: not checking])
Damien Millerec932372002-01-22 22:16:03 +11001848 ]
1849)
1850
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11001851AC_ARG_WITH(ssl-engine,
1852 [ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
1853 [ if test "x$withval" != "xno" ; then
1854 AC_MSG_CHECKING(for OpenSSL ENGINE support)
1855 AC_TRY_COMPILE(
1856 [ #include <openssl/engine.h>],
1857 [
1858int main(void){ENGINE_load_builtin_engines();ENGINE_register_all_complete();}
1859 ],
1860 [ AC_MSG_RESULT(yes)
1861 AC_DEFINE(USE_OPENSSL_ENGINE, 1,
1862 [Enable OpenSSL engine support])
1863 ],
1864 [ AC_MSG_ERROR(OpenSSL ENGINE support not found)]
1865 )
1866 fi ]
1867)
1868
Darren Tucker129d0bb2005-12-19 17:40:40 +11001869# Check for OpenSSL without EVP_aes_{192,256}_cbc
1870AC_MSG_CHECKING([whether OpenSSL has crippled AES support])
1871AC_COMPILE_IFELSE(
1872 [AC_LANG_SOURCE([[
1873#include <string.h>
1874#include <openssl/evp.h>
Darren Tuckercc7c2122006-02-02 18:44:19 +11001875int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);}
Darren Tucker129d0bb2005-12-19 17:40:40 +11001876 ]])],
1877 [
1878 AC_MSG_RESULT(no)
1879 ],
1880 [
1881 AC_MSG_RESULT(yes)
1882 AC_DEFINE(OPENSSL_LOBOTOMISED_AES, 1,
1883 [libcrypto is missing AES 192 and 256 bit functions])
1884 ]
1885)
1886
Tim Rice3d5352e2004-02-12 09:27:21 -08001887# Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
1888# because the system crypt() is more featureful.
1889if test "x$check_for_libcrypt_before" = "x1"; then
1890 AC_CHECK_LIB(crypt, crypt)
1891fi
1892
Damien Millera8e06ce2003-11-21 23:48:55 +11001893# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
Tim Rice43fa5572004-02-11 14:46:40 -08001894# version in OpenSSL.
Damien Miller4f9f42a2003-05-10 19:28:02 +10001895if test "x$check_for_libcrypt_later" = "x1"; then
Damien Miller95aa2d62001-03-01 09:16:11 +11001896 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
Damien Millera64b57a2001-01-17 10:44:13 +11001897fi
1898
Damien Milleraf87af12006-03-15 13:02:28 +11001899# Search for SHA256 support in libc and/or OpenSSL
1900AC_CHECK_FUNCS(SHA256_Update EVP_sha256)
1901
Tim Rice2291c002005-08-26 13:15:19 -07001902AC_CHECK_LIB(iaf, ia_openinfo)
Damien Miller6c21c512002-01-22 21:57:53 +11001903
1904### Configure cryptographic random number support
1905
1906# Check wheter OpenSSL seeds itself
1907AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001908AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001909 [AC_LANG_SOURCE([[
Damien Miller6c21c512002-01-22 21:57:53 +11001910#include <string.h>
1911#include <openssl/rand.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001912int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10001913 ]])],
Damien Miller6c21c512002-01-22 21:57:53 +11001914 [
1915 OPENSSL_SEEDS_ITSELF=yes
1916 AC_MSG_RESULT(yes)
1917 ],
1918 [
1919 AC_MSG_RESULT(no)
1920 # Default to use of the rand helper if OpenSSL doesn't
1921 # seed itself
1922 USE_RAND_HELPER=yes
Darren Tuckera0c2b392004-09-11 23:26:37 +10001923 ],
1924 [
1925 AC_MSG_WARN([cross compiling: assuming yes])
1926 # This is safe, since all recent OpenSSL versions will
Tim Riceeae17cc2005-03-17 16:52:20 -08001927 # complain at runtime if not seeded correctly.
Darren Tuckera0c2b392004-09-11 23:26:37 +10001928 OPENSSL_SEEDS_ITSELF=yes
Damien Miller6c21c512002-01-22 21:57:53 +11001929 ]
1930)
1931
1932
1933# Do we want to force the use of the rand helper?
1934AC_ARG_WITH(rand-helper,
1935 [ --with-rand-helper Use subprocess to gather strong randomness ],
1936 [
1937 if test "x$withval" = "xno" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11001938 # Force use of OpenSSL's internal RNG, even if
Damien Miller6c21c512002-01-22 21:57:53 +11001939 # the previous test showed it to be unseeded.
1940 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
1941 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
1942 OPENSSL_SEEDS_ITSELF=yes
1943 USE_RAND_HELPER=""
1944 fi
1945 else
1946 USE_RAND_HELPER=yes
1947 fi
1948 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08001949)
Damien Miller6c21c512002-01-22 21:57:53 +11001950
1951# Which randomness source do we use?
Tim Rice8bb561b2005-03-17 16:23:19 -08001952if test ! -z "$OPENSSL_SEEDS_ITSELF" && test -z "$USE_RAND_HELPER" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001953 # OpenSSL only
Tim Rice7df8d392005-09-19 09:33:39 -07001954 AC_DEFINE(OPENSSL_PRNG_ONLY, 1,
1955 [Define if you want OpenSSL's internally seeded PRNG only])
Damien Miller6c21c512002-01-22 21:57:53 +11001956 RAND_MSG="OpenSSL internal ONLY"
1957 INSTALL_SSH_RAND_HELPER=""
Tim Rice1e2c6002002-01-30 22:14:03 -08001958elif test ! -z "$USE_RAND_HELPER" ; then
1959 # install rand helper
Damien Miller6c21c512002-01-22 21:57:53 +11001960 RAND_MSG="ssh-rand-helper"
1961 INSTALL_SSH_RAND_HELPER="yes"
1962fi
1963AC_SUBST(INSTALL_SSH_RAND_HELPER)
1964
1965### Configuration of ssh-rand-helper
1966
1967# PRNGD TCP socket
1968AC_ARG_WITH(prngd-port,
1969 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
1970 [
Damien Millere996d722002-01-23 11:20:59 +11001971 case "$withval" in
1972 no)
1973 withval=""
1974 ;;
1975 [[0-9]]*)
1976 ;;
1977 *)
1978 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
1979 ;;
1980 esac
1981 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001982 PRNGD_PORT="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07001983 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT,
1984 [Port number of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11001985 fi
1986 ]
1987)
1988
1989# PRNGD Unix domain socket
1990AC_ARG_WITH(prngd-socket,
1991 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
1992 [
Damien Millere996d722002-01-23 11:20:59 +11001993 case "$withval" in
1994 yes)
Damien Miller6c21c512002-01-22 21:57:53 +11001995 withval="/var/run/egd-pool"
Damien Millere996d722002-01-23 11:20:59 +11001996 ;;
1997 no)
1998 withval=""
1999 ;;
2000 /*)
2001 ;;
2002 *)
2003 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
2004 ;;
2005 esac
2006
2007 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002008 if test ! -z "$PRNGD_PORT" ; then
2009 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
2010 fi
Damien Miller6385ba02002-01-23 08:12:36 +11002011 if test ! -r "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002012 AC_MSG_WARN(Entropy socket is not readable)
2013 fi
2014 PRNGD_SOCKET="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07002015 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET",
2016 [Location of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11002017 fi
Tim Rice4cec93f2002-02-26 08:40:48 -08002018 ],
2019 [
2020 # Check for existing socket only if we don't have a random device already
2021 if test "$USE_RAND_HELPER" = yes ; then
2022 AC_MSG_CHECKING(for PRNGD/EGD socket)
2023 # Insert other locations here
2024 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
2025 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
2026 PRNGD_SOCKET="$sock"
2027 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
2028 break;
2029 fi
2030 done
2031 if test ! -z "$PRNGD_SOCKET" ; then
2032 AC_MSG_RESULT($PRNGD_SOCKET)
2033 else
2034 AC_MSG_RESULT(not found)
2035 fi
2036 fi
Damien Miller6c21c512002-01-22 21:57:53 +11002037 ]
2038)
2039
2040# Change default command timeout for hashing entropy source
2041entropy_timeout=200
2042AC_ARG_WITH(entropy-timeout,
2043 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
2044 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002045 if test -n "$withval" && test "x$withval" != "xno" && \
2046 test "x${withval}" != "xyes"; then
Damien Miller6c21c512002-01-22 21:57:53 +11002047 entropy_timeout=$withval
2048 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08002049 ]
Damien Miller6c21c512002-01-22 21:57:53 +11002050)
Tim Rice7df8d392005-09-19 09:33:39 -07002051AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout,
2052 [Builtin PRNG command timeout])
Damien Miller6c21c512002-01-22 21:57:53 +11002053
Damien Millerd3f6ad22002-06-25 10:24:47 +10002054SSH_PRIVSEP_USER=sshd
Kevin Steves7ff91122002-04-07 19:22:54 +00002055AC_ARG_WITH(privsep-user,
Kevin Stevesc81e1292002-05-13 03:51:40 +00002056 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00002057 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002058 if test -n "$withval" && test "x$withval" != "xno" && \
2059 test "x${withval}" != "xyes"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10002060 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00002061 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08002062 ]
Kevin Steves7ff91122002-04-07 19:22:54 +00002063)
Tim Rice7df8d392005-09-19 09:33:39 -07002064AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER",
2065 [non-privileged user for privilege separation])
Damien Millerd3f6ad22002-06-25 10:24:47 +10002066AC_SUBST(SSH_PRIVSEP_USER)
Kevin Steves7ff91122002-04-07 19:22:54 +00002067
Tim Rice88f2ab52002-03-17 12:17:34 -08002068# We do this little dance with the search path to insure
2069# that programs that we select for use by installed programs
2070# (which may be run by the super-user) come from trusted
2071# locations before they come from the user's private area.
2072# This should help avoid accidentally configuring some
2073# random version of a program in someone's personal bin.
2074
2075OPATH=$PATH
2076PATH=/bin:/usr/bin
Tim Riceae49fe62002-04-12 10:26:21 -07002077test -h /bin 2> /dev/null && PATH=/usr/bin
Tim Rice88f2ab52002-03-17 12:17:34 -08002078test -d /sbin && PATH=$PATH:/sbin
2079test -d /usr/sbin && PATH=$PATH:/usr/sbin
2080PATH=$PATH:/etc:$OPATH
2081
Damien Millera8e06ce2003-11-21 23:48:55 +11002082# These programs are used by the command hashing source to gather entropy
Damien Miller6c21c512002-01-22 21:57:53 +11002083OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
2084OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
2085OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
2086OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
2087OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
2088OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
2089OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
2090OSSH_PATH_ENTROPY_PROG(PROG_W, w)
2091OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
2092OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
2093OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
2094OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
2095OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
2096OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
2097OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
2098OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
Tim Rice88f2ab52002-03-17 12:17:34 -08002099# restore PATH
2100PATH=$OPATH
Damien Miller6c21c512002-01-22 21:57:53 +11002101
2102# Where does ssh-rand-helper get its randomness from?
2103INSTALL_SSH_PRNG_CMDS=""
2104if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
2105 if test ! -z "$PRNGD_PORT" ; then
2106 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
2107 elif test ! -z "$PRNGD_SOCKET" ; then
2108 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
2109 else
2110 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
2111 RAND_HELPER_CMDHASH=yes
2112 INSTALL_SSH_PRNG_CMDS="yes"
2113 fi
2114fi
2115AC_SUBST(INSTALL_SSH_PRNG_CMDS)
2116
2117
Ben Lindstromb5628642000-10-18 00:02:25 +00002118# Cheap hack to ensure NEWS-OS libraries are arranged right.
2119if test ! -z "$SONY" ; then
2120 LIBS="$LIBS -liberty";
2121fi
2122
Damien Miller57f39152005-11-24 19:58:19 +11002123# Check for long long datatypes
2124AC_CHECK_TYPES([long long, unsigned long long, long double])
2125
2126# Check datatype sizes
Damien Millere0f45742000-01-18 09:12:06 +11002127AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +11002128AC_CHECK_SIZEOF(short int, 2)
2129AC_CHECK_SIZEOF(int, 4)
2130AC_CHECK_SIZEOF(long int, 4)
2131AC_CHECK_SIZEOF(long long int, 8)
2132
Damien Millerfa2bb692002-04-23 23:22:25 +10002133# Sanity check long long for some platforms (AIX)
2134if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
2135 ac_cv_sizeof_long_long_int=0
2136fi
2137
Darren Tucker537f1ed2005-10-25 18:38:33 +10002138# compute LLONG_MIN and LLONG_MAX if we don't know them.
2139if test -z "$have_llong_max"; then
2140 AC_MSG_CHECKING([for max value of long long])
2141 AC_RUN_IFELSE(
2142 [AC_LANG_SOURCE([[
2143#include <stdio.h>
2144/* Why is this so damn hard? */
2145#ifdef __GNUC__
2146# undef __GNUC__
2147#endif
2148#define __USE_ISOC99
2149#include <limits.h>
2150#define DATA "conftest.llminmax"
Darren Tuckerd1450db2006-03-13 19:06:51 +11002151#define my_abs(a) ((a) < 0 ? ((a) * -1) : (a))
2152
2153/*
2154 * printf in libc on some platforms (eg old Tru64) does not understand %lld so
2155 * we do this the hard way.
2156 */
2157static int
2158fprint_ll(FILE *f, long long n)
2159{
2160 unsigned int i;
2161 int l[sizeof(long long) * 8];
2162
2163 if (n < 0)
2164 if (fprintf(f, "-") < 0)
2165 return -1;
2166 for (i = 0; n != 0; i++) {
2167 l[i] = my_abs(n % 10);
2168 n /= 10;
2169 }
2170 do {
2171 if (fprintf(f, "%d", l[--i]) < 0)
2172 return -1;
2173 } while (i != 0);
2174 if (fprintf(f, " ") < 0)
2175 return -1;
2176 return 0;
2177}
2178
Darren Tucker537f1ed2005-10-25 18:38:33 +10002179int main(void) {
2180 FILE *f;
2181 long long i, llmin, llmax = 0;
2182
2183 if((f = fopen(DATA,"w")) == NULL)
2184 exit(1);
2185
2186#if defined(LLONG_MIN) && defined(LLONG_MAX)
2187 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
2188 llmin = LLONG_MIN;
2189 llmax = LLONG_MAX;
2190#else
2191 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n");
2192 /* This will work on one's complement and two's complement */
2193 for (i = 1; i > llmax; i <<= 1, i++)
2194 llmax = i;
2195 llmin = llmax + 1LL; /* wrap */
2196#endif
2197
2198 /* Sanity check */
2199 if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
Darren Tuckerd1450db2006-03-13 19:06:51 +11002200 || llmax - 1 > llmax || llmin == llmax || llmin == 0
2201 || llmax == 0 || llmax < LONG_MAX || llmin > LONG_MIN) {
Darren Tucker537f1ed2005-10-25 18:38:33 +10002202 fprintf(f, "unknown unknown\n");
2203 exit(2);
2204 }
2205
Darren Tuckerd1450db2006-03-13 19:06:51 +11002206 if (fprint_ll(f, llmin) < 0)
Darren Tucker537f1ed2005-10-25 18:38:33 +10002207 exit(3);
Darren Tuckerd1450db2006-03-13 19:06:51 +11002208 if (fprint_ll(f, llmax) < 0)
2209 exit(4);
2210 if (fclose(f) < 0)
2211 exit(5);
Darren Tucker537f1ed2005-10-25 18:38:33 +10002212 exit(0);
2213}
2214 ]])],
2215 [
2216 llong_min=`$AWK '{print $1}' conftest.llminmax`
2217 llong_max=`$AWK '{print $2}' conftest.llminmax`
2218
Darren Tucker537f1ed2005-10-25 18:38:33 +10002219 AC_MSG_RESULT($llong_max)
2220 AC_DEFINE_UNQUOTED(LLONG_MAX, [${llong_max}LL],
2221 [max value of long long calculated by configure])
2222 AC_MSG_CHECKING([for min value of long long])
2223 AC_MSG_RESULT($llong_min)
2224 AC_DEFINE_UNQUOTED(LLONG_MIN, [${llong_min}LL],
2225 [min value of long long calculated by configure])
2226 ],
2227 [
2228 AC_MSG_RESULT(not found)
2229 ],
2230 [
2231 AC_MSG_WARN([cross compiling: not checking])
2232 ]
2233 )
2234fi
2235
2236
Damien Millera22ba012000-03-02 23:09:20 +11002237# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11002238AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
2239 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002240 [ #include <sys/types.h> ],
2241 [ u_int a; a = 1;],
Damien Millercaf6dd62000-08-29 11:33:50 +11002242 [ ac_cv_have_u_int="yes" ],
2243 [ ac_cv_have_u_int="no" ]
2244 )
2245])
2246if test "x$ac_cv_have_u_int" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002247 AC_DEFINE(HAVE_U_INT, 1, [define if you have u_int data type])
Damien Millercaf6dd62000-08-29 11:33:50 +11002248 have_u_int=1
2249fi
2250
Damien Miller61e50f12000-05-08 20:49:37 +10002251AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
2252 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002253 [ #include <sys/types.h> ],
2254 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002255 [ ac_cv_have_intxx_t="yes" ],
2256 [ ac_cv_have_intxx_t="no" ]
2257 )
2258])
2259if test "x$ac_cv_have_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002260 AC_DEFINE(HAVE_INTXX_T, 1, [define if you have intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002261 have_intxx_t=1
2262fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002263
2264if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002265 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002266then
2267 AC_MSG_CHECKING([for intXX_t types in stdint.h])
2268 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002269 [ #include <stdint.h> ],
2270 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002271 [
2272 AC_DEFINE(HAVE_INTXX_T)
2273 AC_MSG_RESULT(yes)
2274 ],
2275 [ AC_MSG_RESULT(no) ]
2276 )
2277fi
2278
Damien Miller578783e2000-09-23 14:12:24 +11002279AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
2280 AC_TRY_COMPILE(
Tim Rice907881e2002-07-18 11:44:50 -07002281 [
2282#include <sys/types.h>
2283#ifdef HAVE_STDINT_H
2284# include <stdint.h>
2285#endif
2286#include <sys/socket.h>
2287#ifdef HAVE_SYS_BITYPES_H
2288# include <sys/bitypes.h>
2289#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11002290 ],
2291 [ int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002292 [ ac_cv_have_int64_t="yes" ],
2293 [ ac_cv_have_int64_t="no" ]
2294 )
2295])
2296if test "x$ac_cv_have_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002297 AC_DEFINE(HAVE_INT64_T, 1, [define if you have int64_t data type])
Tim Rice4cec93f2002-02-26 08:40:48 -08002298fi
2299
Damien Miller61e50f12000-05-08 20:49:37 +10002300AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
2301 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002302 [ #include <sys/types.h> ],
2303 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002304 [ ac_cv_have_u_intxx_t="yes" ],
2305 [ ac_cv_have_u_intxx_t="no" ]
2306 )
2307])
2308if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002309 AC_DEFINE(HAVE_U_INTXX_T, 1, [define if you have u_intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002310 have_u_intxx_t=1
2311fi
Damien Millerc6398ef1999-11-20 12:18:40 +11002312
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002313if test -z "$have_u_intxx_t" ; then
2314 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
2315 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002316 [ #include <sys/socket.h> ],
2317 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002318 [
2319 AC_DEFINE(HAVE_U_INTXX_T)
2320 AC_MSG_RESULT(yes)
2321 ],
2322 [ AC_MSG_RESULT(no) ]
2323 )
2324fi
2325
Damien Miller578783e2000-09-23 14:12:24 +11002326AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
2327 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002328 [ #include <sys/types.h> ],
2329 [ u_int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002330 [ ac_cv_have_u_int64_t="yes" ],
2331 [ ac_cv_have_u_int64_t="no" ]
2332 )
2333])
2334if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002335 AC_DEFINE(HAVE_U_INT64_T, 1, [define if you have u_int64_t data type])
Damien Miller578783e2000-09-23 14:12:24 +11002336 have_u_int64_t=1
2337fi
2338
Tim Rice4cec93f2002-02-26 08:40:48 -08002339if test -z "$have_u_int64_t" ; then
2340 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
2341 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002342 [ #include <sys/bitypes.h> ],
Tim Rice4cec93f2002-02-26 08:40:48 -08002343 [ u_int64_t a; a = 1],
2344 [
2345 AC_DEFINE(HAVE_U_INT64_T)
2346 AC_MSG_RESULT(yes)
2347 ],
2348 [ AC_MSG_RESULT(no) ]
2349 )
2350fi
2351
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002352if test -z "$have_u_intxx_t" ; then
2353 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
2354 AC_TRY_COMPILE(
2355 [
2356#include <sys/types.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002357 ],
2358 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002359 [ ac_cv_have_uintxx_t="yes" ],
2360 [ ac_cv_have_uintxx_t="no" ]
2361 )
2362 ])
2363 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002364 AC_DEFINE(HAVE_UINTXX_T, 1,
2365 [define if you have uintxx_t data type])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002366 fi
2367fi
2368
2369if test -z "$have_uintxx_t" ; then
2370 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
2371 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002372 [ #include <stdint.h> ],
2373 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002374 [
2375 AC_DEFINE(HAVE_UINTXX_T)
2376 AC_MSG_RESULT(yes)
2377 ],
2378 [ AC_MSG_RESULT(no) ]
2379 )
2380fi
2381
Damien Milleredb82922000-06-20 13:25:52 +10002382if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002383 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11002384then
2385 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
2386 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +10002387 [
2388#include <sys/bitypes.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002389 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002390 [
Damien Miller70494d12000-04-03 15:57:06 +10002391 int8_t a; int16_t b; int32_t c;
2392 u_int8_t e; u_int16_t f; u_int32_t g;
2393 a = b = c = e = f = g = 1;
Damien Millera8e06ce2003-11-21 23:48:55 +11002394 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002395 [
2396 AC_DEFINE(HAVE_U_INTXX_T)
2397 AC_DEFINE(HAVE_INTXX_T)
2398 AC_MSG_RESULT(yes)
2399 ],
2400 [AC_MSG_RESULT(no)]
Damien Millera8e06ce2003-11-21 23:48:55 +11002401 )
Damien Millerb29ea912000-01-15 14:12:03 +11002402fi
2403
Damien Miller58be7382001-09-15 21:31:54 +10002404
2405AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
2406 AC_TRY_COMPILE(
2407 [
2408#include <sys/types.h>
2409 ],
2410 [ u_char foo; foo = 125; ],
2411 [ ac_cv_have_u_char="yes" ],
2412 [ ac_cv_have_u_char="no" ]
2413 )
2414])
2415if test "x$ac_cv_have_u_char" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002416 AC_DEFINE(HAVE_U_CHAR, 1, [define if you have u_char data type])
Damien Miller58be7382001-09-15 21:31:54 +10002417fi
2418
Tim Rice13aae5e2001-10-21 17:53:58 -07002419TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11002420
Tim Rice200a5c02002-02-26 22:12:34 -08002421AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
Tim Rice4cec93f2002-02-26 08:40:48 -08002422
Damien Miller848b9932005-02-24 12:12:34 +11002423AC_CHECK_TYPES(in_addr_t,,,
2424[#include <sys/types.h>
2425#include <netinet/in.h>])
Darren Tuckerd9f88912005-02-20 21:01:48 +11002426
Damien Miller61e50f12000-05-08 20:49:37 +10002427AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
2428 AC_TRY_COMPILE(
2429 [
2430#include <sys/types.h>
2431 ],
2432 [ size_t foo; foo = 1235; ],
2433 [ ac_cv_have_size_t="yes" ],
2434 [ ac_cv_have_size_t="no" ]
2435 )
2436])
2437if test "x$ac_cv_have_size_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002438 AC_DEFINE(HAVE_SIZE_T, 1, [define if you have size_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002439fi
Damien Miller95058511999-12-29 10:36:45 +11002440
Damien Miller615f9392000-05-17 22:53:33 +10002441AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
2442 AC_TRY_COMPILE(
2443 [
2444#include <sys/types.h>
2445 ],
2446 [ ssize_t foo; foo = 1235; ],
2447 [ ac_cv_have_ssize_t="yes" ],
2448 [ ac_cv_have_ssize_t="no" ]
2449 )
2450])
2451if test "x$ac_cv_have_ssize_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002452 AC_DEFINE(HAVE_SSIZE_T, 1, [define if you have ssize_t data type])
Damien Miller615f9392000-05-17 22:53:33 +10002453fi
2454
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002455AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
2456 AC_TRY_COMPILE(
2457 [
2458#include <time.h>
2459 ],
2460 [ clock_t foo; foo = 1235; ],
2461 [ ac_cv_have_clock_t="yes" ],
2462 [ ac_cv_have_clock_t="no" ]
2463 )
2464])
2465if test "x$ac_cv_have_clock_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002466 AC_DEFINE(HAVE_CLOCK_T, 1, [define if you have clock_t data type])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002467fi
2468
Damien Millerb54b40e2000-06-23 08:23:34 +10002469AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
2470 AC_TRY_COMPILE(
2471 [
2472#include <sys/types.h>
2473#include <sys/socket.h>
2474 ],
2475 [ sa_family_t foo; foo = 1235; ],
2476 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +11002477 [ AC_TRY_COMPILE(
2478 [
2479#include <sys/types.h>
2480#include <sys/socket.h>
2481#include <netinet/in.h>
2482 ],
2483 [ sa_family_t foo; foo = 1235; ],
2484 [ ac_cv_have_sa_family_t="yes" ],
2485
Damien Millerb54b40e2000-06-23 08:23:34 +10002486 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +11002487 )]
Damien Millerb54b40e2000-06-23 08:23:34 +10002488 )
2489])
2490if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002491 AC_DEFINE(HAVE_SA_FAMILY_T, 1,
2492 [define if you have sa_family_t data type])
Damien Millerb54b40e2000-06-23 08:23:34 +10002493fi
2494
Damien Miller0f91b4e2000-06-18 15:43:25 +10002495AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
2496 AC_TRY_COMPILE(
2497 [
2498#include <sys/types.h>
2499 ],
2500 [ pid_t foo; foo = 1235; ],
2501 [ ac_cv_have_pid_t="yes" ],
2502 [ ac_cv_have_pid_t="no" ]
2503 )
2504])
2505if test "x$ac_cv_have_pid_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002506 AC_DEFINE(HAVE_PID_T, 1, [define if you have pid_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002507fi
2508
2509AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
2510 AC_TRY_COMPILE(
2511 [
2512#include <sys/types.h>
2513 ],
2514 [ mode_t foo; foo = 1235; ],
2515 [ ac_cv_have_mode_t="yes" ],
2516 [ ac_cv_have_mode_t="no" ]
2517 )
2518])
2519if test "x$ac_cv_have_mode_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002520 AC_DEFINE(HAVE_MODE_T, 1, [define if you have mode_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002521fi
2522
Damien Miller61e50f12000-05-08 20:49:37 +10002523
2524AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
2525 AC_TRY_COMPILE(
2526 [
Damien Miller81171112000-04-23 11:14:01 +10002527#include <sys/types.h>
2528#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002529 ],
2530 [ struct sockaddr_storage s; ],
2531 [ ac_cv_have_struct_sockaddr_storage="yes" ],
2532 [ ac_cv_have_struct_sockaddr_storage="no" ]
2533 )
2534])
2535if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002536 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE, 1,
2537 [define if you have struct sockaddr_storage data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002538fi
Damien Miller34132e52000-01-14 15:45:46 +11002539
Damien Miller61e50f12000-05-08 20:49:37 +10002540AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
2541 AC_TRY_COMPILE(
2542 [
Damien Miller7b22d652000-06-18 14:07:04 +10002543#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002544#include <netinet/in.h>
2545 ],
2546 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
2547 [ ac_cv_have_struct_sockaddr_in6="yes" ],
2548 [ ac_cv_have_struct_sockaddr_in6="no" ]
2549 )
2550])
2551if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002552 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6, 1,
2553 [define if you have struct sockaddr_in6 data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002554fi
Damien Miller34132e52000-01-14 15:45:46 +11002555
Damien Miller61e50f12000-05-08 20:49:37 +10002556AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
2557 AC_TRY_COMPILE(
2558 [
Damien Miller7b22d652000-06-18 14:07:04 +10002559#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002560#include <netinet/in.h>
2561 ],
2562 [ struct in6_addr s; s.s6_addr[0] = 0; ],
2563 [ ac_cv_have_struct_in6_addr="yes" ],
2564 [ ac_cv_have_struct_in6_addr="no" ]
2565 )
2566])
2567if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002568 AC_DEFINE(HAVE_STRUCT_IN6_ADDR, 1,
2569 [define if you have struct in6_addr data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002570fi
Damien Miller34132e52000-01-14 15:45:46 +11002571
Damien Miller61e50f12000-05-08 20:49:37 +10002572AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
2573 AC_TRY_COMPILE(
2574 [
Damien Miller81171112000-04-23 11:14:01 +10002575#include <sys/types.h>
2576#include <sys/socket.h>
2577#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002578 ],
2579 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
2580 [ ac_cv_have_struct_addrinfo="yes" ],
2581 [ ac_cv_have_struct_addrinfo="no" ]
2582 )
2583])
2584if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002585 AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1,
2586 [define if you have struct addrinfo data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002587fi
2588
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002589AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
2590 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002591 [ #include <sys/time.h> ],
2592 [ struct timeval tv; tv.tv_sec = 1;],
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002593 [ ac_cv_have_struct_timeval="yes" ],
2594 [ ac_cv_have_struct_timeval="no" ]
2595 )
2596])
2597if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002598 AC_DEFINE(HAVE_STRUCT_TIMEVAL, 1, [define if you have struct timeval])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002599 have_struct_timeval=1
2600fi
2601
Tim Rice4e4dc562003-03-18 10:21:40 -08002602AC_CHECK_TYPES(struct timespec)
2603
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00002604# We need int64_t or else certian parts of the compile will fail.
Tim Rice8bb561b2005-03-17 16:23:19 -08002605if test "x$ac_cv_have_int64_t" = "xno" && \
2606 test "x$ac_cv_sizeof_long_int" != "x8" && \
2607 test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00002608 echo "OpenSSH requires int64_t support. Contact your vendor or install"
2609 echo "an alternative compiler (I.E., GCC) before continuing."
2610 echo ""
2611 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08002612else
2613dnl test snprintf (broken on SCO w/gcc)
Darren Tuckera0c2b392004-09-11 23:26:37 +10002614 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002615 [AC_LANG_SOURCE([[
Tim Ricebee3f222001-03-11 17:32:12 -08002616#include <stdio.h>
2617#include <string.h>
2618#ifdef HAVE_SNPRINTF
2619main()
2620{
2621 char buf[50];
2622 char expected_out[50];
2623 int mazsize = 50 ;
2624#if (SIZEOF_LONG_INT == 8)
2625 long int num = 0x7fffffffffffffff;
2626#else
Kevin Steves6482ec82001-07-15 02:09:28 +00002627 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08002628#endif
2629 strcpy(expected_out, "9223372036854775807");
2630 snprintf(buf, mazsize, "%lld", num);
2631 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11002632 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08002633 exit(0);
2634}
2635#else
2636main() { exit(0); }
2637#endif
Darren Tucker623d92f2004-09-12 22:36:15 +10002638 ]])], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],
Darren Tuckera0c2b392004-09-11 23:26:37 +10002639 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
Tim Ricebee3f222001-03-11 17:32:12 -08002640 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00002641fi
2642
Damien Miller78315eb2000-09-29 23:01:36 +11002643dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10002644OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
2645OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
2646OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
2647OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
2648OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10002649OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10002650OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
2651OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10002652OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10002653OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
2654OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
2655OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
2656OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00002657OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
2658OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
2659OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
2660OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Tim Rice13aae5e2001-10-21 17:53:58 -07002661
2662AC_CHECK_MEMBERS([struct stat.st_blksize])
Darren Tucker58e298d2005-11-25 13:14:58 +11002663AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE(__res_state, state,
2664 [Define if we don't have struct __res_state in resolv.h])],
2665[
2666#include <stdio.h>
2667#if HAVE_SYS_TYPES_H
2668# include <sys/types.h>
2669#endif
2670#include <netinet/in.h>
2671#include <arpa/nameser.h>
2672#include <resolv.h>
2673])
andre2ff7b5d2000-06-03 14:57:40 +00002674
Damien Miller61e50f12000-05-08 20:49:37 +10002675AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
2676 ac_cv_have_ss_family_in_struct_ss, [
2677 AC_TRY_COMPILE(
2678 [
Damien Miller81171112000-04-23 11:14:01 +10002679#include <sys/types.h>
2680#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002681 ],
2682 [ struct sockaddr_storage s; s.ss_family = 1; ],
2683 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
2684 [ ac_cv_have_ss_family_in_struct_ss="no" ],
2685 )
2686])
2687if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002688 AC_DEFINE(HAVE_SS_FAMILY_IN_SS, 1, [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10002689fi
2690
Damien Miller61e50f12000-05-08 20:49:37 +10002691AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
2692 ac_cv_have___ss_family_in_struct_ss, [
2693 AC_TRY_COMPILE(
2694 [
Damien Miller81171112000-04-23 11:14:01 +10002695#include <sys/types.h>
2696#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002697 ],
2698 [ struct sockaddr_storage s; s.__ss_family = 1; ],
2699 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
2700 [ ac_cv_have___ss_family_in_struct_ss="no" ]
2701 )
2702])
2703if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002704 AC_DEFINE(HAVE___SS_FAMILY_IN_SS, 1,
2705 [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10002706fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11002707
Damien Millerad833b32000-08-23 10:46:23 +10002708AC_CACHE_CHECK([for pw_class field in struct passwd],
2709 ac_cv_have_pw_class_in_struct_passwd, [
2710 AC_TRY_COMPILE(
2711 [
Damien Millerad833b32000-08-23 10:46:23 +10002712#include <pwd.h>
2713 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00002714 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10002715 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
2716 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
2717 )
2718])
2719if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002720 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD, 1,
2721 [Define if your password has a pw_class field])
Damien Millerad833b32000-08-23 10:46:23 +10002722fi
2723
Kevin Steves82456952001-06-22 21:14:18 +00002724AC_CACHE_CHECK([for pw_expire field in struct passwd],
2725 ac_cv_have_pw_expire_in_struct_passwd, [
2726 AC_TRY_COMPILE(
2727 [
2728#include <pwd.h>
2729 ],
2730 [ struct passwd p; p.pw_expire = 0; ],
2731 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
2732 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
2733 )
2734])
2735if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002736 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD, 1,
2737 [Define if your password has a pw_expire field])
Kevin Steves82456952001-06-22 21:14:18 +00002738fi
2739
2740AC_CACHE_CHECK([for pw_change field in struct passwd],
2741 ac_cv_have_pw_change_in_struct_passwd, [
2742 AC_TRY_COMPILE(
2743 [
2744#include <pwd.h>
2745 ],
2746 [ struct passwd p; p.pw_change = 0; ],
2747 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
2748 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
2749 )
2750])
2751if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002752 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD, 1,
2753 [Define if your password has a pw_change field])
Kevin Steves82456952001-06-22 21:14:18 +00002754fi
Damien Miller61e50f12000-05-08 20:49:37 +10002755
Tim Rice28bbb0c2002-05-27 17:37:32 -07002756dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00002757AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
2758 ac_cv_have_accrights_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10002759 AC_COMPILE_IFELSE(
Kevin Steves939c9db2002-03-22 17:23:25 +00002760 [
Tim Riceae49fe62002-04-12 10:26:21 -07002761#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00002762#include <sys/socket.h>
2763#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07002764int main() {
2765#ifdef msg_accrights
Darren Tuckera0c2b392004-09-11 23:26:37 +10002766#error "msg_accrights is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07002767exit(1);
2768#endif
2769struct msghdr m;
2770m.msg_accrights = 0;
2771exit(0);
2772}
Kevin Steves939c9db2002-03-22 17:23:25 +00002773 ],
Kevin Steves939c9db2002-03-22 17:23:25 +00002774 [ ac_cv_have_accrights_in_msghdr="yes" ],
2775 [ ac_cv_have_accrights_in_msghdr="no" ]
2776 )
2777])
2778if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002779 AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR, 1,
2780 [Define if your system uses access rights style
2781 file descriptor passing])
Kevin Steves939c9db2002-03-22 17:23:25 +00002782fi
2783
Kevin Stevesa44e0352002-04-07 16:18:03 +00002784AC_CACHE_CHECK([for msg_control field in struct msghdr],
2785 ac_cv_have_control_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10002786 AC_COMPILE_IFELSE(
Kevin Stevesa44e0352002-04-07 16:18:03 +00002787 [
Tim Riceae49fe62002-04-12 10:26:21 -07002788#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00002789#include <sys/socket.h>
2790#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07002791int main() {
2792#ifdef msg_control
Darren Tuckera0c2b392004-09-11 23:26:37 +10002793#error "msg_control is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07002794exit(1);
2795#endif
2796struct msghdr m;
2797m.msg_control = 0;
2798exit(0);
2799}
Kevin Stevesa44e0352002-04-07 16:18:03 +00002800 ],
Kevin Stevesa44e0352002-04-07 16:18:03 +00002801 [ ac_cv_have_control_in_msghdr="yes" ],
2802 [ ac_cv_have_control_in_msghdr="no" ]
2803 )
2804])
2805if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002806 AC_DEFINE(HAVE_CONTROL_IN_MSGHDR, 1,
2807 [Define if your system uses ancillary data style
2808 file descriptor passing])
Kevin Stevesa44e0352002-04-07 16:18:03 +00002809fi
2810
Damien Miller61e50f12000-05-08 20:49:37 +10002811AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002812 AC_TRY_LINK([],
2813 [ extern char *__progname; printf("%s", __progname); ],
Damien Miller61e50f12000-05-08 20:49:37 +10002814 [ ac_cv_libc_defines___progname="yes" ],
2815 [ ac_cv_libc_defines___progname="no" ]
2816 )
2817])
2818if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002819 AC_DEFINE(HAVE___PROGNAME, 1, [Define if libc defines __progname])
Damien Miller61e50f12000-05-08 20:49:37 +10002820fi
2821
Kevin Steves4846f4a2002-03-22 18:19:53 +00002822AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
2823 AC_TRY_LINK([
2824#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002825],
2826 [ printf("%s", __FUNCTION__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00002827 [ ac_cv_cc_implements___FUNCTION__="yes" ],
2828 [ ac_cv_cc_implements___FUNCTION__="no" ]
2829 )
2830])
2831if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002832 AC_DEFINE(HAVE___FUNCTION__, 1,
2833 [Define if compiler implements __FUNCTION__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00002834fi
2835
2836AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
2837 AC_TRY_LINK([
2838#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002839],
2840 [ printf("%s", __func__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00002841 [ ac_cv_cc_implements___func__="yes" ],
2842 [ ac_cv_cc_implements___func__="no" ]
2843 )
2844])
2845if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002846 AC_DEFINE(HAVE___func__, 1, [Define if compiler implements __func__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00002847fi
2848
Damien Miller57f39152005-11-24 19:58:19 +11002849AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [
2850 AC_TRY_LINK(
2851 [#include <stdarg.h>
2852 va_list x,y;],
2853 [va_copy(x,y);],
2854 [ ac_cv_have_va_copy="yes" ],
2855 [ ac_cv_have_va_copy="no" ]
2856 )
2857])
2858if test "x$ac_cv_have_va_copy" = "xyes" ; then
2859 AC_DEFINE(HAVE_VA_COPY, 1, [Define if va_copy exists])
2860fi
2861
2862AC_CACHE_CHECK([whether __va_copy exists], ac_cv_have___va_copy, [
2863 AC_TRY_LINK(
2864 [#include <stdarg.h>
2865 va_list x,y;],
2866 [__va_copy(x,y);],
2867 [ ac_cv_have___va_copy="yes" ],
2868 [ ac_cv_have___va_copy="no" ]
2869 )
2870])
2871if test "x$ac_cv_have___va_copy" = "xyes" ; then
2872 AC_DEFINE(HAVE___VA_COPY, 1, [Define if __va_copy exists])
2873fi
2874
Damien Miller4f8e6692001-07-14 13:22:53 +10002875AC_CACHE_CHECK([whether getopt has optreset support],
2876 ac_cv_have_getopt_optreset, [
2877 AC_TRY_LINK(
2878 [
2879#include <getopt.h>
2880 ],
2881 [ extern int optreset; optreset = 0; ],
2882 [ ac_cv_have_getopt_optreset="yes" ],
2883 [ ac_cv_have_getopt_optreset="no" ]
2884 )
2885])
2886if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002887 AC_DEFINE(HAVE_GETOPT_OPTRESET, 1,
2888 [Define if your getopt(3) defines and uses optreset])
Damien Miller4f8e6692001-07-14 13:22:53 +10002889fi
Damien Millera22ba012000-03-02 23:09:20 +11002890
Damien Millerecbb26d2000-07-15 14:59:14 +10002891AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002892 AC_TRY_LINK([],
2893 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
Damien Millerecbb26d2000-07-15 14:59:14 +10002894 [ ac_cv_libc_defines_sys_errlist="yes" ],
2895 [ ac_cv_libc_defines_sys_errlist="no" ]
2896 )
2897])
2898if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002899 AC_DEFINE(HAVE_SYS_ERRLIST, 1,
2900 [Define if your system defines sys_errlist[]])
Damien Millerecbb26d2000-07-15 14:59:14 +10002901fi
2902
2903
Damien Miller11fa2cc2000-08-16 10:35:58 +10002904AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002905 AC_TRY_LINK([],
2906 [ extern int sys_nerr; printf("%i", sys_nerr);],
Damien Miller11fa2cc2000-08-16 10:35:58 +10002907 [ ac_cv_libc_defines_sys_nerr="yes" ],
2908 [ ac_cv_libc_defines_sys_nerr="no" ]
2909 )
2910])
2911if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002912 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if your system defines sys_nerr])
Damien Miller11fa2cc2000-08-16 10:35:58 +10002913fi
2914
Damien Millera8e06ce2003-11-21 23:48:55 +11002915SCARD_MSG="no"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002916# Check whether user wants sectok support
2917AC_ARG_WITH(sectok,
2918 [ --with-sectok Enable smartcard support using libsectok],
Damien Miller85de5802001-09-18 14:01:11 +10002919 [
2920 if test "x$withval" != "xno" ; then
2921 if test "x$withval" != "xyes" ; then
2922 CPPFLAGS="$CPPFLAGS -I${withval}"
2923 LDFLAGS="$LDFLAGS -L${withval}"
2924 if test ! -z "$need_dash_r" ; then
2925 LDFLAGS="$LDFLAGS -R${withval}"
2926 fi
2927 if test ! -z "$blibpath" ; then
2928 blibpath="$blibpath:${withval}"
2929 fi
2930 fi
2931 AC_CHECK_HEADERS(sectok.h)
2932 if test "$ac_cv_header_sectok_h" != yes; then
2933 AC_MSG_ERROR(Can't find sectok.h)
2934 fi
2935 AC_CHECK_LIB(sectok, sectok_open)
2936 if test "$ac_cv_lib_sectok_sectok_open" != yes; then
2937 AC_MSG_ERROR(Can't find libsectok)
2938 fi
Tim Rice7df8d392005-09-19 09:33:39 -07002939 AC_DEFINE(SMARTCARD, 1,
2940 [Define if you want smartcard support])
2941 AC_DEFINE(USE_SECTOK, 1,
2942 [Define if you want smartcard support
2943 using sectok])
Damien Millera8e06ce2003-11-21 23:48:55 +11002944 SCARD_MSG="yes, using sectok"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002945 fi
2946 ]
2947)
2948
2949# Check whether user wants OpenSC support
Tim Rice12ee8e22005-03-17 13:37:04 -08002950OPENSC_CONFIG="no"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002951AC_ARG_WITH(opensc,
Darren Tucker82171c62005-09-22 20:19:54 +10002952 [ --with-opensc[[=PFX]] Enable smartcard support using OpenSC (optionally in PATH)],
Tim Rice12ee8e22005-03-17 13:37:04 -08002953 [
2954 if test "x$withval" != "xno" ; then
2955 if test "x$withval" != "xyes" ; then
2956 OPENSC_CONFIG=$withval/bin/opensc-config
2957 else
2958 AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no)
2959 fi
2960 if test "$OPENSC_CONFIG" != "no"; then
2961 LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags`
2962 LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs`
2963 CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS"
2964 LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS"
2965 AC_DEFINE(SMARTCARD)
Tim Rice7df8d392005-09-19 09:33:39 -07002966 AC_DEFINE(USE_OPENSC, 1,
2967 [Define if you want smartcard support
2968 using OpenSC])
Tim Rice12ee8e22005-03-17 13:37:04 -08002969 SCARD_MSG="yes, using OpenSC"
2970 fi
2971 fi
2972 ]
2973)
Damien Miller85de5802001-09-18 14:01:11 +10002974
Darren Tucker5f88d342003-10-15 16:57:57 +10002975# Check libraries needed by DNS fingerprint support
Damien Millera8e06ce2003-11-21 23:48:55 +11002976AC_SEARCH_LIBS(getrrsetbyname, resolv,
Tim Rice7df8d392005-09-19 09:33:39 -07002977 [AC_DEFINE(HAVE_GETRRSETBYNAME, 1,
2978 [Define if getrrsetbyname() exists])],
Damien Miller7abe09b2003-05-15 10:53:49 +10002979 [
Darren Tucker5f88d342003-10-15 16:57:57 +10002980 # Needed by our getrrsetbyname()
2981 AC_SEARCH_LIBS(res_query, resolv)
2982 AC_SEARCH_LIBS(dn_expand, resolv)
Darren Tucker8e968a52004-05-13 11:56:16 +10002983 AC_MSG_CHECKING(if res_query will link)
2984 AC_TRY_LINK_FUNC(res_query, AC_MSG_RESULT(yes),
2985 [AC_MSG_RESULT(no)
2986 saved_LIBS="$LIBS"
2987 LIBS="$LIBS -lresolv"
2988 AC_MSG_CHECKING(for res_query in -lresolv)
2989 AC_LINK_IFELSE([
2990#include <resolv.h>
2991int main()
2992{
2993 res_query (0, 0, 0, 0, 0);
2994 return 0;
2995}
2996 ],
2997 [LIBS="$LIBS -lresolv"
2998 AC_MSG_RESULT(yes)],
2999 [LIBS="$saved_LIBS"
3000 AC_MSG_RESULT(no)])
3001 ])
Darren Tucker5f88d342003-10-15 16:57:57 +10003002 AC_CHECK_FUNCS(_getshort _getlong)
Darren Tuckerd886e1c2005-06-01 18:57:45 +10003003 AC_CHECK_DECLS([_getshort, _getlong], , ,
Tim Ricefcc7ff12005-06-02 20:28:29 -07003004 [#include <sys/types.h>
3005 #include <arpa/nameser.h>])
Darren Tucker5f88d342003-10-15 16:57:57 +10003006 AC_CHECK_MEMBER(HEADER.ad,
Tim Rice7df8d392005-09-19 09:33:39 -07003007 [AC_DEFINE(HAVE_HEADER_AD, 1,
3008 [Define if HEADER.ad exists in arpa/nameser.h])],,
Darren Tucker5f88d342003-10-15 16:57:57 +10003009 [#include <arpa/nameser.h>])
3010 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10003011
Damien Miller73b42d22006-04-22 21:26:08 +10003012# Check whether user wants SELinux support
3013SELINUX_MSG="no"
3014LIBSELINUX=""
3015AC_ARG_WITH(selinux,
3016 [ --with-selinux Enable SELinux support],
3017 [ if test "x$withval" != "xno" ; then
3018 AC_DEFINE(WITH_SELINUX,1,[Define if you want SELinux support.])
3019 SELINUX_MSG="yes"
3020 AC_CHECK_HEADER([selinux/selinux.h], ,
3021 AC_MSG_ERROR(SELinux support requires selinux.h header))
3022 AC_CHECK_LIB(selinux, setexeccon, [ LIBSELINUX="-lselinux" ],
3023 AC_MSG_ERROR(SELinux support requires libselinux library))
3024 AC_CHECK_FUNCS(getseuserbyname get_default_context_with_level)
3025 fi ]
3026)
3027AC_SUBST(LIBSELINUX)
3028
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003029# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11003030KRB5_MSG="no"
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003031AC_ARG_WITH(kerberos5,
Damien Millera8e06ce2003-11-21 23:48:55 +11003032 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11003033 [ if test "x$withval" != "xno" ; then
3034 if test "x$withval" = "xyes" ; then
3035 KRB5ROOT="/usr/local"
3036 else
3037 KRB5ROOT=${withval}
3038 fi
3039
Tim Rice7df8d392005-09-19 09:33:39 -07003040 AC_DEFINE(KRB5, 1, [Define if you want Kerberos 5 support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11003041 KRB5_MSG="yes"
3042
3043 AC_MSG_CHECKING(for krb5-config)
3044 if test -x $KRB5ROOT/bin/krb5-config ; then
3045 KRB5CONF=$KRB5ROOT/bin/krb5-config
3046 AC_MSG_RESULT($KRB5CONF)
3047
3048 AC_MSG_CHECKING(for gssapi support)
3049 if $KRB5CONF | grep gssapi >/dev/null ; then
3050 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003051 AC_DEFINE(GSSAPI, 1,
3052 [Define this if you want GSSAPI
3053 support in the version 2 protocol])
Darren Tucker0d27ed12004-02-24 10:37:33 +11003054 k5confopts=gssapi
Damien Millera8e06ce2003-11-21 23:48:55 +11003055 else
Darren Tucker1d3ca582004-01-22 12:05:34 +11003056 AC_MSG_RESULT(no)
Darren Tucker0d27ed12004-02-24 10:37:33 +11003057 k5confopts=""
Damien Millera8e06ce2003-11-21 23:48:55 +11003058 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11003059 K5CFLAGS="`$KRB5CONF --cflags $k5confopts`"
3060 K5LIBS="`$KRB5CONF --libs $k5confopts`"
Darren Tucker1d3ca582004-01-22 12:05:34 +11003061 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11003062 AC_MSG_CHECKING(whether we are using Heimdal)
3063 AC_TRY_COMPILE([ #include <krb5.h> ],
3064 [ char *tmp = heimdal_version; ],
3065 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003066 AC_DEFINE(HEIMDAL, 1,
3067 [Define this if you are using the
3068 Heimdal version of Kerberos V5]) ],
Darren Tucker1d3ca582004-01-22 12:05:34 +11003069 AC_MSG_RESULT(no)
3070 )
3071 else
3072 AC_MSG_RESULT(no)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003073 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11003074 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Damien Millera8e06ce2003-11-21 23:48:55 +11003075 AC_MSG_CHECKING(whether we are using Heimdal)
3076 AC_TRY_COMPILE([ #include <krb5.h> ],
3077 [ char *tmp = heimdal_version; ],
3078 [ AC_MSG_RESULT(yes)
3079 AC_DEFINE(HEIMDAL)
Damien Miller5561e0b2004-04-20 20:28:55 +10003080 K5LIBS="-lkrb5 -ldes"
3081 K5LIBS="$K5LIBS -lcom_err -lasn1"
Tim Riceeae17cc2005-03-17 16:52:20 -08003082 AC_CHECK_LIB(roken, net_write,
Damien Miller5561e0b2004-04-20 20:28:55 +10003083 [K5LIBS="$K5LIBS -lroken"])
Damien Millera8e06ce2003-11-21 23:48:55 +11003084 ],
3085 [ AC_MSG_RESULT(no)
3086 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
3087 ]
3088 )
Damien Miller200d0a72003-06-30 19:21:36 +10003089 AC_SEARCH_LIBS(dn_expand, resolv)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003090
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003091 AC_CHECK_LIB(gssapi,gss_init_sec_context,
3092 [ AC_DEFINE(GSSAPI)
3093 K5LIBS="-lgssapi $K5LIBS" ],
3094 [ AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context,
3095 [ AC_DEFINE(GSSAPI)
Damien Millera8e06ce2003-11-21 23:48:55 +11003096 K5LIBS="-lgssapi_krb5 $K5LIBS" ],
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003097 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
3098 $K5LIBS)
3099 ],
3100 $K5LIBS)
Tim Riceeae17cc2005-03-17 16:52:20 -08003101
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003102 AC_CHECK_HEADER(gssapi.h, ,
3103 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11003104 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003105 AC_CHECK_HEADERS(gssapi.h, ,
3106 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11003107 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003108 ]
3109 )
3110
3111 oldCPP="$CPPFLAGS"
3112 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
3113 AC_CHECK_HEADER(gssapi_krb5.h, ,
3114 [ CPPFLAGS="$oldCPP" ])
3115
Damien Millera8e06ce2003-11-21 23:48:55 +11003116 fi
Darren Tucker1d3ca582004-01-22 12:05:34 +11003117 if test ! -z "$need_dash_r" ; then
3118 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
3119 fi
3120 if test ! -z "$blibpath" ; then
3121 blibpath="$blibpath:${KRB5ROOT}/lib"
3122 fi
Tim Ricefd9e9e32005-09-12 17:36:10 -07003123
3124 AC_CHECK_HEADERS(gssapi.h gssapi/gssapi.h)
3125 AC_CHECK_HEADERS(gssapi_krb5.h gssapi/gssapi_krb5.h)
3126 AC_CHECK_HEADERS(gssapi_generic.h gssapi/gssapi_generic.h)
3127
3128 LIBS="$LIBS $K5LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07003129 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS, 1,
3130 [Define this if you want to use libkafs' AFS support]))
Darren Tucker0d27ed12004-02-24 10:37:33 +11003131 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11003132 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003133)
Damien Millerc79bc0d2001-03-28 13:03:42 +10003134
Damien Millera22ba012000-03-02 23:09:20 +11003135# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11003136
Damien Millerf58c6722002-05-13 13:15:42 +10003137PRIVSEP_PATH=/var/empty
3138AC_ARG_WITH(privsep-path,
Tim Ricecbb90662002-07-08 19:17:10 -07003139 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10003140 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003141 if test -n "$withval" && test "x$withval" != "xno" && \
3142 test "x${withval}" != "xyes"; then
Damien Millerf58c6722002-05-13 13:15:42 +10003143 PRIVSEP_PATH=$withval
3144 fi
3145 ]
3146)
3147AC_SUBST(PRIVSEP_PATH)
3148
Damien Millera22ba012000-03-02 23:09:20 +11003149AC_ARG_WITH(xauth,
3150 [ --with-xauth=PATH Specify path to xauth program ],
3151 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003152 if test -n "$withval" && test "x$withval" != "xno" && \
3153 test "x${withval}" != "xyes"; then
Damien Miller7b22d652000-06-18 14:07:04 +10003154 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11003155 fi
3156 ],
3157 [
Tim Ricee22be3b2002-07-17 19:20:07 -07003158 TestPath="$PATH"
3159 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
3160 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
3161 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
3162 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
3163 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
Damien Milleredb82922000-06-20 13:25:52 +10003164 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11003165 xauth_path="/usr/openwin/bin/xauth"
3166 fi
3167 ]
3168)
3169
Damien Miller7d901272003-01-13 16:55:22 +11003170STRIP_OPT=-s
3171AC_ARG_ENABLE(strip,
3172 [ --disable-strip Disable calling strip(1) on install],
3173 [
3174 if test "x$enableval" = "xno" ; then
3175 STRIP_OPT=
3176 fi
3177 ]
3178)
3179AC_SUBST(STRIP_OPT)
3180
Damien Millera19cf472000-11-29 13:28:50 +11003181if test -z "$xauth_path" ; then
3182 XAUTH_PATH="undefined"
3183 AC_SUBST(XAUTH_PATH)
3184else
Tim Rice7df8d392005-09-19 09:33:39 -07003185 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path",
3186 [Define if xauth is found in your path])
Damien Millera19cf472000-11-29 13:28:50 +11003187 XAUTH_PATH=$xauth_path
3188 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11003189fi
Damien Millera22ba012000-03-02 23:09:20 +11003190
3191# Check for mail directory (last resort if we cannot get it from headers)
3192if test ! -z "$MAIL" ; then
3193 maildir=`dirname $MAIL`
Tim Rice7df8d392005-09-19 09:33:39 -07003194 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir",
3195 [Set this to your mail directory if you don't have maillock.h])
Damien Millera22ba012000-03-02 23:09:20 +11003196fi
3197
Darren Tucker623d92f2004-09-12 22:36:15 +10003198if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10003199 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
3200 disable_ptmx_check=yes
3201fi
Damien Millera22ba012000-03-02 23:09:20 +11003202if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003203 if test "x$disable_ptmx_check" != "xyes" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11003204 AC_CHECK_FILE("/dev/ptmx",
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003205 [
Tim Rice7df8d392005-09-19 09:33:39 -07003206 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX, 1,
3207 [Define if you have /dev/ptmx])
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003208 have_dev_ptmx=1
3209 ]
3210 )
3211 fi
Damien Millera22ba012000-03-02 23:09:20 +11003212fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10003213
Darren Tucker623d92f2004-09-12 22:36:15 +10003214if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10003215 AC_CHECK_FILE("/dev/ptc",
3216 [
Tim Rice7df8d392005-09-19 09:33:39 -07003217 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC, 1,
3218 [Define if you have /dev/ptc])
Darren Tuckera0c2b392004-09-11 23:26:37 +10003219 have_dev_ptc=1
3220 ]
3221 )
3222else
3223 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
3224fi
Damien Miller204ad072000-03-02 23:56:12 +11003225
Damien Millera22ba012000-03-02 23:09:20 +11003226# Options from here on. Some of these are preset by platform above
Ben Lindstrom9841b0a2001-06-09 02:26:58 +00003227AC_ARG_WITH(mantype,
Damien Miller897741e2001-04-16 10:41:46 +10003228 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11003229 [
Damien Miller897741e2001-04-16 10:41:46 +10003230 case "$withval" in
3231 man|cat|doc)
3232 MANTYPE=$withval
3233 ;;
3234 *)
3235 AC_MSG_ERROR(invalid man type: $withval)
3236 ;;
3237 esac
Damien Miller670a4b82000-01-22 13:53:11 +11003238 ]
3239)
Ben Lindstrombc709922001-04-18 18:04:21 +00003240if test -z "$MANTYPE"; then
Tim Ricee22be3b2002-07-17 19:20:07 -07003241 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
3242 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
Ben Lindstrombc709922001-04-18 18:04:21 +00003243 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
3244 MANTYPE=doc
3245 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
3246 MANTYPE=man
3247 else
3248 MANTYPE=cat
3249 fi
3250fi
Damien Miller670a4b82000-01-22 13:53:11 +11003251AC_SUBST(MANTYPE)
Ben Lindstrombc709922001-04-18 18:04:21 +00003252if test "$MANTYPE" = "doc"; then
3253 mansubdir=man;
3254else
3255 mansubdir=$MANTYPE;
3256fi
3257AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11003258
Damien Millera22ba012000-03-02 23:09:20 +11003259# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11003260MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11003261AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003262 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11003263 [
Damien Millerb85dcad2000-03-11 11:37:00 +11003264 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003265 AC_DEFINE(HAVE_MD5_PASSWORDS, 1,
3266 [Define if you want to allow MD5 passwords])
Damien Millera8e06ce2003-11-21 23:48:55 +11003267 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11003268 fi
3269 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003270)
3271
Damien Millera22ba012000-03-02 23:09:20 +11003272# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11003273AC_ARG_WITH(shadow,
3274 [ --without-shadow Disable shadow password support],
3275 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003276 if test "x$withval" = "xno" ; then
Damien Miller76112de1999-12-21 11:18:08 +11003277 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10003278 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11003279 fi
3280 ]
3281)
3282
Damien Miller1f335fb2000-06-26 11:31:33 +10003283if test -z "$disable_shadow" ; then
3284 AC_MSG_CHECKING([if the systems has expire shadow information])
3285 AC_TRY_COMPILE(
3286 [
3287#include <sys/types.h>
3288#include <shadow.h>
3289 struct spwd sp;
3290 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
3291 [ sp_expire_available=yes ], []
3292 )
3293
3294 if test "x$sp_expire_available" = "xyes" ; then
3295 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003296 AC_DEFINE(HAS_SHADOW_EXPIRE, 1,
3297 [Define if you want to use shadow password expire field])
Damien Miller1f335fb2000-06-26 11:31:33 +10003298 else
3299 AC_MSG_RESULT(no)
3300 fi
3301fi
3302
Damien Millera22ba012000-03-02 23:09:20 +11003303# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11003304if test ! -z "$IPADDR_IN_DISPLAY" ; then
3305 DISPLAY_HACK_MSG="yes"
Tim Rice7df8d392005-09-19 09:33:39 -07003306 AC_DEFINE(IPADDR_IN_DISPLAY, 1,
3307 [Define if you need to use IP address
3308 instead of hostname in $DISPLAY])
Damien Miller9a947342000-08-30 10:03:33 +11003309else
Damien Millera8e06ce2003-11-21 23:48:55 +11003310 DISPLAY_HACK_MSG="no"
Damien Miller9a947342000-08-30 10:03:33 +11003311 AC_ARG_WITH(ipaddr-display,
3312 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
3313 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003314 if test "x$withval" != "xno" ; then
Damien Miller9a947342000-08-30 10:03:33 +11003315 AC_DEFINE(IPADDR_IN_DISPLAY)
Damien Millera8e06ce2003-11-21 23:48:55 +11003316 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11003317 fi
3318 ]
3319 )
3320fi
Damien Miller76112de1999-12-21 11:18:08 +11003321
Darren Tuckere1a790d2003-09-16 11:52:19 +10003322# check for /etc/default/login and use it if present.
Tim Rice7ff4e6d2003-09-22 19:50:14 -07003323AC_ARG_ENABLE(etc-default-login,
Darren Tucker1b6f2292005-02-11 16:11:49 +11003324 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
Darren Tucker2f9573d2005-02-10 22:28:54 +11003325 [ if test "x$enableval" = "xno"; then
3326 AC_MSG_NOTICE([/etc/default/login handling disabled])
3327 etc_default_login=no
3328 else
3329 etc_default_login=yes
3330 fi ],
Darren Tucker314d89e2005-10-17 23:29:23 +10003331 [ if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
3332 then
3333 AC_MSG_WARN([cross compiling: not checking /etc/default/login])
3334 etc_default_login=no
3335 else
3336 etc_default_login=yes
3337 fi ]
Darren Tucker2f9573d2005-02-10 22:28:54 +11003338)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003339
Darren Tucker2f9573d2005-02-10 22:28:54 +11003340if test "x$etc_default_login" != "xno"; then
3341 AC_CHECK_FILE("/etc/default/login",
3342 [ external_path_file=/etc/default/login ])
Darren Tucker314d89e2005-10-17 23:29:23 +10003343 if test "x$external_path_file" = "x/etc/default/login"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003344 AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN, 1,
3345 [Define if your system has /etc/default/login])
Darren Tuckera0c2b392004-09-11 23:26:37 +10003346 fi
Darren Tucker2f9573d2005-02-10 22:28:54 +11003347fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003348
Tim Rice43a1c132002-04-17 21:19:14 -07003349dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
Tim Rice8bb561b2005-03-17 16:23:19 -08003350if test $ac_cv_func_login_getcapbool = "yes" && \
3351 test $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003352 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07003353fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003354
Damien Millera22ba012000-03-02 23:09:20 +11003355# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11003356SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11003357AC_ARG_WITH(default-path,
Damien Millerf71d2a52002-05-13 15:14:08 +10003358 [ --with-default-path= Specify default \$PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11003359 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10003360 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07003361 AC_MSG_WARN([
3362--with-default-path=PATH has no effect on this system.
3363Edit /etc/login.conf instead.])
Tim Riceeae17cc2005-03-17 16:52:20 -08003364 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07003365 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003366 AC_MSG_WARN([
3367--with-default-path=PATH will only be used if PATH is not defined in
3368$external_path_file .])
3369 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003370 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11003371 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11003372 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003373 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10003374 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
3375 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07003376 else
Tim Riceb925b4b2003-09-15 22:40:49 -07003377 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003378 AC_MSG_WARN([
3379If PATH is defined in $external_path_file, ensure the path to scp is included,
3380otherwise scp will not work.])
3381 fi
Darren Tucker314d89e2005-10-17 23:29:23 +10003382 AC_RUN_IFELSE(
3383 [AC_LANG_SOURCE([[
Tim Rice59ea0a02001-03-10 13:50:45 -08003384/* find out what STDPATH is */
3385#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08003386#ifdef HAVE_PATHS_H
3387# include <paths.h>
3388#endif
3389#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08003390# ifdef _PATH_USERPATH /* Irix */
3391# define _PATH_STDPATH _PATH_USERPATH
3392# else
3393# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
3394# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08003395#endif
3396#include <sys/types.h>
3397#include <sys/stat.h>
3398#include <fcntl.h>
3399#define DATA "conftest.stdpath"
3400
3401main()
3402{
3403 FILE *fd;
3404 int rc;
Tim Riceeae17cc2005-03-17 16:52:20 -08003405
Tim Rice59ea0a02001-03-10 13:50:45 -08003406 fd = fopen(DATA,"w");
3407 if(fd == NULL)
3408 exit(1);
Tim Riceeae17cc2005-03-17 16:52:20 -08003409
Tim Rice59ea0a02001-03-10 13:50:45 -08003410 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
3411 exit(1);
3412
3413 exit(0);
3414}
Darren Tucker314d89e2005-10-17 23:29:23 +10003415 ]])],
3416 [ user_path=`cat conftest.stdpath` ],
Tim Rice59ea0a02001-03-10 13:50:45 -08003417 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
3418 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
3419 )
3420# make sure $bindir is in USER_PATH so scp will work
3421 t_bindir=`eval echo ${bindir}`
3422 case $t_bindir in
3423 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
3424 esac
3425 case $t_bindir in
3426 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
3427 esac
3428 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
3429 if test $? -ne 0 ; then
3430 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
3431 if test $? -ne 0 ; then
3432 user_path=$user_path:$t_bindir
3433 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
3434 fi
3435 fi
Tim Rice43a1c132002-04-17 21:19:14 -07003436 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11003437)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003438if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003439 AC_DEFINE_UNQUOTED(USER_PATH, "$user_path", [Specify default $PATH])
Tim Rice43a1c132002-04-17 21:19:14 -07003440 AC_SUBST(user_path)
3441fi
Damien Miller5a3e6831999-12-27 09:48:56 +11003442
Damien Millera18bbd32002-05-13 10:48:57 +10003443# Set superuser path separately to user path
Damien Millera18bbd32002-05-13 10:48:57 +10003444AC_ARG_WITH(superuser-path,
3445 [ --with-superuser-path= Specify different path for super-user],
3446 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003447 if test -n "$withval" && test "x$withval" != "xno" && \
3448 test "x${withval}" != "xyes"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003449 AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval",
3450 [Define if you want a different $PATH
3451 for the superuser])
Damien Millera18bbd32002-05-13 10:48:57 +10003452 superuser_path=$withval
3453 fi
3454 ]
3455)
3456
3457
Damien Miller61e50f12000-05-08 20:49:37 +10003458AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11003459IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11003460AC_ARG_WITH(4in6,
3461 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
3462 [
3463 if test "x$withval" != "xno" ; then
3464 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003465 AC_DEFINE(IPV4_IN_IPV6, 1,
3466 [Detect IPv4 in IPv6 mapped addresses
3467 and treat as IPv4])
Damien Millera8e06ce2003-11-21 23:48:55 +11003468 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003469 else
3470 AC_MSG_RESULT(no)
3471 fi
3472 ],[
3473 if test "x$inet6_default_4in6" = "xyes"; then
3474 AC_MSG_RESULT([yes (default)])
3475 AC_DEFINE(IPV4_IN_IPV6)
Damien Millera8e06ce2003-11-21 23:48:55 +11003476 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003477 else
3478 AC_MSG_RESULT([no (default)])
3479 fi
3480 ]
3481)
3482
Damien Miller60396b02001-02-18 17:01:00 +11003483# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11003484BSD_AUTH_MSG=no
Damien Miller60396b02001-02-18 17:01:00 +11003485AC_ARG_WITH(bsd-auth,
3486 [ --with-bsd-auth Enable BSD auth support],
3487 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003488 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003489 AC_DEFINE(BSD_AUTH, 1,
3490 [Define if you have BSD auth support])
Damien Miller6c21c512002-01-22 21:57:53 +11003491 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11003492 fi
3493 ]
3494)
3495
Damien Millera22ba012000-03-02 23:09:20 +11003496# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11003497piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11003498# make sure the directory exists
Tim Riceeae17cc2005-03-17 16:52:20 -08003499if test ! -d $piddir ; then
Damien Miller78315eb2000-09-29 23:01:36 +11003500 piddir=`eval echo ${sysconfdir}`
3501 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11003502 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11003503 esac
3504fi
3505
Tim Rice88f2ab52002-03-17 12:17:34 -08003506AC_ARG_WITH(pid-dir,
3507 [ --with-pid-dir=PATH Specify location of ssh.pid file],
3508 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003509 if test -n "$withval" && test "x$withval" != "xno" && \
3510 test "x${withval}" != "xyes"; then
Tim Rice88f2ab52002-03-17 12:17:34 -08003511 piddir=$withval
Tim Riceeae17cc2005-03-17 16:52:20 -08003512 if test ! -d $piddir ; then
Tim Rice88f2ab52002-03-17 12:17:34 -08003513 AC_MSG_WARN([** no $piddir directory on this system **])
3514 fi
3515 fi
3516 ]
3517)
3518
Tim Rice7df8d392005-09-19 09:33:39 -07003519AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir", [Specify location of ssh.pid])
Damien Millerb13c73e2000-01-17 22:02:17 +11003520AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11003521
andre2ff7b5d2000-06-03 14:57:40 +00003522dnl allow user to disable some login recording features
3523AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00003524 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003525 [
3526 if test "x$enableval" = "xno" ; then
3527 AC_DEFINE(DISABLE_LASTLOG)
3528 fi
3529 ]
andre2ff7b5d2000-06-03 14:57:40 +00003530)
3531AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00003532 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003533 [
3534 if test "x$enableval" = "xno" ; then
3535 AC_DEFINE(DISABLE_UTMP)
3536 fi
3537 ]
andre2ff7b5d2000-06-03 14:57:40 +00003538)
3539AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00003540 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003541 [
3542 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003543 AC_DEFINE(DISABLE_UTMPX, 1,
3544 [Define if you don't want to use utmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003545 fi
3546 ]
andre2ff7b5d2000-06-03 14:57:40 +00003547)
3548AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00003549 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003550 [
3551 if test "x$enableval" = "xno" ; then
3552 AC_DEFINE(DISABLE_WTMP)
3553 fi
3554 ]
andre2ff7b5d2000-06-03 14:57:40 +00003555)
3556AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00003557 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003558 [
3559 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003560 AC_DEFINE(DISABLE_WTMPX, 1,
3561 [Define if you don't want to use wtmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003562 fi
3563 ]
andre2ff7b5d2000-06-03 14:57:40 +00003564)
3565AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00003566 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003567 [
3568 if test "x$enableval" = "xno" ; then
3569 AC_DEFINE(DISABLE_LOGIN)
3570 fi
3571 ]
andre2ff7b5d2000-06-03 14:57:40 +00003572)
3573AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00003574 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003575 [
3576 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003577 AC_DEFINE(DISABLE_PUTUTLINE, 1,
3578 [Define if you don't want to use pututline()
3579 etc. to write [uw]tmp])
Darren Tuckera3020db2003-06-28 12:54:33 +10003580 fi
3581 ]
andre2ff7b5d2000-06-03 14:57:40 +00003582)
3583AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00003584 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003585 [
3586 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003587 AC_DEFINE(DISABLE_PUTUTXLINE, 1,
3588 [Define if you don't want to use pututxline()
3589 etc. to write [uw]tmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003590 fi
3591 ]
andre2ff7b5d2000-06-03 14:57:40 +00003592)
3593AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00003594 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11003595 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003596 if test "x$withval" = "xno" ; then
Damien Miller709528a2001-01-31 09:57:55 +11003597 AC_DEFINE(DISABLE_LASTLOG)
Tim Rice35cc69d2005-03-17 16:44:25 -08003598 elif test -n "$withval" && test "x${withval}" != "xyes"; then
Damien Miller709528a2001-01-31 09:57:55 +11003599 conf_lastlog_location=$withval
3600 fi
3601 ]
3602)
andre2ff7b5d2000-06-03 14:57:40 +00003603
3604dnl lastlog, [uw]tmpx? detection
3605dnl NOTE: set the paths in the platform section to avoid the
3606dnl need for command-line parameters
3607dnl lastlog and [uw]tmp are subject to a file search if all else fails
3608
3609dnl lastlog detection
3610dnl NOTE: the code itself will detect if lastlog is a directory
3611AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
3612AC_TRY_COMPILE([
3613#include <sys/types.h>
3614#include <utmp.h>
3615#ifdef HAVE_LASTLOG_H
3616# include <lastlog.h>
3617#endif
Damien Miller2994e082000-06-04 15:51:47 +10003618#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003619# include <paths.h>
3620#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003621#ifdef HAVE_LOGIN_H
3622# include <login.h>
3623#endif
andre2ff7b5d2000-06-03 14:57:40 +00003624 ],
3625 [ char *lastlog = LASTLOG_FILE; ],
3626 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10003627 [
3628 AC_MSG_RESULT(no)
3629 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
3630 AC_TRY_COMPILE([
3631#include <sys/types.h>
3632#include <utmp.h>
3633#ifdef HAVE_LASTLOG_H
3634# include <lastlog.h>
3635#endif
3636#ifdef HAVE_PATHS_H
3637# include <paths.h>
3638#endif
3639 ],
3640 [ char *lastlog = _PATH_LASTLOG; ],
3641 [ AC_MSG_RESULT(yes) ],
3642 [
andree441aa32000-06-12 22:34:38 +00003643 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10003644 system_lastlog_path=no
3645 ])
3646 ]
andre2ff7b5d2000-06-03 14:57:40 +00003647)
Damien Miller2994e082000-06-04 15:51:47 +10003648
andre2ff7b5d2000-06-03 14:57:40 +00003649if test -z "$conf_lastlog_location"; then
3650 if test x"$system_lastlog_path" = x"no" ; then
3651 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10003652 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00003653 conf_lastlog_location=$f
3654 fi
3655 done
3656 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00003657 AC_MSG_WARN([** Cannot find lastlog **])
3658 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00003659 fi
3660 fi
3661fi
3662
3663if test -n "$conf_lastlog_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003664 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location",
3665 [Define if you want to specify the path to your lastlog file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003666fi
andre2ff7b5d2000-06-03 14:57:40 +00003667
3668dnl utmp detection
3669AC_MSG_CHECKING([if your system defines UTMP_FILE])
3670AC_TRY_COMPILE([
3671#include <sys/types.h>
3672#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10003673#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003674# include <paths.h>
3675#endif
3676 ],
3677 [ char *utmp = UTMP_FILE; ],
3678 [ AC_MSG_RESULT(yes) ],
3679 [ AC_MSG_RESULT(no)
3680 system_utmp_path=no ]
3681)
3682if test -z "$conf_utmp_location"; then
3683 if test x"$system_utmp_path" = x"no" ; then
3684 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
3685 if test -f $f ; then
3686 conf_utmp_location=$f
3687 fi
3688 done
3689 if test -z "$conf_utmp_location"; then
3690 AC_DEFINE(DISABLE_UTMP)
3691 fi
3692 fi
3693fi
3694if test -n "$conf_utmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003695 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location",
3696 [Define if you want to specify the path to your utmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003697fi
andre2ff7b5d2000-06-03 14:57:40 +00003698
3699dnl wtmp detection
3700AC_MSG_CHECKING([if your system defines WTMP_FILE])
3701AC_TRY_COMPILE([
3702#include <sys/types.h>
3703#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10003704#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003705# include <paths.h>
3706#endif
3707 ],
3708 [ char *wtmp = WTMP_FILE; ],
3709 [ AC_MSG_RESULT(yes) ],
3710 [ AC_MSG_RESULT(no)
3711 system_wtmp_path=no ]
3712)
3713if test -z "$conf_wtmp_location"; then
3714 if test x"$system_wtmp_path" = x"no" ; then
3715 for f in /usr/adm/wtmp /var/log/wtmp; do
3716 if test -f $f ; then
3717 conf_wtmp_location=$f
3718 fi
3719 done
3720 if test -z "$conf_wtmp_location"; then
3721 AC_DEFINE(DISABLE_WTMP)
3722 fi
3723 fi
3724fi
3725if test -n "$conf_wtmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003726 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location",
3727 [Define if you want to specify the path to your wtmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003728fi
andre2ff7b5d2000-06-03 14:57:40 +00003729
3730
3731dnl utmpx detection - I don't know any system so perverse as to require
3732dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
3733dnl there, though.
3734AC_MSG_CHECKING([if your system defines UTMPX_FILE])
3735AC_TRY_COMPILE([
3736#include <sys/types.h>
3737#include <utmp.h>
3738#ifdef HAVE_UTMPX_H
3739#include <utmpx.h>
3740#endif
Damien Miller2994e082000-06-04 15:51:47 +10003741#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003742# include <paths.h>
3743#endif
3744 ],
3745 [ char *utmpx = UTMPX_FILE; ],
3746 [ AC_MSG_RESULT(yes) ],
3747 [ AC_MSG_RESULT(no)
3748 system_utmpx_path=no ]
3749)
3750if test -z "$conf_utmpx_location"; then
3751 if test x"$system_utmpx_path" = x"no" ; then
3752 AC_DEFINE(DISABLE_UTMPX)
3753 fi
3754else
Tim Rice7df8d392005-09-19 09:33:39 -07003755 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location",
3756 [Define if you want to specify the path to your utmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003757fi
andre2ff7b5d2000-06-03 14:57:40 +00003758
3759dnl wtmpx detection
3760AC_MSG_CHECKING([if your system defines WTMPX_FILE])
3761AC_TRY_COMPILE([
3762#include <sys/types.h>
3763#include <utmp.h>
3764#ifdef HAVE_UTMPX_H
3765#include <utmpx.h>
3766#endif
Damien Miller2994e082000-06-04 15:51:47 +10003767#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003768# include <paths.h>
3769#endif
3770 ],
3771 [ char *wtmpx = WTMPX_FILE; ],
3772 [ AC_MSG_RESULT(yes) ],
3773 [ AC_MSG_RESULT(no)
3774 system_wtmpx_path=no ]
3775)
3776if test -z "$conf_wtmpx_location"; then
3777 if test x"$system_wtmpx_path" = x"no" ; then
3778 AC_DEFINE(DISABLE_WTMPX)
3779 fi
3780else
Tim Rice7df8d392005-09-19 09:33:39 -07003781 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location",
3782 [Define if you want to specify the path to your wtmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003783fi
andre2ff7b5d2000-06-03 14:57:40 +00003784
Damien Miller4018c192000-04-30 09:30:44 +10003785
Damien Miller29ea30d2000-03-17 10:54:15 +11003786if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10003787 LDFLAGS="$LDFLAGS $blibflags$blibpath"
3788 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11003789fi
3790
Tim Rice4cec93f2002-02-26 08:40:48 -08003791dnl remove pam and dl because they are in $LIBPAM
3792if test "$PAM_MSG" = yes ; then
Tim Rice7d2d1f12002-02-26 22:05:11 -08003793 LIBS=`echo $LIBS | sed 's/-lpam //'`
3794fi
3795if test "$ac_cv_lib_pam_pam_set_item" = yes ; then
3796 LIBS=`echo $LIBS | sed 's/-ldl //'`
Tim Rice4cec93f2002-02-26 08:40:48 -08003797fi
3798
Darren Tucker7da23cb2005-08-03 00:20:15 +10003799dnl Adding -Werror to CFLAGS early prevents configure tests from running.
3800dnl Add now.
3801CFLAGS="$CFLAGS $werror_flags"
3802
Damien Millerbac2d8a2000-09-05 16:13:06 +11003803AC_EXEEXT
Darren Tucker72c025d2005-01-18 12:05:18 +11003804AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openbsd-compat/Makefile \
Darren Tucker4881c372006-02-19 22:50:20 +11003805 openbsd-compat/regress/Makefile scard/Makefile ssh_prng_cmds survey.sh])
Tim Rice13aae5e2001-10-21 17:53:58 -07003806AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10003807
Damien Miller7b22d652000-06-18 14:07:04 +10003808# Print summary of options
3809
Damien Miller7b22d652000-06-18 14:07:04 +10003810# Someone please show me a better way :)
3811A=`eval echo ${prefix}` ; A=`eval echo ${A}`
3812B=`eval echo ${bindir}` ; B=`eval echo ${B}`
3813C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
3814D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00003815E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00003816F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10003817G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10003818H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
3819I=`eval echo ${user_path}` ; I=`eval echo ${I}`
3820J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10003821
3822echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00003823echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10003824echo " User binaries: $B"
3825echo " System binaries: $C"
3826echo " Configuration files: $D"
3827echo " Askpass program: $E"
3828echo " Manual pages: $F"
3829echo " PID file: $G"
3830echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10003831if test "x$external_path_file" = "x/etc/login.conf" ; then
3832echo " At runtime, sshd will use the path defined in $external_path_file"
3833echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07003834else
Damien Millerf58c6722002-05-13 13:15:42 +10003835echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07003836 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003837echo " (If PATH is set in $external_path_file it will be used instead. If"
3838echo " used, ensure the path to scp is present, otherwise scp will not work.)"
3839 fi
Tim Rice43a1c132002-04-17 21:19:14 -07003840fi
Damien Millera18bbd32002-05-13 10:48:57 +10003841if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10003842echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10003843fi
Damien Millerf58c6722002-05-13 13:15:42 +10003844echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10003845echo " PAM support: $PAM_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003846echo " KerberosV support: $KRB5_MSG"
Damien Miller73b42d22006-04-22 21:26:08 +10003847echo " SELinux support: $SELINUX_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003848echo " Smartcard support: $SCARD_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003849echo " S/KEY support: $SKEY_MSG"
3850echo " TCP Wrappers support: $TCPW_MSG"
3851echo " MD5 password support: $MD5_MSG"
Darren Tucker16bcc1c2004-11-07 20:14:34 +11003852echo " libedit support: $LIBEDIT_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10003853echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003854echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
3855echo " BSD Auth support: $BSD_AUTH_MSG"
3856echo " Random number source: $RAND_MSG"
Damien Miller6c21c512002-01-22 21:57:53 +11003857if test ! -z "$USE_RAND_HELPER" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10003858echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
Damien Miller60396b02001-02-18 17:01:00 +11003859fi
3860
Damien Miller7b22d652000-06-18 14:07:04 +10003861echo ""
3862
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00003863echo " Host: ${host}"
3864echo " Compiler: ${CC}"
3865echo " Compiler flags: ${CFLAGS}"
3866echo "Preprocessor flags: ${CPPFLAGS}"
3867echo " Linker flags: ${LDFLAGS}"
Tim Rice4cec93f2002-02-26 08:40:48 -08003868echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}"
Damien Miller7b22d652000-06-18 14:07:04 +10003869
3870echo ""
3871
Tim Rice6f1f7582004-05-30 21:38:51 -07003872if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
Darren Tuckercf59d312004-08-29 21:18:09 +10003873 echo "SVR4 style packages are supported with \"make package\""
3874 echo ""
Tim Rice6f1f7582004-05-30 21:38:51 -07003875fi
3876
Damien Miller82cf0ce2000-12-20 13:34:48 +11003877if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11003878 echo "PAM is enabled. You may need to install a PAM control file "
3879 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11003880 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11003881 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11003882 echo ""
3883fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003884
Damien Miller6c21c512002-01-22 21:57:53 +11003885if test ! -z "$RAND_HELPER_CMDHASH" ; then
3886 echo "WARNING: you are using the builtin random number collection "
3887 echo "service. Please read WARNING.RNG and request that your OS "
3888 echo "vendor includes kernel-based random number collection in "
3889 echo "future versions of your OS."
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003890 echo ""
3891fi
Damien Miller60396b02001-02-18 17:01:00 +11003892
Damien Millerb4097182004-05-23 14:09:40 +10003893if test ! -z "$NO_PEERCHECK" ; then
3894 echo "WARNING: the operating system that you are using does not "
3895 echo "appear to support either the getpeereid() API nor the "
3896 echo "SO_PEERCRED getsockopt() option. These facilities are used to "
3897 echo "enforce security checks to prevent unauthorised connections to "
3898 echo "ssh-agent. Their absence increases the risk that a malicious "
3899 echo "user can connect to your agent. "
3900 echo ""
3901fi
3902
Darren Tuckerd9f88912005-02-20 21:01:48 +11003903if test "$AUDIT_MODULE" = "bsm" ; then
3904 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
3905 echo "See the Solaris section in README.platform for details."
3906fi