blob: 19446b3bd947128588512648525f3bf9a4b9f1b1 [file] [log] [blame]
Darren Tucker248469b2006-07-12 14:14:31 +10001# $Id: configure.ac,v 1.346 2006/07/12 04:14:31 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 Tucker248469b2006-07-12 14:14:31 +100018AC_REVISION($Revision: 1.346 $)
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"
Darren Tuckerbdc12122006-07-06 11:56:25 +1000138 if test "$GCC" = "yes"; then
139 flags="-Wl,-blibpath: -Wl,-rpath, -blibpath:"
140 else
141 flags="-blibpath: -Wl,-blibpath: -Wl,-rpath,"
142 fi
143 for tryflags in $flags ;do
Damien Millereab4bae2003-04-29 23:22:40 +1000144 if (test -z "$blibflags"); then
145 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
146 AC_TRY_LINK([], [], [blibflags=$tryflags])
147 fi
148 done
149 if (test -z "$blibflags"); then
150 AC_MSG_RESULT(not found)
151 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
152 else
153 AC_MSG_RESULT($blibflags)
154 fi
155 LDFLAGS="$saved_LDFLAGS"
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000156 dnl Check for authenticate. Might be in libs.a on older AIXes
Tim Rice7df8d392005-09-19 09:33:39 -0700157 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE, 1,
158 [Define if you want to enable AIX4's authenticate function])],
Tim Ricee958ed32002-07-05 07:12:33 -0700159 [AC_CHECK_LIB(s,authenticate,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000160 [ AC_DEFINE(WITH_AIXAUTHENTICATE)
Tim Ricee958ed32002-07-05 07:12:33 -0700161 LIBS="$LIBS -ls"
162 ])
163 ])
Darren Tucker3c774c52005-02-16 22:49:31 +1100164 dnl Check for various auth function declarations in headers.
Darren Tucker04cfbe02005-02-20 23:27:11 +1100165 AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
Darren Tuckere66519d2005-03-21 22:46:34 +1100166 passwdexpired, setauthdb], , , [#include <usersec.h>])
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000167 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
Darren Tucker3c774c52005-02-16 22:49:31 +1100168 AC_CHECK_DECLS(loginfailed,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000169 [AC_MSG_CHECKING(if loginfailed takes 4 arguments)
170 AC_TRY_COMPILE(
Darren Tuckera0c0b632003-07-08 20:52:12 +1000171 [#include <usersec.h>],
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000172 [(void)loginfailed("user","host","tty",0);],
173 [AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -0700174 AC_DEFINE(AIX_LOGINFAILED_4ARG, 1,
175 [Define if your AIX loginfailed() function
176 takes 4 arguments (AIX >= 5.2)])],
Darren Tuckera0c0b632003-07-08 20:52:12 +1000177 [AC_MSG_RESULT(no)]
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000178 )],
179 [],
180 [#include <usersec.h>]
181 )
Darren Tuckerfc3454e2003-07-14 16:41:55 +1000182 AC_CHECK_FUNCS(setauthdb)
Darren Tucker691d5232005-02-15 21:45:57 +1100183 check_for_aix_broken_getaddrinfo=1
Tim Rice7df8d392005-09-19 09:33:39 -0700184 AC_DEFINE(BROKEN_REALPATH, 1, [Define if you have a broken realpath.])
185 AC_DEFINE(SETEUID_BREAKS_SETUID, 1,
186 [Define if your platform breaks doing a seteuid before a setuid])
187 AC_DEFINE(BROKEN_SETREUID, 1, [Define if your setreuid() is broken])
188 AC_DEFINE(BROKEN_SETREGID, 1, [Define if your setregid() is broken])
andre60f3c982000-06-03 16:18:19 +0000189 dnl AIX handles lastlog as part of its login message
Tim Rice7df8d392005-09-19 09:33:39 -0700190 AC_DEFINE(DISABLE_LASTLOG, 1, [Define if you don't want to use lastlog])
191 AC_DEFINE(LOGIN_NEEDS_UTMPX, 1,
192 [Some systems need a utmpx entry for /bin/login to work])
193 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV,
194 [Define to a Set Process Title type if your system is
195 supported by bsd-setproctitle.c])
Darren Tucker91d25a02005-11-26 22:24:09 +1100196 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
197 [AIX 5.2 and 5.3 (and presumably newer) require this])
Darren Tucker9afe1152006-06-23 21:24:12 +1000198 AC_DEFINE(PTY_ZEROREAD, 1, [read(1) can return 0 for a non-closed fd])
Damien Miller75b1d102000-01-07 14:01:41 +1100199 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100200*-*-cygwin*)
Damien Millerc8936ac2003-02-11 10:04:03 +1100201 check_for_libcrypt_later=1
Tim Ricefe1d1002001-11-26 17:19:43 -0800202 LIBS="$LIBS /usr/lib/textmode.o"
Tim Rice7df8d392005-09-19 09:33:39 -0700203 AC_DEFINE(HAVE_CYGWIN, 1, [Define if you are on Cygwin])
204 AC_DEFINE(USE_PIPES, 1, [Use PIPES instead of a socketpair()])
205 AC_DEFINE(DISABLE_SHADOW, 1,
206 [Define if you want to disable shadow passwords])
207 AC_DEFINE(IP_TOS_IS_BROKEN, 1,
208 [Define if your system choked on IP TOS setting])
209 AC_DEFINE(NO_X11_UNIX_SOCKETS, 1,
210 [Define if X11 doesn't support AF_UNIX sockets on that system])
211 AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT, 1,
212 [Define if the concept of ports only accessible to
213 superusers isn't known])
214 AC_DEFINE(DISABLE_FD_PASSING, 1,
215 [Define if your platform needs to skip post auth
216 file descriptor passing])
Damien Millerbac2d8a2000-09-05 16:13:06 +1100217 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000218*-*-dgux*)
219 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker454da0b2003-12-18 12:52:19 +1100220 AC_DEFINE(SETEUID_BREAKS_SETUID)
221 AC_DEFINE(BROKEN_SETREUID)
222 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom58055132001-02-15 18:34:29 +0000223 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000224*-*-darwin*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000225 AC_MSG_CHECKING(if we have working getaddrinfo)
226 AC_TRY_RUN([#include <mach-o/dyld.h>
227main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
228 exit(0);
229 else
230 exit(1);
231}], [AC_MSG_RESULT(working)],
232 [AC_MSG_RESULT(buggy)
Tim Rice7df8d392005-09-19 09:33:39 -0700233 AC_DEFINE(BROKEN_GETADDRINFO, 1, [getaddrinfo is broken (if present)])],
Tim Rice480ef8d2003-09-21 21:38:11 -0700234 [AC_MSG_RESULT(assume it is working)])
Darren Tucker20379a32003-09-22 11:07:40 +1000235 AC_DEFINE(SETEUID_BREAKS_SETUID)
236 AC_DEFINE(BROKEN_SETREUID)
237 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700238 AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1,
239 [Define if your resolver libs need this for getrrsetbyname])
Darren Tucker3eb48342006-06-23 21:05:12 +1000240 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
241 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
242 [Use tunnel device compatibility to OpenBSD])
243 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
244 [Prepend the address family to IP tunnel traffic])
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000245 ;;
Darren Tuckerfd333282005-05-28 18:31:42 +1000246*-*-hpux*)
247 # first we define all of the options common to all HP-UX releases
Kevin Steves315f8b72001-06-28 00:24:41 +0000248 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100249 IPADDR_IN_DISPLAY=yes
Damien Millerb0785672000-08-23 09:10:39 +1000250 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700251 AC_DEFINE(LOGIN_NO_ENDOPT, 1,
252 [Define if your login program cannot handle end of options ("--")])
Kevin Steves5feaaef2002-04-23 20:45:55 +0000253 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700254 AC_DEFINE(LOCKED_PASSWD_STRING, "*",
255 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000256 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Darren Tucker1e6616b2005-10-08 12:07:01 +1000257 MAIL="/var/mail/username"
Tim Ricef028f1e2002-07-19 12:41:10 -0700258 LIBS="$LIBS -lsec"
Darren Tuckerfd333282005-05-28 18:31:42 +1000259 AC_CHECK_LIB(xnet, t_error, ,
260 AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
261
262 # next, we define all of the options specific to major releases
263 case "$host" in
264 *-*-hpux10*)
265 if test -z "$GCC"; then
266 CFLAGS="$CFLAGS -Ae"
267 fi
268 ;;
269 *-*-hpux11*)
Tim Rice7df8d392005-09-19 09:33:39 -0700270 AC_DEFINE(PAM_SUN_CODEBASE, 1,
271 [Define if you are using Solaris-derived PAM which
272 passes pam_messages to the conversation function
273 with an extra level of indirection])
274 AC_DEFINE(DISABLE_UTMP, 1,
275 [Define if you don't want to use utmp])
Darren Tuckerfd333282005-05-28 18:31:42 +1000276 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
277 check_for_hpux_broken_getaddrinfo=1
278 check_for_conflicting_getspnam=1
279 ;;
280 esac
281
282 # lastly, we define options specific to minor releases
283 case "$host" in
284 *-*-hpux10.26)
Tim Rice7df8d392005-09-19 09:33:39 -0700285 AC_DEFINE(HAVE_SECUREWARE, 1,
286 [Define if you have SecureWare-based
287 protected password database])
Darren Tuckerfd333282005-05-28 18:31:42 +1000288 disable_ptmx_check=yes
289 LIBS="$LIBS -lsecpw"
290 ;;
291 esac
Damien Miller1bead332000-04-30 00:47:29 +1000292 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100293*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100294 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700295 AC_DEFINE(BROKEN_INET_NTOA, 1,
296 [Define if you system's inet_ntoa is busted
297 (e.g. Irix gcc issue)])
Darren Tuckerbeaf6792003-09-24 20:03:48 +1000298 AC_DEFINE(SETEUID_BREAKS_SETUID)
299 AC_DEFINE(BROKEN_SETREUID)
300 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700301 AC_DEFINE(WITH_ABBREV_NO_TTY, 1,
302 [Define if you shouldn't strip 'tty' from your
303 ttyname in [uw]tmp])
Darren Tuckere41bba52003-08-25 11:51:19 +1000304 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller1808f382000-01-06 12:03:12 +1100305 ;;
306*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100307 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700308 AC_DEFINE(WITH_IRIX_ARRAY, 1,
309 [Define if you have/want arrays
310 (cluster-wide session managment, not C arrays)])
311 AC_DEFINE(WITH_IRIX_PROJECT, 1,
312 [Define if you want IRIX project management])
313 AC_DEFINE(WITH_IRIX_AUDIT, 1,
314 [Define if you want IRIX audit trails])
315 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS, 1,
316 [Define if you want IRIX kernel jobs])])
Damien Miller11fa2cc2000-08-16 10:35:58 +1000317 AC_DEFINE(BROKEN_INET_NTOA)
Darren Tuckerbe79af12003-09-22 11:58:21 +1000318 AC_DEFINE(SETEUID_BREAKS_SETUID)
319 AC_DEFINE(BROKEN_SETREUID)
320 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700321 AC_DEFINE(BROKEN_UPDWTMPX, 1, [updwtmpx is broken (if present)])
Damien Millerf1b9d112002-04-23 23:09:19 +1000322 AC_DEFINE(WITH_ABBREV_NO_TTY)
Darren Tuckere41bba52003-08-25 11:51:19 +1000323 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Millerbeb4ba51999-12-28 15:09:35 +1100324 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100325*-*-linux*)
326 no_dev_ptmx=1
Damien Millera64b57a2001-01-17 10:44:13 +1100327 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000328 check_for_openpty_ctty_bug=1
Tim Rice7df8d392005-09-19 09:33:39 -0700329 AC_DEFINE(DONT_TRY_OTHER_AF, 1, [Workaround more Linux IPv6 quirks])
330 AC_DEFINE(PAM_TTY_KLUDGE, 1,
331 [Work around problematic Linux PAM modules handling of PAM_TTY])
332 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!",
333 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000334 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
Tim Rice7df8d392005-09-19 09:33:39 -0700335 AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM,
336 [Define to whatever link() returns for "not supported"
337 if it doesn't return EOPNOTSUPP.])
Darren Tucker2fba9932005-02-02 23:30:24 +1100338 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
Tim Rice7df8d392005-09-19 09:33:39 -0700339 AC_DEFINE(USE_BTMP)
Damien Miller7bcb0892000-03-11 20:45:40 +1100340 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000341 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000342 1.*|2.0.*)
Tim Rice7df8d392005-09-19 09:33:39 -0700343 AC_DEFINE(BROKEN_CMSG_TYPE, 1,
344 [Define if cmsg_type is not passed correctly])
Darren Tucker3c016542003-05-02 20:48:21 +1000345 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000346 esac
Damien Miller89e03ba2005-12-31 16:42:03 +1100347 # tun(4) forwarding compat code
Damien Millerc4bcc912005-12-31 17:05:58 +1100348 AC_CHECK_HEADERS(linux/if_tun.h)
Damien Millerbd4e4102006-01-01 21:03:30 +1100349 if test "x$ac_cv_header_linux_if_tun_h" = "xyes" ; then
Damien Miller89e03ba2005-12-31 16:42:03 +1100350 AC_DEFINE(SSH_TUN_LINUX, 1,
351 [Open tunnel devices the Linux tun/tap way])
352 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
353 [Use tunnel device compatibility to OpenBSD])
354 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
355 [Prepend the address family to IP tunnel traffic])
356 fi
Damien Millerb29ea912000-01-15 14:12:03 +1100357 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000358mips-sony-bsd|mips-sony-newsos4)
Darren Tucker988b3fd2006-02-08 22:11:27 +1100359 AC_DEFINE(NEED_SETPGRP, 1, [Need setpgrp to acquire controlling tty])
Ben Lindstromb5628642000-10-18 00:02:25 +0000360 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000361 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100362*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000363 check_for_libcrypt_before=1
Tim Riceeae17cc2005-03-17 16:52:20 -0800364 if test "x$withval" != "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800365 need_dash_r=1
366 fi
Damien Miller2dcddbf2006-01-01 19:47:05 +1100367 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
368 AC_CHECK_HEADER([net/if_tap.h], ,
369 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
370 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
371 [Prepend the address family to IP tunnel traffic])
Damien Milleree1c0b32000-01-21 00:18:15 +1100372 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100373*-*-freebsd*)
374 check_for_libcrypt_later=1
Darren Tuckerac7e6302005-10-06 01:39:58 +1000375 AC_DEFINE(LOCKED_PASSWD_PREFIX, "*LOCKED*", [Account locked with pw(1)])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100376 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
377 AC_CHECK_HEADER([net/if_tap.h], ,
378 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
Damien Millerfbd884a2001-02-27 08:39:07 +1100379 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000380*-*-bsdi*)
381 AC_DEFINE(SETEUID_BREAKS_SETUID)
382 AC_DEFINE(BROKEN_SETREUID)
383 AC_DEFINE(BROKEN_SETREGID)
384 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000385*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000386 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100387 conf_utmp_location=/etc/utmp
388 conf_wtmp_location=/usr/adm/wtmp
389 MAIL=/usr/spool/mail
Tim Rice7df8d392005-09-19 09:33:39 -0700390 AC_DEFINE(HAVE_NEXT, 1, [Define if you are on NeXT])
Ben Lindstromb4df15d2000-10-15 00:17:36 +0000391 AC_DEFINE(BROKEN_REALPATH)
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000392 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700393 AC_DEFINE(BROKEN_SAVED_UIDS, 1, [Needed for NeXT])
Damien Miller0f91b4e2000-06-18 15:43:25 +1000394 ;;
Darren Tucker4a422572005-07-14 17:22:11 +1000395*-*-openbsd*)
396 AC_DEFINE(HAVE_ATTRIBUTE__SENTINEL__, 1, [OpenBSD's gcc has sentinel])
Darren Tucker9ac1a652005-10-09 11:40:03 +1000397 AC_DEFINE(HAVE_ATTRIBUTE__BOUNDED__, 1, [OpenBSD's gcc has bounded])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100398 AC_DEFINE(SSH_TUN_OPENBSD, 1, [Open tunnel devices the OpenBSD way])
Darren Tucker4a422572005-07-14 17:22:11 +1000399 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100400*-*-solaris*)
Tim Riceeae17cc2005-03-17 16:52:20 -0800401 if test "x$withval" != "xno" ; then
Tim Ricead4a1882004-02-29 15:53:37 -0800402 need_dash_r=1
403 fi
Damien Miller82cf0ce2000-12-20 13:34:48 +1100404 AC_DEFINE(PAM_SUN_CODEBASE)
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000405 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700406 AC_DEFINE(LOGIN_NEEDS_TERM, 1,
407 [Some versions of /bin/login need the TERM supplied
408 on the commandline])
Ben Lindstrom95276712001-10-23 17:14:00 +0000409 AC_DEFINE(PAM_TTY_KLUDGE)
Tim Rice7df8d392005-09-19 09:33:39 -0700410 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
411 [Define if pam_chauthtok wants real uid set
412 to the unpriv'ed user])
Darren Tuckere41bba52003-08-25 11:51:19 +1000413 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Darren Tuckerc437cda2003-05-10 17:05:46 +1000414 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
Tim Rice7df8d392005-09-19 09:33:39 -0700415 AC_DEFINE(SSHD_ACQUIRES_CTTY, 1,
416 [Define if sshd somehow reacquires a controlling TTY
417 after setsid()])
Darren Tucker0249f932006-06-24 12:10:07 +1000418 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd
419 in case the name is longer than 8 chars])
Darren Tuckere1a790d2003-09-16 11:52:19 +1000420 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000421 # hardwire lastlog location (can't detect it on some versions)
422 conf_lastlog_location="/var/adm/lastlog"
Damien Millera1cb6442000-06-09 11:58:35 +1000423 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
424 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
425 if test "$sol2ver" -ge 8; then
426 AC_MSG_RESULT(yes)
427 AC_DEFINE(DISABLE_UTMP)
Tim Rice7df8d392005-09-19 09:33:39 -0700428 AC_DEFINE(DISABLE_WTMP, 1,
429 [Define if you don't want to use wtmp])
Damien Millera1cb6442000-06-09 11:58:35 +1000430 else
431 AC_MSG_RESULT(no)
432 fi
Damien Miller75b1d102000-01-07 14:01:41 +1100433 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +1000434*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000435 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Damien Millerdfc83f42000-05-20 15:02:59 +1000436 AC_CHECK_FUNCS(getpwanam)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100437 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000438 conf_utmp_location=/etc/utmp
439 conf_wtmp_location=/var/adm/wtmp
440 conf_lastlog_location=/var/adm/lastlog
Damien Millerb0785672000-08-23 09:10:39 +1000441 AC_DEFINE(USE_PIPES)
Damien Millerdfc83f42000-05-20 15:02:59 +1000442 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000443*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -0700444 LIBS="$LIBS -lc89"
Kevin Steves0bd4b342002-01-05 23:24:27 +0000445 AC_DEFINE(USE_PIPES)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000446 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker00130112003-09-22 11:40:24 +1000447 AC_DEFINE(SETEUID_BREAKS_SETUID)
448 AC_DEFINE(BROKEN_SETREUID)
449 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000450 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000451*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -0700452 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Darren Tucker89df7a32003-10-07 20:35:57 +1000453 AC_CHECK_LIB(dl, dlsym, ,)
Darren Tucker79d09fa2005-11-24 22:34:54 +1100454 # -lresolv needs to be at the end of LIBS or DNS lookups break
455 AC_CHECK_LIB(resolv, res_query, [ LIBS="$LIBS -lresolv" ])
Damien Millerfd9885e2001-01-10 08:16:53 +1100456 IPADDR_IN_DISPLAY=yes
457 AC_DEFINE(USE_PIPES)
Damien Miller2ae714f2000-07-11 09:29:50 +1000458 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker3b2a06c2003-10-07 18:37:11 +1000459 AC_DEFINE(SETEUID_BREAKS_SETUID)
460 AC_DEFINE(BROKEN_SETREUID)
461 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000462 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckere1a790d2003-09-16 11:52:19 +1000463 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -0700464 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
465 # Attention: always take care to bind libsocket and libnsl before libc,
466 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +1000467 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800468# UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
Damien Miller78315eb2000-09-29 23:01:36 +1100469*-*-sysv4.2*)
Damien Miller57f39152005-11-24 19:58:19 +1100470 CFLAGS="$CFLAGS -Dva_list=_VA_LIST"
Damien Miller5dfe9762001-02-16 12:05:39 +1100471 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700472 AC_DEFINE(SETEUID_BREAKS_SETUID)
473 AC_DEFINE(BROKEN_SETREUID)
474 AC_DEFINE(BROKEN_SETREGID)
Tim Rice2f97b8b2005-04-11 19:00:18 -0700475 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd])
Tim Rice46259d82005-11-28 18:40:34 -0800476 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller78315eb2000-09-29 23:01:36 +1100477 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800478# UnixWare 7.x, OpenUNIX 8
Damien Miller78315eb2000-09-29 23:01:36 +1100479*-*-sysv5*)
Tim Riceeb456542005-08-30 07:12:02 -0700480 check_for_libcrypt_later=1
481 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
Damien Miller5dfe9762001-02-16 12:05:39 +1100482 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700483 AC_DEFINE(SETEUID_BREAKS_SETUID)
484 AC_DEFINE(BROKEN_SETREUID)
485 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700486 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Tim Rice4dbacff2005-06-01 20:09:28 -0700487 case "$host" in
488 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
489 TEST_SHELL=/u95/bin/sh
Tim Rice7df8d392005-09-19 09:33:39 -0700490 AC_DEFINE(BROKEN_LIBIAF, 1,
491 [ia_uinfo routines not supported by OS yet])
Tim Rice4dbacff2005-06-01 20:09:28 -0700492 ;;
Tim Rice46259d82005-11-28 18:40:34 -0800493 *) AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
494 ;;
Tim Rice4dbacff2005-06-01 20:09:28 -0700495 esac
Damien Miller78315eb2000-09-29 23:01:36 +1100496 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100497*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +1100498 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800499# SCO UNIX and OEM versions of SCO UNIX
Damien Miller78315eb2000-09-29 23:01:36 +1100500*-*-sco3.2v4*)
Tim Ricec390c8d2005-03-07 01:21:37 -0800501 AC_MSG_ERROR("This Platform is no longer supported.")
Damien Miller78315eb2000-09-29 23:01:36 +1100502 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800503# SCO OpenServer 5.x
Damien Miller78315eb2000-09-29 23:01:36 +1100504*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -0800505 if test -z "$GCC"; then
506 CFLAGS="$CFLAGS -belf"
507 fi
Damien Miller5dfe9762001-02-16 12:05:39 +1100508 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000509 no_dev_ptmx=1
Damien Miller5dfe9762001-02-16 12:05:39 +1100510 AC_DEFINE(USE_PIPES)
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000511 AC_DEFINE(HAVE_SECUREWARE)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000512 AC_DEFINE(DISABLE_SHADOW)
Tim Rice9dd30812002-07-07 13:43:36 -0700513 AC_DEFINE(DISABLE_FD_PASSING)
Tim Riced546a842003-09-11 22:24:36 -0700514 AC_DEFINE(SETEUID_BREAKS_SETUID)
515 AC_DEFINE(BROKEN_SETREUID)
516 AC_DEFINE(BROKEN_SETREGID)
Tim Riceae477e92003-09-12 18:15:15 -0700517 AC_DEFINE(WITH_ABBREV_NO_TTY)
Tim Rice816bd0d2004-07-19 10:19:26 -0700518 AC_DEFINE(BROKEN_UPDWTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700519 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Damien Miller217f5672001-02-16 12:12:41 +1100520 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700521 MANTYPE=man
Tim Ricef7ba8f62004-06-20 10:37:32 -0700522 TEST_SHELL=ksh
Damien Millera66626b2000-06-13 18:57:53 +1000523 ;;
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000524*-*-unicosmk*)
Tim Rice7df8d392005-09-19 09:33:39 -0700525 AC_DEFINE(NO_SSH_LASTLOG, 1,
526 [Define if you don't want to use lastlog in session.c])
Darren Tucker2df33432004-01-30 14:34:21 +1100527 AC_DEFINE(SETEUID_BREAKS_SETUID)
528 AC_DEFINE(BROKEN_SETREUID)
529 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000530 AC_DEFINE(USE_PIPES)
531 AC_DEFINE(DISABLE_FD_PASSING)
532 LDFLAGS="$LDFLAGS"
533 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
534 MANTYPE=cat
Ben Lindstrom762104e2002-07-23 00:00:05 +0000535 ;;
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000536*-*-unicosmp*)
Darren Tucker2df33432004-01-30 14:34:21 +1100537 AC_DEFINE(SETEUID_BREAKS_SETUID)
538 AC_DEFINE(BROKEN_SETREUID)
539 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000540 AC_DEFINE(WITH_ABBREV_NO_TTY)
541 AC_DEFINE(USE_PIPES)
542 AC_DEFINE(DISABLE_FD_PASSING)
543 LDFLAGS="$LDFLAGS"
Darren Tucker2df33432004-01-30 14:34:21 +1100544 LIBS="$LIBS -lgen -lacid -ldb"
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000545 MANTYPE=cat
546 ;;
Ben Lindstromd9e08242001-07-22 19:32:00 +0000547*-*-unicos*)
Darren Tucker2df33432004-01-30 14:34:21 +1100548 AC_DEFINE(SETEUID_BREAKS_SETUID)
549 AC_DEFINE(BROKEN_SETREUID)
550 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstromd9e08242001-07-22 19:32:00 +0000551 AC_DEFINE(USE_PIPES)
Tim Rice9dd30812002-07-07 13:43:36 -0700552 AC_DEFINE(DISABLE_FD_PASSING)
Tim Rice81ed5182002-09-25 17:38:46 -0700553 AC_DEFINE(NO_SSH_LASTLOG)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000554 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
555 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
556 MANTYPE=cat
Tim Ricee991e3c2001-08-07 15:29:07 -0700557 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000558*-dec-osf*)
Ben Lindstrom72af2ef2001-05-08 20:42:28 +0000559 AC_MSG_CHECKING(for Digital Unix SIA)
560 no_osfsia=""
561 AC_ARG_WITH(osfsia,
562 [ --with-osfsia Enable Digital Unix SIA],
563 [
564 if test "x$withval" = "xno" ; then
565 AC_MSG_RESULT(disabled)
566 no_osfsia=1
567 fi
568 ],
569 )
570 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +1000571 if test -f /etc/sia/matrix.conf; then
572 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -0700573 AC_DEFINE(HAVE_OSF_SIA, 1,
574 [Define if you have Digital Unix Security
575 Integration Architecture])
576 AC_DEFINE(DISABLE_LOGIN, 1,
577 [Define if you don't want to use your
578 system's login() call])
Ben Lindstromc8c548d2003-03-21 01:18:09 +0000579 AC_DEFINE(DISABLE_FD_PASSING)
Damien Millerb8c656e2000-06-28 15:22:41 +1000580 LIBS="$LIBS -lsecurity -ldb -lm -laud"
581 else
582 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -0700583 AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin",
584 [String used in /etc/passwd to denote locked account])
Damien Millerb8c656e2000-06-28 15:22:41 +1000585 fi
586 fi
Darren Tucker3c8e1e12003-08-25 13:27:40 +1000587 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Rice7a74c6b2003-09-21 21:00:59 -0700588 AC_DEFINE(SETEUID_BREAKS_SETUID)
Darren Tuckered92b212003-09-22 11:26:16 +1000589 AC_DEFINE(BROKEN_SETREUID)
590 AC_DEFINE(BROKEN_SETREGID)
Damien Millerb8c656e2000-06-28 15:22:41 +1000591 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000592
Tim Rice70335a62006-02-04 17:42:58 -0800593*-*-nto-qnx*)
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000594 AC_DEFINE(USE_PIPES)
595 AC_DEFINE(NO_X11_UNIX_SOCKETS)
Tim Rice7df8d392005-09-19 09:33:39 -0700596 AC_DEFINE(MISSING_NFDBITS, 1, [Define on *nto-qnx systems])
597 AC_DEFINE(MISSING_HOWMANY, 1, [Define on *nto-qnx systems])
598 AC_DEFINE(MISSING_FD_MASK, 1, [Define on *nto-qnx systems])
Tim Rice70335a62006-02-04 17:42:58 -0800599 AC_DEFINE(DISABLE_LASTLOG)
Darren Tucker54b75fe2006-02-26 12:31:48 +1100600 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Tim Rice2f993462006-02-11 18:37:48 -0800601 enable_etc_default_login=no # has incompatible /etc/default/login
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000602 ;;
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000603
604*-*-ultrix*)
Tim Rice7df8d392005-09-19 09:33:39 -0700605 AC_DEFINE(BROKEN_GETGROUPS, 1, [getgroups(0,NULL) will return -1])
606 AC_DEFINE(BROKEN_MMAP, 1, [Ultrix mmap can't map files])
Darren Tucker988b3fd2006-02-08 22:11:27 +1100607 AC_DEFINE(NEED_SETPGRP)
Tim Ricefcc7ff12005-06-02 20:28:29 -0700608 AC_DEFINE(HAVE_SYS_SYSLOG_H, 1, [Force use of sys/syslog.h on Ultrix])
609 ;;
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000610
611*-*-lynxos)
612 CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
Tim Rice7df8d392005-09-19 09:33:39 -0700613 AC_DEFINE(MISSING_HOWMANY)
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000614 AC_DEFINE(BROKEN_SETVBUF, 1, [LynxOS has broken setvbuf() implementation])
615 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100616esac
617
Damien Millere37bfc12000-06-05 09:37:43 +1000618# Allow user to specify flags
619AC_ARG_WITH(cflags,
620 [ --with-cflags Specify additional flags to pass to compiler],
621 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800622 if test -n "$withval" && test "x$withval" != "xno" && \
623 test "x${withval}" != "xyes"; then
Damien Millere37bfc12000-06-05 09:37:43 +1000624 CFLAGS="$CFLAGS $withval"
625 fi
Tim Riceeae17cc2005-03-17 16:52:20 -0800626 ]
Damien Millere37bfc12000-06-05 09:37:43 +1000627)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000628AC_ARG_WITH(cppflags,
629 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
630 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800631 if test -n "$withval" && test "x$withval" != "xno" && \
632 test "x${withval}" != "xyes"; then
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000633 CPPFLAGS="$CPPFLAGS $withval"
634 fi
635 ]
636)
Damien Millere37bfc12000-06-05 09:37:43 +1000637AC_ARG_WITH(ldflags,
Ben Lindstrom2ed98182000-11-06 07:15:43 +0000638 [ --with-ldflags Specify additional flags to pass to linker],
Damien Millere37bfc12000-06-05 09:37:43 +1000639 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800640 if test -n "$withval" && test "x$withval" != "xno" && \
641 test "x${withval}" != "xyes"; then
Damien Millere37bfc12000-06-05 09:37:43 +1000642 LDFLAGS="$LDFLAGS $withval"
643 fi
Tim Riceeae17cc2005-03-17 16:52:20 -0800644 ]
Damien Millere37bfc12000-06-05 09:37:43 +1000645)
646AC_ARG_WITH(libs,
647 [ --with-libs Specify additional libraries to link with],
648 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800649 if test -n "$withval" && test "x$withval" != "xno" && \
650 test "x${withval}" != "xyes"; then
Damien Millere37bfc12000-06-05 09:37:43 +1000651 LIBS="$LIBS $withval"
652 fi
Tim Riceeae17cc2005-03-17 16:52:20 -0800653 ]
Damien Millere37bfc12000-06-05 09:37:43 +1000654)
Darren Tucker7da23cb2005-08-03 00:20:15 +1000655AC_ARG_WITH(Werror,
656 [ --with-Werror Build main code with -Werror],
657 [
658 if test -n "$withval" && test "x$withval" != "xno"; then
659 werror_flags="-Werror"
Damien Millere04ec6f2005-10-08 16:21:19 +1000660 if test "x${withval}" != "xyes"; then
Darren Tucker7da23cb2005-08-03 00:20:15 +1000661 werror_flags="$withval"
662 fi
663 fi
664 ]
665)
Damien Millere37bfc12000-06-05 09:37:43 +1000666
Darren Tucker6eb93042003-06-29 21:30:41 +1000667AC_MSG_CHECKING(compiler and flags for sanity)
Darren Tucker623d92f2004-09-12 22:36:15 +1000668AC_RUN_IFELSE(
669 [AC_LANG_SOURCE([
Darren Tucker6eb93042003-06-29 21:30:41 +1000670#include <stdio.h>
671int main(){exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +1000672 ])],
Darren Tucker6eb93042003-06-29 21:30:41 +1000673 [ AC_MSG_RESULT(yes) ],
674 [
675 AC_MSG_RESULT(no)
676 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000677 ],
678 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
Darren Tucker6eb93042003-06-29 21:30:41 +1000679)
680
Darren Tucker0c9653f2005-05-28 15:58:14 +1000681dnl Checks for header files.
682AC_CHECK_HEADERS( \
683 bstring.h \
684 crypt.h \
Darren Tuckerc4953012006-03-16 08:14:34 +1100685 crypto/sha2.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000686 dirent.h \
687 endian.h \
688 features.h \
Darren Tucker44c828f2006-07-11 18:00:06 +1000689 fcntl.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000690 floatingpoint.h \
691 getopt.h \
692 glob.h \
693 ia.h \
Tim Rice2291c002005-08-26 13:15:19 -0700694 iaf.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000695 limits.h \
696 login.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000697 maillock.h \
698 ndir.h \
Darren Tucker3eb48342006-06-23 21:05:12 +1000699 net/if_tun.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000700 netdb.h \
701 netgroup.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000702 pam/pam_appl.h \
703 paths.h \
704 pty.h \
705 readpassphrase.h \
706 rpc/types.h \
707 security/pam_appl.h \
Damien Miller41e364b2006-03-15 13:12:41 +1100708 sha2.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000709 shadow.h \
710 stddef.h \
711 stdint.h \
Darren Tucker390b6d52005-05-28 16:54:36 +1000712 string.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000713 strings.h \
714 sys/audit.h \
715 sys/bitypes.h \
716 sys/bsdtty.h \
717 sys/cdefs.h \
718 sys/dir.h \
719 sys/mman.h \
720 sys/ndir.h \
721 sys/prctl.h \
722 sys/pstat.h \
723 sys/select.h \
724 sys/stat.h \
725 sys/stream.h \
726 sys/stropts.h \
727 sys/strtio.h \
728 sys/sysmacros.h \
729 sys/time.h \
730 sys/timers.h \
731 sys/un.h \
732 time.h \
733 tmpdir.h \
734 ttyent.h \
Darren Tucker7d2171b2005-05-28 16:57:00 +1000735 unistd.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000736 usersec.h \
737 util.h \
738 utime.h \
739 utmp.h \
740 utmpx.h \
Darren Tuckere910be12005-05-28 16:01:18 +1000741 vis.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000742)
Tim Rice4cec93f2002-02-26 08:40:48 -0800743
Tim Rice0daad782006-02-04 17:33:55 -0800744# lastlog.h requires sys/time.h to be included first on Solaris
745AC_CHECK_HEADERS(lastlog.h, [], [], [
746#ifdef HAVE_SYS_TIME_H
747# include <sys/time.h>
748#endif
749])
750
Darren Tucker48d99d32004-08-29 17:04:50 +1000751# sys/ptms.h requires sys/stream.h to be included first on Solaris
752AC_CHECK_HEADERS(sys/ptms.h, [], [], [
753#ifdef HAVE_SYS_STREAM_H
754# include <sys/stream.h>
755#endif
756])
757
Darren Tucker8bb9e2c2006-03-15 22:28:17 +1100758# login_cap.h requires sys/types.h on NetBSD
759AC_CHECK_HEADERS(login_cap.h, [], [], [
760#include <sys/types.h>
761])
762
Damien Millera22ba012000-03-02 23:09:20 +1100763# Checks for libraries.
Tim Rice13aae5e2001-10-21 17:53:58 -0700764AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
765AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000766
Tim Rice1e1ef642003-09-11 22:19:31 -0700767dnl IRIX and Solaris 2.5.1 have dirname() in libgen
768AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
769 AC_CHECK_LIB(gen, dirname,[
770 AC_CACHE_CHECK([for broken dirname],
771 ac_cv_have_broken_dirname, [
772 save_LIBS="$LIBS"
773 LIBS="$LIBS -lgen"
Darren Tucker314d89e2005-10-17 23:29:23 +1000774 AC_RUN_IFELSE(
775 [AC_LANG_SOURCE([[
Tim Rice1e1ef642003-09-11 22:19:31 -0700776#include <libgen.h>
777#include <string.h>
778
779int main(int argc, char **argv) {
780 char *s, buf[32];
781
782 strncpy(buf,"/etc", 32);
783 s = dirname(buf);
784 if (!s || strncmp(s, "/", 32) != 0) {
785 exit(1);
786 } else {
787 exit(0);
788 }
789}
Darren Tucker314d89e2005-10-17 23:29:23 +1000790 ]])],
Tim Rice1e1ef642003-09-11 22:19:31 -0700791 [ ac_cv_have_broken_dirname="no" ],
Darren Tucker314d89e2005-10-17 23:29:23 +1000792 [ ac_cv_have_broken_dirname="yes" ],
793 [ ac_cv_have_broken_dirname="no" ],
Tim Rice1e1ef642003-09-11 22:19:31 -0700794 )
795 LIBS="$save_LIBS"
796 ])
797 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
798 LIBS="$LIBS -lgen"
799 AC_DEFINE(HAVE_DIRNAME)
800 AC_CHECK_HEADERS(libgen.h)
801 fi
802 ])
803])
804
805AC_CHECK_FUNC(getspnam, ,
806 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
Tim Rice7df8d392005-09-19 09:33:39 -0700807AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME, 1,
808 [Define if you have the basename function.]))
Tim Rice1e1ef642003-09-11 22:19:31 -0700809
Tim Rice13aae5e2001-10-21 17:53:58 -0700810dnl zlib is required
811AC_ARG_WITH(zlib,
812 [ --with-zlib=PATH Use zlib in PATH],
Darren Tucker86a5f8d2005-03-21 09:55:17 +1100813 [ if test "x$withval" = "xno" ; then
814 AC_MSG_ERROR([*** zlib is required ***])
815 elif test "x$withval" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -0700816 if test -d "$withval/lib"; then
817 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700818 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700819 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700820 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700821 fi
822 else
823 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700824 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700825 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700826 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700827 fi
828 fi
829 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700830 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700831 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700832 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700833 fi
Darren Tucker86a5f8d2005-03-21 09:55:17 +1100834 fi ]
Tim Rice13aae5e2001-10-21 17:53:58 -0700835)
836
Tim Ricefcb62202004-01-23 18:35:16 -0800837AC_CHECK_LIB(z, deflate, ,
838 [
839 saved_CPPFLAGS="$CPPFLAGS"
840 saved_LDFLAGS="$LDFLAGS"
841 save_LIBS="$LIBS"
842 dnl Check default zlib install dir
843 if test -n "${need_dash_r}"; then
844 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
845 else
846 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
847 fi
848 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
849 LIBS="$LIBS -lz"
850 AC_TRY_LINK_FUNC(deflate, AC_DEFINE(HAVE_LIBZ),
851 [
852 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
853 ]
854 )
855 ]
856)
Darren Tucker2dcd2392004-01-23 17:13:33 +1100857AC_CHECK_HEADER([zlib.h], ,AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***]))
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100858
859AC_ARG_WITH(zlib-version-check,
860 [ --without-zlib-version-check Disable zlib version check],
861 [ if test "x$withval" = "xno" ; then
862 zlib_check_nonfatal=1
863 fi
864 ]
865)
866
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000867AC_MSG_CHECKING(for possibly buggy zlib)
Darren Tucker623d92f2004-09-12 22:36:15 +1000868AC_RUN_IFELSE([AC_LANG_SOURCE([[
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000869#include <stdio.h>
Darren Tucker2dcd2392004-01-23 17:13:33 +1100870#include <zlib.h>
871int main()
872{
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000873 int a=0, b=0, c=0, d=0, n, v;
874 n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
875 if (n != 3 && n != 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +1100876 exit(1);
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000877 v = a*1000000 + b*10000 + c*100 + d;
878 fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
879
880 /* 1.1.4 is OK */
881 if (a == 1 && b == 1 && c >= 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +1100882 exit(0);
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000883
Darren Tucker41097ed2005-07-25 15:24:21 +1000884 /* 1.2.3 and up are OK */
885 if (v >= 1020300)
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000886 exit(0);
887
Darren Tucker2dcd2392004-01-23 17:13:33 +1100888 exit(2);
889}
Darren Tucker623d92f2004-09-12 22:36:15 +1000890 ]])],
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000891 AC_MSG_RESULT(no),
892 [ AC_MSG_RESULT(yes)
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100893 if test -z "$zlib_check_nonfatal" ; then
894 AC_MSG_ERROR([*** zlib too old - check config.log ***
895Your reported zlib version has known security problems. It's possible your
896vendor has fixed these problems without changing the version number. If you
897are sure this is the case, you can disable the check by running
898"./configure --without-zlib-version-check".
Darren Tuckerac1910f2005-07-26 12:00:42 +1000899If you are in doubt, upgrade zlib to version 1.2.3 or greater.
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000900See http://www.gzip.org/zlib/ for details.])
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100901 else
902 AC_MSG_WARN([zlib version may have security problems])
903 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +1000904 ],
905 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
Darren Tucker2dcd2392004-01-23 17:13:33 +1100906)
Damien Miller6f9c3372000-10-25 10:06:04 +1100907
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000908dnl UnixWare 2.x
Damien Millera8e06ce2003-11-21 23:48:55 +1100909AC_CHECK_FUNC(strcasecmp,
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000910 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
911)
Darren Tucker5bfe1682005-11-12 18:42:36 +1100912AC_CHECK_FUNCS(utimes,
Tim Ricecbb90662002-07-08 19:17:10 -0700913 [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
914 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000915)
Damien Millerab18c411999-11-11 10:40:23 +1100916
Tim Ricee589a292001-11-03 11:09:32 -0800917dnl Checks for libutil functions
918AC_CHECK_HEADERS(libutil.h)
Tim Rice7df8d392005-09-19 09:33:39 -0700919AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN, 1,
920 [Define if your libraries define login()])])
Tim Ricee589a292001-11-03 11:09:32 -0800921AC_CHECK_FUNCS(logout updwtmp logwtmp)
922
Ben Lindstrom8697e082001-02-24 21:41:10 +0000923AC_FUNC_STRFTIME
924
Damien Miller3c027682001-03-14 11:39:45 +1100925# Check for ALTDIRFUNC glob() extension
926AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
927AC_EGREP_CPP(FOUNDIT,
928 [
929 #include <glob.h>
930 #ifdef GLOB_ALTDIRFUNC
931 FOUNDIT
932 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +1100933 ],
Damien Miller3c027682001-03-14 11:39:45 +1100934 [
Tim Rice7df8d392005-09-19 09:33:39 -0700935 AC_DEFINE(GLOB_HAS_ALTDIRFUNC, 1,
936 [Define if your system glob() function has
937 the GLOB_ALTDIRFUNC extension])
Damien Miller3c027682001-03-14 11:39:45 +1100938 AC_MSG_RESULT(yes)
939 ],
940 [
941 AC_MSG_RESULT(no)
942 ]
943)
Damien Millerab18c411999-11-11 10:40:23 +1100944
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000945# Check for g.gl_matchc glob() extension
946AC_MSG_CHECKING(for gl_matchc field in glob_t)
Darren Tucker486d95e2006-03-15 21:31:39 +1100947AC_TRY_COMPILE(
Damien Milleraf87af12006-03-15 13:02:28 +1100948 [ #include <glob.h> ],
949 [glob_t g; g.gl_matchc = 1;],
Damien Millera8e06ce2003-11-21 23:48:55 +1100950 [
Tim Rice7df8d392005-09-19 09:33:39 -0700951 AC_DEFINE(GLOB_HAS_GL_MATCHC, 1,
952 [Define if your system glob() function has
953 gl_matchc options in glob_t])
Damien Millera8e06ce2003-11-21 23:48:55 +1100954 AC_MSG_RESULT(yes)
955 ],
956 [
957 AC_MSG_RESULT(no)
958 ]
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000959)
960
Damien Miller18bb4732001-03-28 14:35:30 +1000961AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000962AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +1000963 [AC_LANG_SOURCE([[
Damien Miller18bb4732001-03-28 14:35:30 +1000964#include <sys/types.h>
965#include <dirent.h>
Tim Rice2c961ce2002-09-23 16:54:10 -0700966int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
Darren Tucker623d92f2004-09-12 22:36:15 +1000967 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +1100968 [AC_MSG_RESULT(yes)],
Damien Miller18bb4732001-03-28 14:35:30 +1000969 [
970 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -0700971 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
Darren Tucker79d09fa2005-11-24 22:34:54 +1100972 [Define if your struct dirent expects you to
Tim Rice7df8d392005-09-19 09:33:39 -0700973 allocate extra space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000974 ],
Tim Riceeae17cc2005-03-17 16:52:20 -0800975 [
Darren Tuckera0c2b392004-09-11 23:26:37 +1000976 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
977 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
Damien Miller18bb4732001-03-28 14:35:30 +1000978 ]
979)
980
Damien Miller36f49652004-08-15 18:40:59 +1000981AC_MSG_CHECKING([for /proc/pid/fd directory])
982if test -d "/proc/$$/fd" ; then
Tim Rice7df8d392005-09-19 09:33:39 -0700983 AC_DEFINE(HAVE_PROC_PID, 1, [Define if you have /proc/$pid/fd])
Damien Miller36f49652004-08-15 18:40:59 +1000984 AC_MSG_RESULT(yes)
985else
986 AC_MSG_RESULT(no)
987fi
988
Damien Millerc547bf12001-02-16 10:18:12 +1100989# Check whether user wants S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +1100990SKEY_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +1100991AC_ARG_WITH(skey,
Darren Tucker1b6f2292005-02-11 16:11:49 +1100992 [ --with-skey[[=PATH]] Enable S/Key support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +1100993 [
994 if test "x$withval" != "xno" ; then
995
996 if test "x$withval" != "xyes" ; then
997 CPPFLAGS="$CPPFLAGS -I${withval}/include"
998 LDFLAGS="$LDFLAGS -L${withval}/lib"
999 fi
1000
Tim Rice7df8d392005-09-19 09:33:39 -07001001 AC_DEFINE(SKEY, 1, [Define if you want S/Key support])
Damien Millerc547bf12001-02-16 10:18:12 +11001002 LIBS="-lskey $LIBS"
Damien Millera8e06ce2003-11-21 23:48:55 +11001003 SKEY_MSG="yes"
Tim Riceeae17cc2005-03-17 16:52:20 -08001004
Tim Rice4cec93f2002-02-26 08:40:48 -08001005 AC_MSG_CHECKING([for s/key support])
Darren Tucker314d89e2005-10-17 23:29:23 +10001006 AC_LINK_IFELSE(
1007 [AC_LANG_SOURCE([[
Tim Rice4cec93f2002-02-26 08:40:48 -08001008#include <stdio.h>
1009#include <skey.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001010int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
Darren Tucker314d89e2005-10-17 23:29:23 +10001011 ]])],
Tim Rice4cec93f2002-02-26 08:40:48 -08001012 [AC_MSG_RESULT(yes)],
1013 [
1014 AC_MSG_RESULT(no)
Damien Millerc547bf12001-02-16 10:18:12 +11001015 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
1016 ])
Darren Tucker3b908f62004-04-14 15:26:39 +10001017 AC_MSG_CHECKING(if skeychallenge takes 4 arguments)
1018 AC_TRY_COMPILE(
1019 [#include <stdio.h>
1020 #include <skey.h>],
1021 [(void)skeychallenge(NULL,"name","",0);],
1022 [AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001023 AC_DEFINE(SKEYCHALLENGE_4ARG, 1,
1024 [Define if your skeychallenge()
1025 function takes 4 arguments (NetBSD)])],
Darren Tucker3b908f62004-04-14 15:26:39 +10001026 [AC_MSG_RESULT(no)]
1027 )
Damien Millerc547bf12001-02-16 10:18:12 +11001028 fi
1029 ]
1030)
1031
1032# Check whether user wants TCP wrappers support
Tim Rice13aae5e2001-10-21 17:53:58 -07001033TCPW_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +11001034AC_ARG_WITH(tcp-wrappers,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001035 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +11001036 [
1037 if test "x$withval" != "xno" ; then
1038 saved_LIBS="$LIBS"
Tim Rice13aae5e2001-10-21 17:53:58 -07001039 saved_LDFLAGS="$LDFLAGS"
1040 saved_CPPFLAGS="$CPPFLAGS"
Tim Rice8bb561b2005-03-17 16:23:19 -08001041 if test -n "${withval}" && \
Tim Rice35cc69d2005-03-17 16:44:25 -08001042 test "x${withval}" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001043 if test -d "${withval}/lib"; then
1044 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001045 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001046 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001047 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001048 fi
1049 else
1050 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001051 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001052 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001053 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001054 fi
1055 fi
1056 if test -d "${withval}/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001057 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001058 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001059 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001060 fi
Tim Rice13aae5e2001-10-21 17:53:58 -07001061 fi
Tim Rice4cec93f2002-02-26 08:40:48 -08001062 LIBWRAP="-lwrap"
1063 LIBS="$LIBWRAP $LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001064 AC_MSG_CHECKING(for libwrap)
1065 AC_TRY_LINK(
1066 [
Damien Miller0ac45002004-04-14 20:14:26 +10001067#include <sys/types.h>
1068#include <sys/socket.h>
1069#include <netinet/in.h>
Damien Millerc547bf12001-02-16 10:18:12 +11001070#include <tcpd.h>
1071 int deny_severity = 0, allow_severity = 0;
1072 ],
1073 [hosts_access(0);],
1074 [
1075 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001076 AC_DEFINE(LIBWRAP, 1,
1077 [Define if you want
1078 TCP Wrappers support])
Tim Rice4cec93f2002-02-26 08:40:48 -08001079 AC_SUBST(LIBWRAP)
Tim Rice13aae5e2001-10-21 17:53:58 -07001080 TCPW_MSG="yes"
Damien Millerc547bf12001-02-16 10:18:12 +11001081 ],
1082 [
1083 AC_MSG_ERROR([*** libwrap missing])
1084 ]
1085 )
Tim Rice4cec93f2002-02-26 08:40:48 -08001086 LIBS="$saved_LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001087 fi
1088 ]
1089)
1090
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001091# Check whether user wants libedit support
1092LIBEDIT_MSG="no"
1093AC_ARG_WITH(libedit,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001094 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001095 [ if test "x$withval" != "xno" ; then
Darren Tucker1df61452005-03-21 09:58:07 +11001096 if test "x$withval" != "xyes"; then
Darren Tuckerc373a562005-09-22 20:15:08 +10001097 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1098 if test -n "${need_dash_r}"; then
1099 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1100 else
1101 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1102 fi
Darren Tucker1df61452005-03-21 09:58:07 +11001103 fi
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001104 AC_CHECK_LIB(edit, el_init,
Tim Rice7df8d392005-09-19 09:33:39 -07001105 [ AC_DEFINE(USE_LIBEDIT, 1, [Use libedit for sftp])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001106 LIBEDIT="-ledit -lcurses"
1107 LIBEDIT_MSG="yes"
1108 AC_SUBST(LIBEDIT)
1109 ],
Darren Tucker1df61452005-03-21 09:58:07 +11001110 [ AC_MSG_ERROR(libedit not found) ],
1111 [ -lcurses ]
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001112 )
Darren Tuckerc7572b22005-08-10 20:34:15 +10001113 AC_MSG_CHECKING(if libedit version is compatible)
Tim Ricec1819c82005-08-15 17:48:40 -07001114 AC_COMPILE_IFELSE(
1115 [AC_LANG_SOURCE([[
1116#include <histedit.h>
Darren Tuckerc7572b22005-08-10 20:34:15 +10001117int main(void)
1118{
1119 int i = H_SETSIZE;
1120 el_init("", NULL, NULL, NULL);
1121 exit(0);
1122}
Tim Ricec1819c82005-08-15 17:48:40 -07001123 ]])],
Darren Tuckerc7572b22005-08-10 20:34:15 +10001124 [ AC_MSG_RESULT(yes) ],
1125 [ AC_MSG_RESULT(no)
1126 AC_MSG_ERROR(libedit version is not compatible) ]
1127 )
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001128 fi ]
1129)
1130
Darren Tuckerd9f88912005-02-20 21:01:48 +11001131AUDIT_MODULE=none
1132AC_ARG_WITH(audit,
1133 [ --with-audit=module Enable EXPERIMENTAL audit support (modules=debug,bsm)],
1134 [
1135 AC_MSG_CHECKING(for supported audit module)
1136 case "$withval" in
1137 bsm)
1138 AC_MSG_RESULT(bsm)
1139 AUDIT_MODULE=bsm
1140 dnl Checks for headers, libs and functions
1141 AC_CHECK_HEADERS(bsm/audit.h, [],
1142 [AC_MSG_ERROR(BSM enabled and bsm/audit.h not found)])
1143 AC_CHECK_LIB(bsm, getaudit, [],
1144 [AC_MSG_ERROR(BSM enabled and required library not found)])
1145 AC_CHECK_FUNCS(getaudit, [],
1146 [AC_MSG_ERROR(BSM enabled and required function not found)])
1147 # These are optional
Darren Tucker0d096692005-03-07 17:34:45 +11001148 AC_CHECK_FUNCS(getaudit_addr)
Tim Rice7df8d392005-09-19 09:33:39 -07001149 AC_DEFINE(USE_BSM_AUDIT, 1, [Use BSM audit module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001150 ;;
1151 debug)
1152 AUDIT_MODULE=debug
1153 AC_MSG_RESULT(debug)
Tim Rice7df8d392005-09-19 09:33:39 -07001154 AC_DEFINE(SSH_AUDIT_EVENTS, 1, Use audit debugging module)
Darren Tuckerd9f88912005-02-20 21:01:48 +11001155 ;;
Tim Rice8bc6b902005-08-09 10:09:53 -07001156 no)
Tim Ricec1819c82005-08-15 17:48:40 -07001157 AC_MSG_RESULT(no)
Tim Rice8bc6b902005-08-09 10:09:53 -07001158 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001159 *)
1160 AC_MSG_ERROR([Unknown audit module $withval])
1161 ;;
1162 esac ]
1163)
1164
Damien Millerfe1f1432003-02-24 15:45:42 +11001165dnl Checks for library functions. Please keep in alphabetical order
Darren Tucker0c9653f2005-05-28 15:58:14 +10001166AC_CHECK_FUNCS( \
1167 arc4random \
Damien Miller57f39152005-11-24 19:58:19 +11001168 asprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001169 b64_ntop \
1170 __b64_ntop \
1171 b64_pton \
1172 __b64_pton \
1173 bcopy \
1174 bindresvport_sa \
1175 clock \
1176 closefrom \
1177 dirfd \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001178 fchmod \
1179 fchown \
1180 freeaddrinfo \
1181 futimes \
1182 getaddrinfo \
1183 getcwd \
1184 getgrouplist \
1185 getnameinfo \
1186 getopt \
1187 getpeereid \
1188 _getpty \
1189 getrlimit \
1190 getttyent \
1191 glob \
1192 inet_aton \
1193 inet_ntoa \
1194 inet_ntop \
1195 innetgr \
1196 login_getcapbool \
1197 md5_crypt \
1198 memmove \
1199 mkdtemp \
1200 mmap \
1201 ngetaddrinfo \
1202 nsleep \
1203 ogetaddrinfo \
1204 openlog_r \
1205 openpty \
1206 prctl \
1207 pstat \
1208 readpassphrase \
1209 realpath \
1210 recvmsg \
1211 rresvport_af \
1212 sendmsg \
1213 setdtablesize \
1214 setegid \
1215 setenv \
1216 seteuid \
1217 setgroups \
1218 setlogin \
1219 setpcred \
1220 setproctitle \
1221 setregid \
1222 setreuid \
1223 setrlimit \
1224 setsid \
1225 setvbuf \
1226 sigaction \
1227 sigvec \
1228 snprintf \
1229 socketpair \
1230 strdup \
1231 strerror \
1232 strlcat \
1233 strlcpy \
1234 strmode \
1235 strnvis \
1236 strtonum \
Darren Tucker81eb5d52005-06-01 21:39:33 +10001237 strtoll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001238 strtoul \
1239 sysconf \
1240 tcgetpgrp \
1241 truncate \
1242 unsetenv \
1243 updwtmpx \
Damien Miller57f39152005-11-24 19:58:19 +11001244 vasprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001245 vhangup \
1246 vsnprintf \
1247 waitpid \
Damien Millerfe1f1432003-02-24 15:45:42 +11001248)
Tim Rice13aae5e2001-10-21 17:53:58 -07001249
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001250# IRIX has a const char return value for gai_strerror()
1251AC_CHECK_FUNCS(gai_strerror,[
1252 AC_DEFINE(HAVE_GAI_STRERROR)
1253 AC_TRY_COMPILE([
1254#include <sys/types.h>
1255#include <sys/socket.h>
1256#include <netdb.h>
1257
1258const char *gai_strerror(int);],[
1259char *str;
1260
1261str = gai_strerror(0);],[
1262 AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1,
1263 [Define if gai_strerror() returns const char *])])])
1264
Tim Rice7df8d392005-09-19 09:33:39 -07001265AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP, 1,
1266 [Some systems put nanosleep outside of libc]))
Damien Millercd6853c2003-01-28 11:33:42 +11001267
Darren Tuckerf1159b52003-07-07 19:44:01 +10001268dnl Make sure prototypes are defined for these before using them.
Darren Tuckerf1159b52003-07-07 19:44:01 +10001269AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
Darren Tucker390b6d52005-05-28 16:54:36 +10001270AC_CHECK_DECL(strsep,
1271 [AC_CHECK_FUNCS(strsep)],
1272 [],
1273 [
1274#ifdef HAVE_STRING_H
1275# include <string.h>
1276#endif
1277 ])
Ben Lindstrom3e006472002-10-16 00:24:03 +00001278
Darren Tuckerb2427c82003-09-10 15:22:44 +10001279dnl tcsendbreak might be a macro
1280AC_CHECK_DECL(tcsendbreak,
1281 [AC_DEFINE(HAVE_TCSENDBREAK)],
Damien Millera8e06ce2003-11-21 23:48:55 +11001282 [AC_CHECK_FUNCS(tcsendbreak)],
Darren Tuckerb2427c82003-09-10 15:22:44 +10001283 [#include <termios.h>]
1284)
1285
Darren Tucker5bb14002004-04-23 18:53:10 +10001286AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>])
1287
Darren Tucker248469b2006-07-12 14:14:31 +10001288AC_CHECK_DECLS(SHUT_RD, , ,[#include <sys/socket.h>])
1289
1290AC_CHECK_DECLS(O_NONBLOCK, , ,
1291 [
1292#include <sys/types.h>
1293#ifdef HAVE_SYS_STAT_H
1294# include <sys/stat.h>
1295#endif
1296#ifdef HAVE_FCNTL_H
1297# include <fcntl.h>
1298#endif
1299 ])
1300
Darren Tucker2a6b0292003-12-31 14:59:17 +11001301AC_CHECK_FUNCS(setresuid, [
1302 dnl Some platorms have setresuid that isn't implemented, test for this
1303 AC_MSG_CHECKING(if setresuid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001304 AC_RUN_IFELSE(
1305 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001306#include <stdlib.h>
1307#include <errno.h>
1308int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001309 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001310 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001311 [AC_DEFINE(BROKEN_SETRESUID, 1,
1312 [Define if your setresuid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001313 AC_MSG_RESULT(not implemented)],
1314 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001315 )
1316])
Darren Tuckere937be32003-12-17 18:53:26 +11001317
Darren Tucker2a6b0292003-12-31 14:59:17 +11001318AC_CHECK_FUNCS(setresgid, [
1319 dnl Some platorms have setresgid that isn't implemented, test for this
1320 AC_MSG_CHECKING(if setresgid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001321 AC_RUN_IFELSE(
1322 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001323#include <stdlib.h>
1324#include <errno.h>
1325int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001326 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001327 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001328 [AC_DEFINE(BROKEN_SETRESGID, 1,
1329 [Define if your setresgid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001330 AC_MSG_RESULT(not implemented)],
1331 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001332 )
1333])
Darren Tuckere937be32003-12-17 18:53:26 +11001334
Damien Millerad833b32000-08-23 10:46:23 +10001335dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +00001336AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +10001337dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001338AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +00001339AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +10001340dnl Checks for utmpx functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001341AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
andre2ff7b5d2000-06-03 14:57:40 +00001342AC_CHECK_FUNCS(setutxent utmpxname)
Damien Millercedfecc1999-11-15 14:36:53 +11001343
Damien Millera8e06ce2003-11-21 23:48:55 +11001344AC_CHECK_FUNC(daemon,
Tim Rice7df8d392005-09-19 09:33:39 -07001345 [AC_DEFINE(HAVE_DAEMON, 1, [Define if your libraries define daemon()])],
1346 [AC_CHECK_LIB(bsd, daemon,
1347 [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
Damien Miller04f80141999-11-19 15:32:34 +11001348)
1349
Damien Millera8e06ce2003-11-21 23:48:55 +11001350AC_CHECK_FUNC(getpagesize,
Tim Rice7df8d392005-09-19 09:33:39 -07001351 [AC_DEFINE(HAVE_GETPAGESIZE, 1,
1352 [Define if your libraries define getpagesize()])],
1353 [AC_CHECK_LIB(ucb, getpagesize,
1354 [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
Damien Miller9fb07e42000-03-05 16:22:59 +11001355)
1356
Damien Millercb170cb2000-07-01 16:52:55 +10001357# Check for broken snprintf
1358if test "x$ac_cv_func_snprintf" = "xyes" ; then
1359 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001360 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001361 [AC_LANG_SOURCE([[
Damien Millercb170cb2000-07-01 16:52:55 +10001362#include <stdio.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001363int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
Darren Tucker623d92f2004-09-12 22:36:15 +10001364 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001365 [AC_MSG_RESULT(yes)],
Damien Millercb170cb2000-07-01 16:52:55 +10001366 [
1367 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -07001368 AC_DEFINE(BROKEN_SNPRINTF, 1,
1369 [Define if your snprintf is busted])
Damien Millercb170cb2000-07-01 16:52:55 +10001370 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001371 ],
1372 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
Damien Millercb170cb2000-07-01 16:52:55 +10001373 )
1374fi
1375
Damien Miller57f39152005-11-24 19:58:19 +11001376# If we don't have a working asprintf, then we strongly depend on vsnprintf
1377# returning the right thing on overflow: the number of characters it tried to
1378# create (as per SUSv3)
1379if test "x$ac_cv_func_asprintf" != "xyes" && \
1380 test "x$ac_cv_func_vsnprintf" = "xyes" ; then
1381 AC_MSG_CHECKING([whether vsnprintf returns correct values on overflow])
1382 AC_RUN_IFELSE(
1383 [AC_LANG_SOURCE([[
1384#include <sys/types.h>
1385#include <stdio.h>
1386#include <stdarg.h>
1387
1388int x_snprintf(char *str,size_t count,const char *fmt,...)
1389{
1390 size_t ret; va_list ap;
1391 va_start(ap, fmt); ret = vsnprintf(str, count, fmt, ap); va_end(ap);
1392 return ret;
1393}
1394int main(void)
1395{
1396 char x[1];
1397 exit(x_snprintf(x, 1, "%s %d", "hello", 12345) == 11 ? 0 : 1);
1398} ]])],
1399 [AC_MSG_RESULT(yes)],
1400 [
1401 AC_MSG_RESULT(no)
1402 AC_DEFINE(BROKEN_SNPRINTF, 1,
1403 [Define if your snprintf is busted])
1404 AC_MSG_WARN([****** Your vsnprintf() function is broken, complain to your vendor])
1405 ],
1406 [ AC_MSG_WARN([cross compiling: Assuming working vsnprintf()]) ]
1407 )
1408fi
1409
Darren Tuckerd40c66c2005-12-17 22:32:03 +11001410# On systems where [v]snprintf is broken, but is declared in stdio,
1411# check that the fmt argument is const char * or just char *.
1412# This is only useful for when BROKEN_SNPRINTF
1413AC_MSG_CHECKING([whether snprintf can declare const char *fmt])
1414AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
1415 int snprintf(char *a, size_t b, const char *c, ...) { return 0; }
1416 int main(void) { snprintf(0, 0, 0); }
1417 ]])],
1418 [AC_MSG_RESULT(yes)
1419 AC_DEFINE(SNPRINTF_CONST, [const],
1420 [Define as const if snprintf() can declare const char *fmt])],
1421 [AC_MSG_RESULT(no)
1422 AC_DEFINE(SNPRINTF_CONST, [/* not const */])])
1423
Damien Millerb4097182004-05-23 14:09:40 +10001424# Check for missing getpeereid (or equiv) support
1425NO_PEERCHECK=""
1426if test "x$ac_cv_func_getpeereid" != "xyes" ; then
1427 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
1428 AC_TRY_COMPILE(
1429 [#include <sys/types.h>
1430 #include <sys/socket.h>],
1431 [int i = SO_PEERCRED;],
Darren Tucker9d2562c2005-04-05 19:22:45 +10001432 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001433 AC_DEFINE(HAVE_SO_PEERCRED, 1, [Have PEERCRED socket option])
Darren Tucker9d2562c2005-04-05 19:22:45 +10001434 ],
Damien Millerb4097182004-05-23 14:09:40 +10001435 [AC_MSG_RESULT(no)
1436 NO_PEERCHECK=1]
1437 )
1438fi
1439
Damien Millere8328192003-01-07 15:18:32 +11001440dnl see whether mkstemp() requires XXXXXX
1441if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
1442AC_MSG_CHECKING([for (overly) strict mkstemp])
Darren Tucker314d89e2005-10-17 23:29:23 +10001443AC_RUN_IFELSE(
1444 [AC_LANG_SOURCE([[
Damien Millere8328192003-01-07 15:18:32 +11001445#include <stdlib.h>
1446main() { char template[]="conftest.mkstemp-test";
1447if (mkstemp(template) == -1)
1448 exit(1);
1449unlink(template); exit(0);
1450}
Darren Tucker314d89e2005-10-17 23:29:23 +10001451 ]])],
Damien Millere8328192003-01-07 15:18:32 +11001452 [
1453 AC_MSG_RESULT(no)
1454 ],
Damien Millera8e06ce2003-11-21 23:48:55 +11001455 [
Damien Millere8328192003-01-07 15:18:32 +11001456 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001457 AC_DEFINE(HAVE_STRICT_MKSTEMP, 1, [Silly mkstemp()])
Damien Millere8328192003-01-07 15:18:32 +11001458 ],
1459 [
1460 AC_MSG_RESULT(yes)
1461 AC_DEFINE(HAVE_STRICT_MKSTEMP)
Damien Millera8e06ce2003-11-21 23:48:55 +11001462 ]
Damien Millere8328192003-01-07 15:18:32 +11001463)
1464fi
1465
Darren Tucker70a3d552003-08-21 17:58:29 +10001466dnl make sure that openpty does not reacquire controlling terminal
1467if test ! -z "$check_for_openpty_ctty_bug"; then
1468 AC_MSG_CHECKING(if openpty correctly handles controlling tty)
Darren Tucker314d89e2005-10-17 23:29:23 +10001469 AC_RUN_IFELSE(
1470 [AC_LANG_SOURCE([[
Darren Tucker70a3d552003-08-21 17:58:29 +10001471#include <stdio.h>
1472#include <sys/fcntl.h>
1473#include <sys/types.h>
1474#include <sys/wait.h>
1475
1476int
1477main()
1478{
1479 pid_t pid;
1480 int fd, ptyfd, ttyfd, status;
1481
1482 pid = fork();
1483 if (pid < 0) { /* failed */
1484 exit(1);
1485 } else if (pid > 0) { /* parent */
1486 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +11001487 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +10001488 exit(WEXITSTATUS(status));
1489 else
1490 exit(2);
1491 } else { /* child */
1492 close(0); close(1); close(2);
1493 setsid();
1494 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
1495 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
1496 if (fd >= 0)
1497 exit(3); /* Acquired ctty: broken */
1498 else
1499 exit(0); /* Did not acquire ctty: OK */
1500 }
1501}
Darren Tucker314d89e2005-10-17 23:29:23 +10001502 ]])],
Darren Tucker70a3d552003-08-21 17:58:29 +10001503 [
1504 AC_MSG_RESULT(yes)
1505 ],
1506 [
1507 AC_MSG_RESULT(no)
1508 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker314d89e2005-10-17 23:29:23 +10001509 ],
1510 [
1511 AC_MSG_RESULT(cross-compiling, assuming yes)
Darren Tucker70a3d552003-08-21 17:58:29 +10001512 ]
1513 )
1514fi
1515
Tim Rice8bb561b2005-03-17 16:23:19 -08001516if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1517 test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
Darren Tucker4398cf52004-04-06 21:39:02 +10001518 AC_MSG_CHECKING(if getaddrinfo seems to work)
Darren Tucker314d89e2005-10-17 23:29:23 +10001519 AC_RUN_IFELSE(
1520 [AC_LANG_SOURCE([[
Darren Tucker4398cf52004-04-06 21:39:02 +10001521#include <stdio.h>
1522#include <sys/socket.h>
1523#include <netdb.h>
1524#include <errno.h>
1525#include <netinet/in.h>
1526
1527#define TEST_PORT "2222"
1528
1529int
1530main(void)
1531{
1532 int err, sock;
1533 struct addrinfo *gai_ai, *ai, hints;
1534 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1535
1536 memset(&hints, 0, sizeof(hints));
1537 hints.ai_family = PF_UNSPEC;
1538 hints.ai_socktype = SOCK_STREAM;
1539 hints.ai_flags = AI_PASSIVE;
1540
1541 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1542 if (err != 0) {
1543 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1544 exit(1);
1545 }
1546
1547 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1548 if (ai->ai_family != AF_INET6)
1549 continue;
1550
1551 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1552 sizeof(ntop), strport, sizeof(strport),
1553 NI_NUMERICHOST|NI_NUMERICSERV);
1554
1555 if (err != 0) {
1556 if (err == EAI_SYSTEM)
1557 perror("getnameinfo EAI_SYSTEM");
1558 else
1559 fprintf(stderr, "getnameinfo failed: %s\n",
1560 gai_strerror(err));
1561 exit(2);
1562 }
1563
1564 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1565 if (sock < 0)
1566 perror("socket");
1567 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1568 if (errno == EBADF)
1569 exit(3);
1570 }
1571 }
1572 exit(0);
1573}
Darren Tucker314d89e2005-10-17 23:29:23 +10001574 ]])],
Darren Tucker4398cf52004-04-06 21:39:02 +10001575 [
1576 AC_MSG_RESULT(yes)
1577 ],
1578 [
1579 AC_MSG_RESULT(no)
1580 AC_DEFINE(BROKEN_GETADDRINFO)
Darren Tucker314d89e2005-10-17 23:29:23 +10001581 ],
1582 [
1583 AC_MSG_RESULT(cross-compiling, assuming yes)
Darren Tucker4398cf52004-04-06 21:39:02 +10001584 ]
1585 )
1586fi
1587
Tim Rice8bb561b2005-03-17 16:23:19 -08001588if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1589 test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
Darren Tucker691d5232005-02-15 21:45:57 +11001590 AC_MSG_CHECKING(if getaddrinfo seems to work)
Darren Tucker314d89e2005-10-17 23:29:23 +10001591 AC_RUN_IFELSE(
1592 [AC_LANG_SOURCE([[
Darren Tucker691d5232005-02-15 21:45:57 +11001593#include <stdio.h>
1594#include <sys/socket.h>
1595#include <netdb.h>
1596#include <errno.h>
1597#include <netinet/in.h>
1598
1599#define TEST_PORT "2222"
1600
1601int
1602main(void)
1603{
1604 int err, sock;
1605 struct addrinfo *gai_ai, *ai, hints;
1606 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1607
1608 memset(&hints, 0, sizeof(hints));
1609 hints.ai_family = PF_UNSPEC;
1610 hints.ai_socktype = SOCK_STREAM;
1611 hints.ai_flags = AI_PASSIVE;
1612
1613 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1614 if (err != 0) {
1615 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1616 exit(1);
1617 }
1618
1619 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1620 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1621 continue;
1622
1623 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1624 sizeof(ntop), strport, sizeof(strport),
1625 NI_NUMERICHOST|NI_NUMERICSERV);
1626
1627 if (ai->ai_family == AF_INET && err != 0) {
1628 perror("getnameinfo");
1629 exit(2);
1630 }
1631 }
1632 exit(0);
1633}
Darren Tucker314d89e2005-10-17 23:29:23 +10001634 ]])],
Darren Tucker691d5232005-02-15 21:45:57 +11001635 [
1636 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001637 AC_DEFINE(AIX_GETNAMEINFO_HACK, 1,
1638 [Define if you have a getaddrinfo that fails
1639 for the all-zeros IPv6 address])
Darren Tucker691d5232005-02-15 21:45:57 +11001640 ],
1641 [
1642 AC_MSG_RESULT(no)
1643 AC_DEFINE(BROKEN_GETADDRINFO)
Darren Tucker314d89e2005-10-17 23:29:23 +10001644 ],
Darren Tucker8b272ab2006-06-27 11:20:28 +10001645 [
Darren Tucker314d89e2005-10-17 23:29:23 +10001646 AC_MSG_RESULT(cross-compiling, assuming no)
Darren Tucker691d5232005-02-15 21:45:57 +11001647 ]
1648 )
1649fi
1650
Darren Tuckera56f1912004-11-02 20:30:54 +11001651if test "x$check_for_conflicting_getspnam" = "x1"; then
1652 AC_MSG_CHECKING(for conflicting getspnam in shadow.h)
1653 AC_COMPILE_IFELSE(
1654 [
1655#include <shadow.h>
1656int main(void) {exit(0);}
1657 ],
1658 [
1659 AC_MSG_RESULT(no)
1660 ],
1661 [
1662 AC_MSG_RESULT(yes)
1663 AC_DEFINE(GETSPNAM_CONFLICTING_DEFS, 1,
1664 [Conflicting defs for getspnam])
1665 ]
1666 )
1667fi
1668
Damien Miller606f8802000-09-16 15:39:56 +11001669AC_FUNC_GETPGRP
1670
Damien Millera64b57a2001-01-17 10:44:13 +11001671# Check for PAM libs
Damien Miller7b22d652000-06-18 14:07:04 +10001672PAM_MSG="no"
Damien Millera22ba012000-03-02 23:09:20 +11001673AC_ARG_WITH(pam,
Damien Millera64b57a2001-01-17 10:44:13 +11001674 [ --with-pam Enable PAM support ],
Damien Millera22ba012000-03-02 23:09:20 +11001675 [
Damien Millera64b57a2001-01-17 10:44:13 +11001676 if test "x$withval" != "xno" ; then
Damien Miller0f47c532004-01-02 18:01:30 +11001677 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
1678 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
Damien Millera64b57a2001-01-17 10:44:13 +11001679 AC_MSG_ERROR([PAM headers not found])
1680 fi
1681
1682 AC_CHECK_LIB(dl, dlopen, , )
1683 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
1684 AC_CHECK_FUNCS(pam_getenvlist)
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001685 AC_CHECK_FUNCS(pam_putenv)
Damien Millera64b57a2001-01-17 10:44:13 +11001686
Damien Millera64b57a2001-01-17 10:44:13 +11001687 PAM_MSG="yes"
1688
Tim Rice7df8d392005-09-19 09:33:39 -07001689 AC_DEFINE(USE_PAM, 1,
1690 [Define if you want to enable PAM support])
Tim Rice7d2d1f12002-02-26 22:05:11 -08001691 if test $ac_cv_lib_dl_dlopen = yes; then
1692 LIBPAM="-lpam -ldl"
1693 else
1694 LIBPAM="-lpam"
1695 fi
1696 AC_SUBST(LIBPAM)
Damien Millera22ba012000-03-02 23:09:20 +11001697 fi
1698 ]
1699)
Damien Millera22ba012000-03-02 23:09:20 +11001700
Damien Millera64b57a2001-01-17 10:44:13 +11001701# Check for older PAM
1702if test "x$PAM_MSG" = "xyes" ; then
Damien Millera22ba012000-03-02 23:09:20 +11001703 # Check PAM strerror arguments (old PAM)
1704 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
1705 AC_TRY_COMPILE(
1706 [
Damien Miller81171112000-04-23 11:14:01 +10001707#include <stdlib.h>
Damien Miller0f47c532004-01-02 18:01:30 +11001708#if defined(HAVE_SECURITY_PAM_APPL_H)
Damien Miller81171112000-04-23 11:14:01 +10001709#include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +11001710#elif defined (HAVE_PAM_PAM_APPL_H)
1711#include <pam/pam_appl.h>
1712#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001713 ],
1714 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
Damien Millera22ba012000-03-02 23:09:20 +11001715 [AC_MSG_RESULT(no)],
1716 [
Tim Rice7df8d392005-09-19 09:33:39 -07001717 AC_DEFINE(HAVE_OLD_PAM, 1,
1718 [Define if you have an old version of PAM
1719 which takes only one argument to pam_strerror])
Damien Millera22ba012000-03-02 23:09:20 +11001720 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +10001721 PAM_MSG="yes (old library)"
Damien Millera22ba012000-03-02 23:09:20 +11001722 ]
Damien Millera64b57a2001-01-17 10:44:13 +11001723 )
Damien Millera22ba012000-03-02 23:09:20 +11001724fi
1725
Tim Riceaef73712002-05-11 13:17:42 -07001726# Search for OpenSSL
1727saved_CPPFLAGS="$CPPFLAGS"
1728saved_LDFLAGS="$LDFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +11001729AC_ARG_WITH(ssl-dir,
1730 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
1731 [
Ben Lindstrom23e13712000-10-29 22:49:19 +00001732 if test "x$withval" != "xno" ; then
Darren Tuckerc7e38d52005-02-09 22:12:30 +11001733 case "$withval" in
1734 # Relative paths
1735 ./*|../*) withval="`pwd`/$withval"
1736 esac
Tim Riceaef73712002-05-11 13:17:42 -07001737 if test -d "$withval/lib"; then
1738 if test -n "${need_dash_r}"; then
1739 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1740 else
1741 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1742 fi
1743 else
1744 if test -n "${need_dash_r}"; then
1745 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
1746 else
1747 LDFLAGS="-L${withval} ${LDFLAGS}"
1748 fi
1749 fi
1750 if test -d "$withval/include"; then
1751 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
1752 else
1753 CPPFLAGS="-I${withval} ${CPPFLAGS}"
1754 fi
Damien Millera22ba012000-03-02 23:09:20 +11001755 fi
1756 ]
1757)
Tim Rice3d5352e2004-02-12 09:27:21 -08001758LIBS="-lcrypto $LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07001759AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL, 1,
1760 [Define if your ssl headers are included
1761 with #include <openssl/header.h>]),
Damien Miller3b512e12000-05-17 23:29:18 +10001762 [
Tim Riceaef73712002-05-11 13:17:42 -07001763 dnl Check default openssl install dir
1764 if test -n "${need_dash_r}"; then
1765 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001766 else
Tim Riceaef73712002-05-11 13:17:42 -07001767 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001768 fi
Tim Riceaef73712002-05-11 13:17:42 -07001769 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
1770 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
1771 [
1772 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
1773 ]
1774 )
1775 ]
1776)
1777
Tim Riced730b782002-08-13 18:52:10 -07001778# Determine OpenSSL header version
1779AC_MSG_CHECKING([OpenSSL header version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001780AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001781 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07001782#include <stdio.h>
1783#include <string.h>
1784#include <openssl/opensslv.h>
1785#define DATA "conftest.sslincver"
1786int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001787 FILE *fd;
1788 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001789
Damien Millera8e06ce2003-11-21 23:48:55 +11001790 fd = fopen(DATA,"w");
1791 if(fd == NULL)
1792 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001793
1794 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
1795 exit(1);
1796
1797 exit(0);
1798}
Darren Tucker623d92f2004-09-12 22:36:15 +10001799 ]])],
Tim Riced730b782002-08-13 18:52:10 -07001800 [
1801 ssl_header_ver=`cat conftest.sslincver`
1802 AC_MSG_RESULT($ssl_header_ver)
1803 ],
1804 [
1805 AC_MSG_RESULT(not found)
1806 AC_MSG_ERROR(OpenSSL version header not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10001807 ],
1808 [
1809 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07001810 ]
1811)
1812
1813# Determine OpenSSL library version
1814AC_MSG_CHECKING([OpenSSL library version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001815AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001816 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07001817#include <stdio.h>
1818#include <string.h>
1819#include <openssl/opensslv.h>
1820#include <openssl/crypto.h>
1821#define DATA "conftest.ssllibver"
1822int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001823 FILE *fd;
1824 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001825
Damien Millera8e06ce2003-11-21 23:48:55 +11001826 fd = fopen(DATA,"w");
1827 if(fd == NULL)
1828 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001829
1830 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
1831 exit(1);
1832
1833 exit(0);
1834}
Darren Tucker623d92f2004-09-12 22:36:15 +10001835 ]])],
Tim Riced730b782002-08-13 18:52:10 -07001836 [
1837 ssl_library_ver=`cat conftest.ssllibver`
1838 AC_MSG_RESULT($ssl_library_ver)
1839 ],
1840 [
1841 AC_MSG_RESULT(not found)
1842 AC_MSG_ERROR(OpenSSL library not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10001843 ],
1844 [
1845 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07001846 ]
1847)
Damien Millera22ba012000-03-02 23:09:20 +11001848
Damien Millerec932372002-01-22 22:16:03 +11001849# Sanity check OpenSSL headers
1850AC_MSG_CHECKING([whether OpenSSL's headers match the library])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001851AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001852 [AC_LANG_SOURCE([[
Damien Millerec932372002-01-22 22:16:03 +11001853#include <string.h>
1854#include <openssl/opensslv.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001855int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10001856 ]])],
Damien Millerec932372002-01-22 22:16:03 +11001857 [
1858 AC_MSG_RESULT(yes)
1859 ],
1860 [
1861 AC_MSG_RESULT(no)
Darren Tuckera0472e02003-06-24 20:22:09 +10001862 AC_MSG_ERROR([Your OpenSSL headers do not match your library.
1863Check config.log for details.
1864Also see contrib/findssl.sh for help identifying header/library mismatches.])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001865 ],
1866 [
1867 AC_MSG_WARN([cross compiling: not checking])
Damien Millerec932372002-01-22 22:16:03 +11001868 ]
1869)
1870
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11001871AC_ARG_WITH(ssl-engine,
1872 [ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
1873 [ if test "x$withval" != "xno" ; then
1874 AC_MSG_CHECKING(for OpenSSL ENGINE support)
1875 AC_TRY_COMPILE(
1876 [ #include <openssl/engine.h>],
1877 [
1878int main(void){ENGINE_load_builtin_engines();ENGINE_register_all_complete();}
1879 ],
1880 [ AC_MSG_RESULT(yes)
1881 AC_DEFINE(USE_OPENSSL_ENGINE, 1,
1882 [Enable OpenSSL engine support])
1883 ],
1884 [ AC_MSG_ERROR(OpenSSL ENGINE support not found)]
1885 )
1886 fi ]
1887)
1888
Darren Tucker129d0bb2005-12-19 17:40:40 +11001889# Check for OpenSSL without EVP_aes_{192,256}_cbc
1890AC_MSG_CHECKING([whether OpenSSL has crippled AES support])
1891AC_COMPILE_IFELSE(
1892 [AC_LANG_SOURCE([[
1893#include <string.h>
1894#include <openssl/evp.h>
Darren Tuckercc7c2122006-02-02 18:44:19 +11001895int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);}
Darren Tucker129d0bb2005-12-19 17:40:40 +11001896 ]])],
1897 [
1898 AC_MSG_RESULT(no)
1899 ],
1900 [
1901 AC_MSG_RESULT(yes)
1902 AC_DEFINE(OPENSSL_LOBOTOMISED_AES, 1,
1903 [libcrypto is missing AES 192 and 256 bit functions])
1904 ]
1905)
1906
Tim Rice3d5352e2004-02-12 09:27:21 -08001907# Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
1908# because the system crypt() is more featureful.
1909if test "x$check_for_libcrypt_before" = "x1"; then
1910 AC_CHECK_LIB(crypt, crypt)
1911fi
1912
Damien Millera8e06ce2003-11-21 23:48:55 +11001913# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
Tim Rice43fa5572004-02-11 14:46:40 -08001914# version in OpenSSL.
Damien Miller4f9f42a2003-05-10 19:28:02 +10001915if test "x$check_for_libcrypt_later" = "x1"; then
Damien Miller95aa2d62001-03-01 09:16:11 +11001916 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
Damien Millera64b57a2001-01-17 10:44:13 +11001917fi
1918
Damien Milleraf87af12006-03-15 13:02:28 +11001919# Search for SHA256 support in libc and/or OpenSSL
1920AC_CHECK_FUNCS(SHA256_Update EVP_sha256)
1921
Tim Rice2291c002005-08-26 13:15:19 -07001922AC_CHECK_LIB(iaf, ia_openinfo)
Damien Miller6c21c512002-01-22 21:57:53 +11001923
1924### Configure cryptographic random number support
1925
1926# Check wheter OpenSSL seeds itself
1927AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001928AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001929 [AC_LANG_SOURCE([[
Damien Miller6c21c512002-01-22 21:57:53 +11001930#include <string.h>
1931#include <openssl/rand.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001932int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10001933 ]])],
Damien Miller6c21c512002-01-22 21:57:53 +11001934 [
1935 OPENSSL_SEEDS_ITSELF=yes
1936 AC_MSG_RESULT(yes)
1937 ],
1938 [
1939 AC_MSG_RESULT(no)
1940 # Default to use of the rand helper if OpenSSL doesn't
1941 # seed itself
1942 USE_RAND_HELPER=yes
Darren Tuckera0c2b392004-09-11 23:26:37 +10001943 ],
1944 [
1945 AC_MSG_WARN([cross compiling: assuming yes])
1946 # This is safe, since all recent OpenSSL versions will
Tim Riceeae17cc2005-03-17 16:52:20 -08001947 # complain at runtime if not seeded correctly.
Darren Tuckera0c2b392004-09-11 23:26:37 +10001948 OPENSSL_SEEDS_ITSELF=yes
Damien Miller6c21c512002-01-22 21:57:53 +11001949 ]
1950)
1951
1952
1953# Do we want to force the use of the rand helper?
1954AC_ARG_WITH(rand-helper,
1955 [ --with-rand-helper Use subprocess to gather strong randomness ],
1956 [
1957 if test "x$withval" = "xno" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11001958 # Force use of OpenSSL's internal RNG, even if
Damien Miller6c21c512002-01-22 21:57:53 +11001959 # the previous test showed it to be unseeded.
1960 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
1961 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
1962 OPENSSL_SEEDS_ITSELF=yes
1963 USE_RAND_HELPER=""
1964 fi
1965 else
1966 USE_RAND_HELPER=yes
1967 fi
1968 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08001969)
Damien Miller6c21c512002-01-22 21:57:53 +11001970
1971# Which randomness source do we use?
Tim Rice8bb561b2005-03-17 16:23:19 -08001972if test ! -z "$OPENSSL_SEEDS_ITSELF" && test -z "$USE_RAND_HELPER" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001973 # OpenSSL only
Tim Rice7df8d392005-09-19 09:33:39 -07001974 AC_DEFINE(OPENSSL_PRNG_ONLY, 1,
1975 [Define if you want OpenSSL's internally seeded PRNG only])
Damien Miller6c21c512002-01-22 21:57:53 +11001976 RAND_MSG="OpenSSL internal ONLY"
1977 INSTALL_SSH_RAND_HELPER=""
Tim Rice1e2c6002002-01-30 22:14:03 -08001978elif test ! -z "$USE_RAND_HELPER" ; then
1979 # install rand helper
Damien Miller6c21c512002-01-22 21:57:53 +11001980 RAND_MSG="ssh-rand-helper"
1981 INSTALL_SSH_RAND_HELPER="yes"
1982fi
1983AC_SUBST(INSTALL_SSH_RAND_HELPER)
1984
1985### Configuration of ssh-rand-helper
1986
1987# PRNGD TCP socket
1988AC_ARG_WITH(prngd-port,
1989 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
1990 [
Damien Millere996d722002-01-23 11:20:59 +11001991 case "$withval" in
1992 no)
1993 withval=""
1994 ;;
1995 [[0-9]]*)
1996 ;;
1997 *)
1998 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
1999 ;;
2000 esac
2001 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002002 PRNGD_PORT="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07002003 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT,
2004 [Port number of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11002005 fi
2006 ]
2007)
2008
2009# PRNGD Unix domain socket
2010AC_ARG_WITH(prngd-socket,
2011 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
2012 [
Damien Millere996d722002-01-23 11:20:59 +11002013 case "$withval" in
2014 yes)
Damien Miller6c21c512002-01-22 21:57:53 +11002015 withval="/var/run/egd-pool"
Damien Millere996d722002-01-23 11:20:59 +11002016 ;;
2017 no)
2018 withval=""
2019 ;;
2020 /*)
2021 ;;
2022 *)
2023 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
2024 ;;
2025 esac
2026
2027 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002028 if test ! -z "$PRNGD_PORT" ; then
2029 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
2030 fi
Damien Miller6385ba02002-01-23 08:12:36 +11002031 if test ! -r "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002032 AC_MSG_WARN(Entropy socket is not readable)
2033 fi
2034 PRNGD_SOCKET="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07002035 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET",
2036 [Location of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11002037 fi
Tim Rice4cec93f2002-02-26 08:40:48 -08002038 ],
2039 [
2040 # Check for existing socket only if we don't have a random device already
2041 if test "$USE_RAND_HELPER" = yes ; then
2042 AC_MSG_CHECKING(for PRNGD/EGD socket)
2043 # Insert other locations here
2044 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
2045 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
2046 PRNGD_SOCKET="$sock"
2047 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
2048 break;
2049 fi
2050 done
2051 if test ! -z "$PRNGD_SOCKET" ; then
2052 AC_MSG_RESULT($PRNGD_SOCKET)
2053 else
2054 AC_MSG_RESULT(not found)
2055 fi
2056 fi
Damien Miller6c21c512002-01-22 21:57:53 +11002057 ]
2058)
2059
2060# Change default command timeout for hashing entropy source
2061entropy_timeout=200
2062AC_ARG_WITH(entropy-timeout,
2063 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
2064 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002065 if test -n "$withval" && test "x$withval" != "xno" && \
2066 test "x${withval}" != "xyes"; then
Damien Miller6c21c512002-01-22 21:57:53 +11002067 entropy_timeout=$withval
2068 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08002069 ]
Damien Miller6c21c512002-01-22 21:57:53 +11002070)
Tim Rice7df8d392005-09-19 09:33:39 -07002071AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout,
2072 [Builtin PRNG command timeout])
Damien Miller6c21c512002-01-22 21:57:53 +11002073
Damien Millerd3f6ad22002-06-25 10:24:47 +10002074SSH_PRIVSEP_USER=sshd
Kevin Steves7ff91122002-04-07 19:22:54 +00002075AC_ARG_WITH(privsep-user,
Kevin Stevesc81e1292002-05-13 03:51:40 +00002076 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00002077 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002078 if test -n "$withval" && test "x$withval" != "xno" && \
2079 test "x${withval}" != "xyes"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10002080 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00002081 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08002082 ]
Kevin Steves7ff91122002-04-07 19:22:54 +00002083)
Tim Rice7df8d392005-09-19 09:33:39 -07002084AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER",
2085 [non-privileged user for privilege separation])
Damien Millerd3f6ad22002-06-25 10:24:47 +10002086AC_SUBST(SSH_PRIVSEP_USER)
Kevin Steves7ff91122002-04-07 19:22:54 +00002087
Tim Rice88f2ab52002-03-17 12:17:34 -08002088# We do this little dance with the search path to insure
2089# that programs that we select for use by installed programs
2090# (which may be run by the super-user) come from trusted
2091# locations before they come from the user's private area.
2092# This should help avoid accidentally configuring some
2093# random version of a program in someone's personal bin.
2094
2095OPATH=$PATH
2096PATH=/bin:/usr/bin
Tim Riceae49fe62002-04-12 10:26:21 -07002097test -h /bin 2> /dev/null && PATH=/usr/bin
Tim Rice88f2ab52002-03-17 12:17:34 -08002098test -d /sbin && PATH=$PATH:/sbin
2099test -d /usr/sbin && PATH=$PATH:/usr/sbin
2100PATH=$PATH:/etc:$OPATH
2101
Damien Millera8e06ce2003-11-21 23:48:55 +11002102# These programs are used by the command hashing source to gather entropy
Damien Miller6c21c512002-01-22 21:57:53 +11002103OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
2104OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
2105OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
2106OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
2107OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
2108OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
2109OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
2110OSSH_PATH_ENTROPY_PROG(PROG_W, w)
2111OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
2112OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
2113OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
2114OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
2115OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
2116OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
2117OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
2118OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
Tim Rice88f2ab52002-03-17 12:17:34 -08002119# restore PATH
2120PATH=$OPATH
Damien Miller6c21c512002-01-22 21:57:53 +11002121
2122# Where does ssh-rand-helper get its randomness from?
2123INSTALL_SSH_PRNG_CMDS=""
2124if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
2125 if test ! -z "$PRNGD_PORT" ; then
2126 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
2127 elif test ! -z "$PRNGD_SOCKET" ; then
2128 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
2129 else
2130 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
2131 RAND_HELPER_CMDHASH=yes
2132 INSTALL_SSH_PRNG_CMDS="yes"
2133 fi
2134fi
2135AC_SUBST(INSTALL_SSH_PRNG_CMDS)
2136
2137
Ben Lindstromb5628642000-10-18 00:02:25 +00002138# Cheap hack to ensure NEWS-OS libraries are arranged right.
2139if test ! -z "$SONY" ; then
2140 LIBS="$LIBS -liberty";
2141fi
2142
Damien Miller57f39152005-11-24 19:58:19 +11002143# Check for long long datatypes
2144AC_CHECK_TYPES([long long, unsigned long long, long double])
2145
2146# Check datatype sizes
Damien Millere0f45742000-01-18 09:12:06 +11002147AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +11002148AC_CHECK_SIZEOF(short int, 2)
2149AC_CHECK_SIZEOF(int, 4)
2150AC_CHECK_SIZEOF(long int, 4)
2151AC_CHECK_SIZEOF(long long int, 8)
2152
Damien Millerfa2bb692002-04-23 23:22:25 +10002153# Sanity check long long for some platforms (AIX)
2154if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
2155 ac_cv_sizeof_long_long_int=0
2156fi
2157
Darren Tucker537f1ed2005-10-25 18:38:33 +10002158# compute LLONG_MIN and LLONG_MAX if we don't know them.
2159if test -z "$have_llong_max"; then
2160 AC_MSG_CHECKING([for max value of long long])
2161 AC_RUN_IFELSE(
2162 [AC_LANG_SOURCE([[
2163#include <stdio.h>
2164/* Why is this so damn hard? */
2165#ifdef __GNUC__
2166# undef __GNUC__
2167#endif
2168#define __USE_ISOC99
2169#include <limits.h>
2170#define DATA "conftest.llminmax"
Darren Tuckerd1450db2006-03-13 19:06:51 +11002171#define my_abs(a) ((a) < 0 ? ((a) * -1) : (a))
2172
2173/*
2174 * printf in libc on some platforms (eg old Tru64) does not understand %lld so
2175 * we do this the hard way.
2176 */
2177static int
2178fprint_ll(FILE *f, long long n)
2179{
2180 unsigned int i;
2181 int l[sizeof(long long) * 8];
2182
2183 if (n < 0)
2184 if (fprintf(f, "-") < 0)
2185 return -1;
2186 for (i = 0; n != 0; i++) {
2187 l[i] = my_abs(n % 10);
2188 n /= 10;
2189 }
2190 do {
2191 if (fprintf(f, "%d", l[--i]) < 0)
2192 return -1;
2193 } while (i != 0);
2194 if (fprintf(f, " ") < 0)
2195 return -1;
2196 return 0;
2197}
2198
Darren Tucker537f1ed2005-10-25 18:38:33 +10002199int main(void) {
2200 FILE *f;
2201 long long i, llmin, llmax = 0;
2202
2203 if((f = fopen(DATA,"w")) == NULL)
2204 exit(1);
2205
2206#if defined(LLONG_MIN) && defined(LLONG_MAX)
2207 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
2208 llmin = LLONG_MIN;
2209 llmax = LLONG_MAX;
2210#else
2211 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n");
2212 /* This will work on one's complement and two's complement */
2213 for (i = 1; i > llmax; i <<= 1, i++)
2214 llmax = i;
2215 llmin = llmax + 1LL; /* wrap */
2216#endif
2217
2218 /* Sanity check */
2219 if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
Darren Tuckerd1450db2006-03-13 19:06:51 +11002220 || llmax - 1 > llmax || llmin == llmax || llmin == 0
2221 || llmax == 0 || llmax < LONG_MAX || llmin > LONG_MIN) {
Darren Tucker537f1ed2005-10-25 18:38:33 +10002222 fprintf(f, "unknown unknown\n");
2223 exit(2);
2224 }
2225
Darren Tuckerd1450db2006-03-13 19:06:51 +11002226 if (fprint_ll(f, llmin) < 0)
Darren Tucker537f1ed2005-10-25 18:38:33 +10002227 exit(3);
Darren Tuckerd1450db2006-03-13 19:06:51 +11002228 if (fprint_ll(f, llmax) < 0)
2229 exit(4);
2230 if (fclose(f) < 0)
2231 exit(5);
Darren Tucker537f1ed2005-10-25 18:38:33 +10002232 exit(0);
2233}
2234 ]])],
2235 [
2236 llong_min=`$AWK '{print $1}' conftest.llminmax`
2237 llong_max=`$AWK '{print $2}' conftest.llminmax`
2238
Darren Tucker537f1ed2005-10-25 18:38:33 +10002239 AC_MSG_RESULT($llong_max)
2240 AC_DEFINE_UNQUOTED(LLONG_MAX, [${llong_max}LL],
2241 [max value of long long calculated by configure])
2242 AC_MSG_CHECKING([for min value of long long])
2243 AC_MSG_RESULT($llong_min)
2244 AC_DEFINE_UNQUOTED(LLONG_MIN, [${llong_min}LL],
2245 [min value of long long calculated by configure])
2246 ],
2247 [
2248 AC_MSG_RESULT(not found)
2249 ],
2250 [
2251 AC_MSG_WARN([cross compiling: not checking])
2252 ]
2253 )
2254fi
2255
2256
Damien Millera22ba012000-03-02 23:09:20 +11002257# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11002258AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
2259 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002260 [ #include <sys/types.h> ],
2261 [ u_int a; a = 1;],
Damien Millercaf6dd62000-08-29 11:33:50 +11002262 [ ac_cv_have_u_int="yes" ],
2263 [ ac_cv_have_u_int="no" ]
2264 )
2265])
2266if test "x$ac_cv_have_u_int" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002267 AC_DEFINE(HAVE_U_INT, 1, [define if you have u_int data type])
Damien Millercaf6dd62000-08-29 11:33:50 +11002268 have_u_int=1
2269fi
2270
Damien Miller61e50f12000-05-08 20:49:37 +10002271AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
2272 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002273 [ #include <sys/types.h> ],
2274 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002275 [ ac_cv_have_intxx_t="yes" ],
2276 [ ac_cv_have_intxx_t="no" ]
2277 )
2278])
2279if test "x$ac_cv_have_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002280 AC_DEFINE(HAVE_INTXX_T, 1, [define if you have intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002281 have_intxx_t=1
2282fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002283
2284if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002285 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002286then
2287 AC_MSG_CHECKING([for intXX_t types in stdint.h])
2288 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002289 [ #include <stdint.h> ],
2290 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002291 [
2292 AC_DEFINE(HAVE_INTXX_T)
2293 AC_MSG_RESULT(yes)
2294 ],
2295 [ AC_MSG_RESULT(no) ]
2296 )
2297fi
2298
Damien Miller578783e2000-09-23 14:12:24 +11002299AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
2300 AC_TRY_COMPILE(
Tim Rice907881e2002-07-18 11:44:50 -07002301 [
2302#include <sys/types.h>
2303#ifdef HAVE_STDINT_H
2304# include <stdint.h>
2305#endif
2306#include <sys/socket.h>
2307#ifdef HAVE_SYS_BITYPES_H
2308# include <sys/bitypes.h>
2309#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11002310 ],
2311 [ int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002312 [ ac_cv_have_int64_t="yes" ],
2313 [ ac_cv_have_int64_t="no" ]
2314 )
2315])
2316if test "x$ac_cv_have_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002317 AC_DEFINE(HAVE_INT64_T, 1, [define if you have int64_t data type])
Tim Rice4cec93f2002-02-26 08:40:48 -08002318fi
2319
Damien Miller61e50f12000-05-08 20:49:37 +10002320AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
2321 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002322 [ #include <sys/types.h> ],
2323 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002324 [ ac_cv_have_u_intxx_t="yes" ],
2325 [ ac_cv_have_u_intxx_t="no" ]
2326 )
2327])
2328if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002329 AC_DEFINE(HAVE_U_INTXX_T, 1, [define if you have u_intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002330 have_u_intxx_t=1
2331fi
Damien Millerc6398ef1999-11-20 12:18:40 +11002332
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002333if test -z "$have_u_intxx_t" ; then
2334 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
2335 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002336 [ #include <sys/socket.h> ],
2337 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002338 [
2339 AC_DEFINE(HAVE_U_INTXX_T)
2340 AC_MSG_RESULT(yes)
2341 ],
2342 [ AC_MSG_RESULT(no) ]
2343 )
2344fi
2345
Damien Miller578783e2000-09-23 14:12:24 +11002346AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
2347 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002348 [ #include <sys/types.h> ],
2349 [ u_int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002350 [ ac_cv_have_u_int64_t="yes" ],
2351 [ ac_cv_have_u_int64_t="no" ]
2352 )
2353])
2354if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002355 AC_DEFINE(HAVE_U_INT64_T, 1, [define if you have u_int64_t data type])
Damien Miller578783e2000-09-23 14:12:24 +11002356 have_u_int64_t=1
2357fi
2358
Tim Rice4cec93f2002-02-26 08:40:48 -08002359if test -z "$have_u_int64_t" ; then
2360 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
2361 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002362 [ #include <sys/bitypes.h> ],
Tim Rice4cec93f2002-02-26 08:40:48 -08002363 [ u_int64_t a; a = 1],
2364 [
2365 AC_DEFINE(HAVE_U_INT64_T)
2366 AC_MSG_RESULT(yes)
2367 ],
2368 [ AC_MSG_RESULT(no) ]
2369 )
2370fi
2371
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002372if test -z "$have_u_intxx_t" ; then
2373 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
2374 AC_TRY_COMPILE(
2375 [
2376#include <sys/types.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002377 ],
2378 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002379 [ ac_cv_have_uintxx_t="yes" ],
2380 [ ac_cv_have_uintxx_t="no" ]
2381 )
2382 ])
2383 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002384 AC_DEFINE(HAVE_UINTXX_T, 1,
2385 [define if you have uintxx_t data type])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002386 fi
2387fi
2388
2389if test -z "$have_uintxx_t" ; then
2390 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
2391 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002392 [ #include <stdint.h> ],
2393 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002394 [
2395 AC_DEFINE(HAVE_UINTXX_T)
2396 AC_MSG_RESULT(yes)
2397 ],
2398 [ AC_MSG_RESULT(no) ]
2399 )
2400fi
2401
Damien Milleredb82922000-06-20 13:25:52 +10002402if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002403 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11002404then
2405 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
2406 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +10002407 [
2408#include <sys/bitypes.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002409 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002410 [
Damien Miller70494d12000-04-03 15:57:06 +10002411 int8_t a; int16_t b; int32_t c;
2412 u_int8_t e; u_int16_t f; u_int32_t g;
2413 a = b = c = e = f = g = 1;
Damien Millera8e06ce2003-11-21 23:48:55 +11002414 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002415 [
2416 AC_DEFINE(HAVE_U_INTXX_T)
2417 AC_DEFINE(HAVE_INTXX_T)
2418 AC_MSG_RESULT(yes)
2419 ],
2420 [AC_MSG_RESULT(no)]
Damien Millera8e06ce2003-11-21 23:48:55 +11002421 )
Damien Millerb29ea912000-01-15 14:12:03 +11002422fi
2423
Damien Miller58be7382001-09-15 21:31:54 +10002424
2425AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
2426 AC_TRY_COMPILE(
2427 [
2428#include <sys/types.h>
2429 ],
2430 [ u_char foo; foo = 125; ],
2431 [ ac_cv_have_u_char="yes" ],
2432 [ ac_cv_have_u_char="no" ]
2433 )
2434])
2435if test "x$ac_cv_have_u_char" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002436 AC_DEFINE(HAVE_U_CHAR, 1, [define if you have u_char data type])
Damien Miller58be7382001-09-15 21:31:54 +10002437fi
2438
Tim Rice13aae5e2001-10-21 17:53:58 -07002439TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11002440
Tim Rice200a5c02002-02-26 22:12:34 -08002441AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
Tim Rice4cec93f2002-02-26 08:40:48 -08002442
Damien Miller848b9932005-02-24 12:12:34 +11002443AC_CHECK_TYPES(in_addr_t,,,
2444[#include <sys/types.h>
2445#include <netinet/in.h>])
Darren Tuckerd9f88912005-02-20 21:01:48 +11002446
Damien Miller61e50f12000-05-08 20:49:37 +10002447AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
2448 AC_TRY_COMPILE(
2449 [
2450#include <sys/types.h>
2451 ],
2452 [ size_t foo; foo = 1235; ],
2453 [ ac_cv_have_size_t="yes" ],
2454 [ ac_cv_have_size_t="no" ]
2455 )
2456])
2457if test "x$ac_cv_have_size_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002458 AC_DEFINE(HAVE_SIZE_T, 1, [define if you have size_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002459fi
Damien Miller95058511999-12-29 10:36:45 +11002460
Damien Miller615f9392000-05-17 22:53:33 +10002461AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
2462 AC_TRY_COMPILE(
2463 [
2464#include <sys/types.h>
2465 ],
2466 [ ssize_t foo; foo = 1235; ],
2467 [ ac_cv_have_ssize_t="yes" ],
2468 [ ac_cv_have_ssize_t="no" ]
2469 )
2470])
2471if test "x$ac_cv_have_ssize_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002472 AC_DEFINE(HAVE_SSIZE_T, 1, [define if you have ssize_t data type])
Damien Miller615f9392000-05-17 22:53:33 +10002473fi
2474
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002475AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
2476 AC_TRY_COMPILE(
2477 [
2478#include <time.h>
2479 ],
2480 [ clock_t foo; foo = 1235; ],
2481 [ ac_cv_have_clock_t="yes" ],
2482 [ ac_cv_have_clock_t="no" ]
2483 )
2484])
2485if test "x$ac_cv_have_clock_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002486 AC_DEFINE(HAVE_CLOCK_T, 1, [define if you have clock_t data type])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002487fi
2488
Damien Millerb54b40e2000-06-23 08:23:34 +10002489AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
2490 AC_TRY_COMPILE(
2491 [
2492#include <sys/types.h>
2493#include <sys/socket.h>
2494 ],
2495 [ sa_family_t foo; foo = 1235; ],
2496 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +11002497 [ AC_TRY_COMPILE(
2498 [
2499#include <sys/types.h>
2500#include <sys/socket.h>
2501#include <netinet/in.h>
2502 ],
2503 [ sa_family_t foo; foo = 1235; ],
2504 [ ac_cv_have_sa_family_t="yes" ],
2505
Damien Millerb54b40e2000-06-23 08:23:34 +10002506 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +11002507 )]
Damien Millerb54b40e2000-06-23 08:23:34 +10002508 )
2509])
2510if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002511 AC_DEFINE(HAVE_SA_FAMILY_T, 1,
2512 [define if you have sa_family_t data type])
Damien Millerb54b40e2000-06-23 08:23:34 +10002513fi
2514
Damien Miller0f91b4e2000-06-18 15:43:25 +10002515AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
2516 AC_TRY_COMPILE(
2517 [
2518#include <sys/types.h>
2519 ],
2520 [ pid_t foo; foo = 1235; ],
2521 [ ac_cv_have_pid_t="yes" ],
2522 [ ac_cv_have_pid_t="no" ]
2523 )
2524])
2525if test "x$ac_cv_have_pid_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002526 AC_DEFINE(HAVE_PID_T, 1, [define if you have pid_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002527fi
2528
2529AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
2530 AC_TRY_COMPILE(
2531 [
2532#include <sys/types.h>
2533 ],
2534 [ mode_t foo; foo = 1235; ],
2535 [ ac_cv_have_mode_t="yes" ],
2536 [ ac_cv_have_mode_t="no" ]
2537 )
2538])
2539if test "x$ac_cv_have_mode_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002540 AC_DEFINE(HAVE_MODE_T, 1, [define if you have mode_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002541fi
2542
Damien Miller61e50f12000-05-08 20:49:37 +10002543
2544AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
2545 AC_TRY_COMPILE(
2546 [
Damien Miller81171112000-04-23 11:14:01 +10002547#include <sys/types.h>
2548#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002549 ],
2550 [ struct sockaddr_storage s; ],
2551 [ ac_cv_have_struct_sockaddr_storage="yes" ],
2552 [ ac_cv_have_struct_sockaddr_storage="no" ]
2553 )
2554])
2555if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002556 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE, 1,
2557 [define if you have struct sockaddr_storage data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002558fi
Damien Miller34132e52000-01-14 15:45:46 +11002559
Damien Miller61e50f12000-05-08 20:49:37 +10002560AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
2561 AC_TRY_COMPILE(
2562 [
Damien Miller7b22d652000-06-18 14:07:04 +10002563#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002564#include <netinet/in.h>
2565 ],
2566 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
2567 [ ac_cv_have_struct_sockaddr_in6="yes" ],
2568 [ ac_cv_have_struct_sockaddr_in6="no" ]
2569 )
2570])
2571if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002572 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6, 1,
2573 [define if you have struct sockaddr_in6 data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002574fi
Damien Miller34132e52000-01-14 15:45:46 +11002575
Damien Miller61e50f12000-05-08 20:49:37 +10002576AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
2577 AC_TRY_COMPILE(
2578 [
Damien Miller7b22d652000-06-18 14:07:04 +10002579#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002580#include <netinet/in.h>
2581 ],
2582 [ struct in6_addr s; s.s6_addr[0] = 0; ],
2583 [ ac_cv_have_struct_in6_addr="yes" ],
2584 [ ac_cv_have_struct_in6_addr="no" ]
2585 )
2586])
2587if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002588 AC_DEFINE(HAVE_STRUCT_IN6_ADDR, 1,
2589 [define if you have struct in6_addr data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002590fi
Damien Miller34132e52000-01-14 15:45:46 +11002591
Damien Miller61e50f12000-05-08 20:49:37 +10002592AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
2593 AC_TRY_COMPILE(
2594 [
Damien Miller81171112000-04-23 11:14:01 +10002595#include <sys/types.h>
2596#include <sys/socket.h>
2597#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002598 ],
2599 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
2600 [ ac_cv_have_struct_addrinfo="yes" ],
2601 [ ac_cv_have_struct_addrinfo="no" ]
2602 )
2603])
2604if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002605 AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1,
2606 [define if you have struct addrinfo data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002607fi
2608
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002609AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
2610 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002611 [ #include <sys/time.h> ],
2612 [ struct timeval tv; tv.tv_sec = 1;],
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002613 [ ac_cv_have_struct_timeval="yes" ],
2614 [ ac_cv_have_struct_timeval="no" ]
2615 )
2616])
2617if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002618 AC_DEFINE(HAVE_STRUCT_TIMEVAL, 1, [define if you have struct timeval])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002619 have_struct_timeval=1
2620fi
2621
Tim Rice4e4dc562003-03-18 10:21:40 -08002622AC_CHECK_TYPES(struct timespec)
2623
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00002624# We need int64_t or else certian parts of the compile will fail.
Tim Rice8bb561b2005-03-17 16:23:19 -08002625if test "x$ac_cv_have_int64_t" = "xno" && \
2626 test "x$ac_cv_sizeof_long_int" != "x8" && \
2627 test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00002628 echo "OpenSSH requires int64_t support. Contact your vendor or install"
2629 echo "an alternative compiler (I.E., GCC) before continuing."
2630 echo ""
2631 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08002632else
2633dnl test snprintf (broken on SCO w/gcc)
Darren Tuckera0c2b392004-09-11 23:26:37 +10002634 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002635 [AC_LANG_SOURCE([[
Tim Ricebee3f222001-03-11 17:32:12 -08002636#include <stdio.h>
2637#include <string.h>
2638#ifdef HAVE_SNPRINTF
2639main()
2640{
2641 char buf[50];
2642 char expected_out[50];
2643 int mazsize = 50 ;
2644#if (SIZEOF_LONG_INT == 8)
2645 long int num = 0x7fffffffffffffff;
2646#else
Kevin Steves6482ec82001-07-15 02:09:28 +00002647 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08002648#endif
2649 strcpy(expected_out, "9223372036854775807");
2650 snprintf(buf, mazsize, "%lld", num);
2651 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11002652 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08002653 exit(0);
2654}
2655#else
2656main() { exit(0); }
2657#endif
Darren Tucker623d92f2004-09-12 22:36:15 +10002658 ]])], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],
Darren Tuckera0c2b392004-09-11 23:26:37 +10002659 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
Tim Ricebee3f222001-03-11 17:32:12 -08002660 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00002661fi
2662
Damien Miller78315eb2000-09-29 23:01:36 +11002663dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10002664OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
2665OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
2666OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
2667OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
2668OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10002669OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10002670OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
2671OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10002672OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10002673OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
2674OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
2675OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
2676OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00002677OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
2678OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
2679OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
2680OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Tim Rice13aae5e2001-10-21 17:53:58 -07002681
2682AC_CHECK_MEMBERS([struct stat.st_blksize])
Darren Tucker58e298d2005-11-25 13:14:58 +11002683AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE(__res_state, state,
2684 [Define if we don't have struct __res_state in resolv.h])],
2685[
2686#include <stdio.h>
2687#if HAVE_SYS_TYPES_H
2688# include <sys/types.h>
2689#endif
2690#include <netinet/in.h>
2691#include <arpa/nameser.h>
2692#include <resolv.h>
2693])
andre2ff7b5d2000-06-03 14:57:40 +00002694
Damien Miller61e50f12000-05-08 20:49:37 +10002695AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
2696 ac_cv_have_ss_family_in_struct_ss, [
2697 AC_TRY_COMPILE(
2698 [
Damien Miller81171112000-04-23 11:14:01 +10002699#include <sys/types.h>
2700#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002701 ],
2702 [ struct sockaddr_storage s; s.ss_family = 1; ],
2703 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
2704 [ ac_cv_have_ss_family_in_struct_ss="no" ],
2705 )
2706])
2707if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002708 AC_DEFINE(HAVE_SS_FAMILY_IN_SS, 1, [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10002709fi
2710
Damien Miller61e50f12000-05-08 20:49:37 +10002711AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
2712 ac_cv_have___ss_family_in_struct_ss, [
2713 AC_TRY_COMPILE(
2714 [
Damien Miller81171112000-04-23 11:14:01 +10002715#include <sys/types.h>
2716#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002717 ],
2718 [ struct sockaddr_storage s; s.__ss_family = 1; ],
2719 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
2720 [ ac_cv_have___ss_family_in_struct_ss="no" ]
2721 )
2722])
2723if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002724 AC_DEFINE(HAVE___SS_FAMILY_IN_SS, 1,
2725 [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10002726fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11002727
Damien Millerad833b32000-08-23 10:46:23 +10002728AC_CACHE_CHECK([for pw_class field in struct passwd],
2729 ac_cv_have_pw_class_in_struct_passwd, [
2730 AC_TRY_COMPILE(
2731 [
Damien Millerad833b32000-08-23 10:46:23 +10002732#include <pwd.h>
2733 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00002734 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10002735 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
2736 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
2737 )
2738])
2739if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002740 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD, 1,
2741 [Define if your password has a pw_class field])
Damien Millerad833b32000-08-23 10:46:23 +10002742fi
2743
Kevin Steves82456952001-06-22 21:14:18 +00002744AC_CACHE_CHECK([for pw_expire field in struct passwd],
2745 ac_cv_have_pw_expire_in_struct_passwd, [
2746 AC_TRY_COMPILE(
2747 [
2748#include <pwd.h>
2749 ],
2750 [ struct passwd p; p.pw_expire = 0; ],
2751 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
2752 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
2753 )
2754])
2755if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002756 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD, 1,
2757 [Define if your password has a pw_expire field])
Kevin Steves82456952001-06-22 21:14:18 +00002758fi
2759
2760AC_CACHE_CHECK([for pw_change field in struct passwd],
2761 ac_cv_have_pw_change_in_struct_passwd, [
2762 AC_TRY_COMPILE(
2763 [
2764#include <pwd.h>
2765 ],
2766 [ struct passwd p; p.pw_change = 0; ],
2767 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
2768 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
2769 )
2770])
2771if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002772 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD, 1,
2773 [Define if your password has a pw_change field])
Kevin Steves82456952001-06-22 21:14:18 +00002774fi
Damien Miller61e50f12000-05-08 20:49:37 +10002775
Tim Rice28bbb0c2002-05-27 17:37:32 -07002776dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00002777AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
2778 ac_cv_have_accrights_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10002779 AC_COMPILE_IFELSE(
Kevin Steves939c9db2002-03-22 17:23:25 +00002780 [
Tim Riceae49fe62002-04-12 10:26:21 -07002781#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00002782#include <sys/socket.h>
2783#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07002784int main() {
2785#ifdef msg_accrights
Darren Tuckera0c2b392004-09-11 23:26:37 +10002786#error "msg_accrights is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07002787exit(1);
2788#endif
2789struct msghdr m;
2790m.msg_accrights = 0;
2791exit(0);
2792}
Kevin Steves939c9db2002-03-22 17:23:25 +00002793 ],
Kevin Steves939c9db2002-03-22 17:23:25 +00002794 [ ac_cv_have_accrights_in_msghdr="yes" ],
2795 [ ac_cv_have_accrights_in_msghdr="no" ]
2796 )
2797])
2798if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002799 AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR, 1,
2800 [Define if your system uses access rights style
2801 file descriptor passing])
Kevin Steves939c9db2002-03-22 17:23:25 +00002802fi
2803
Kevin Stevesa44e0352002-04-07 16:18:03 +00002804AC_CACHE_CHECK([for msg_control field in struct msghdr],
2805 ac_cv_have_control_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10002806 AC_COMPILE_IFELSE(
Kevin Stevesa44e0352002-04-07 16:18:03 +00002807 [
Tim Riceae49fe62002-04-12 10:26:21 -07002808#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00002809#include <sys/socket.h>
2810#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07002811int main() {
2812#ifdef msg_control
Darren Tuckera0c2b392004-09-11 23:26:37 +10002813#error "msg_control is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07002814exit(1);
2815#endif
2816struct msghdr m;
2817m.msg_control = 0;
2818exit(0);
2819}
Kevin Stevesa44e0352002-04-07 16:18:03 +00002820 ],
Kevin Stevesa44e0352002-04-07 16:18:03 +00002821 [ ac_cv_have_control_in_msghdr="yes" ],
2822 [ ac_cv_have_control_in_msghdr="no" ]
2823 )
2824])
2825if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002826 AC_DEFINE(HAVE_CONTROL_IN_MSGHDR, 1,
2827 [Define if your system uses ancillary data style
2828 file descriptor passing])
Kevin Stevesa44e0352002-04-07 16:18:03 +00002829fi
2830
Damien Miller61e50f12000-05-08 20:49:37 +10002831AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002832 AC_TRY_LINK([],
2833 [ extern char *__progname; printf("%s", __progname); ],
Damien Miller61e50f12000-05-08 20:49:37 +10002834 [ ac_cv_libc_defines___progname="yes" ],
2835 [ ac_cv_libc_defines___progname="no" ]
2836 )
2837])
2838if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002839 AC_DEFINE(HAVE___PROGNAME, 1, [Define if libc defines __progname])
Damien Miller61e50f12000-05-08 20:49:37 +10002840fi
2841
Kevin Steves4846f4a2002-03-22 18:19:53 +00002842AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
2843 AC_TRY_LINK([
2844#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002845],
2846 [ printf("%s", __FUNCTION__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00002847 [ ac_cv_cc_implements___FUNCTION__="yes" ],
2848 [ ac_cv_cc_implements___FUNCTION__="no" ]
2849 )
2850])
2851if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002852 AC_DEFINE(HAVE___FUNCTION__, 1,
2853 [Define if compiler implements __FUNCTION__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00002854fi
2855
2856AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
2857 AC_TRY_LINK([
2858#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002859],
2860 [ printf("%s", __func__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00002861 [ ac_cv_cc_implements___func__="yes" ],
2862 [ ac_cv_cc_implements___func__="no" ]
2863 )
2864])
2865if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002866 AC_DEFINE(HAVE___func__, 1, [Define if compiler implements __func__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00002867fi
2868
Damien Miller57f39152005-11-24 19:58:19 +11002869AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [
2870 AC_TRY_LINK(
2871 [#include <stdarg.h>
2872 va_list x,y;],
2873 [va_copy(x,y);],
2874 [ ac_cv_have_va_copy="yes" ],
2875 [ ac_cv_have_va_copy="no" ]
2876 )
2877])
2878if test "x$ac_cv_have_va_copy" = "xyes" ; then
2879 AC_DEFINE(HAVE_VA_COPY, 1, [Define if va_copy exists])
2880fi
2881
2882AC_CACHE_CHECK([whether __va_copy exists], ac_cv_have___va_copy, [
2883 AC_TRY_LINK(
2884 [#include <stdarg.h>
2885 va_list x,y;],
2886 [__va_copy(x,y);],
2887 [ ac_cv_have___va_copy="yes" ],
2888 [ ac_cv_have___va_copy="no" ]
2889 )
2890])
2891if test "x$ac_cv_have___va_copy" = "xyes" ; then
2892 AC_DEFINE(HAVE___VA_COPY, 1, [Define if __va_copy exists])
2893fi
2894
Damien Miller4f8e6692001-07-14 13:22:53 +10002895AC_CACHE_CHECK([whether getopt has optreset support],
2896 ac_cv_have_getopt_optreset, [
2897 AC_TRY_LINK(
2898 [
2899#include <getopt.h>
2900 ],
2901 [ extern int optreset; optreset = 0; ],
2902 [ ac_cv_have_getopt_optreset="yes" ],
2903 [ ac_cv_have_getopt_optreset="no" ]
2904 )
2905])
2906if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002907 AC_DEFINE(HAVE_GETOPT_OPTRESET, 1,
2908 [Define if your getopt(3) defines and uses optreset])
Damien Miller4f8e6692001-07-14 13:22:53 +10002909fi
Damien Millera22ba012000-03-02 23:09:20 +11002910
Damien Millerecbb26d2000-07-15 14:59:14 +10002911AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002912 AC_TRY_LINK([],
2913 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
Damien Millerecbb26d2000-07-15 14:59:14 +10002914 [ ac_cv_libc_defines_sys_errlist="yes" ],
2915 [ ac_cv_libc_defines_sys_errlist="no" ]
2916 )
2917])
2918if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002919 AC_DEFINE(HAVE_SYS_ERRLIST, 1,
2920 [Define if your system defines sys_errlist[]])
Damien Millerecbb26d2000-07-15 14:59:14 +10002921fi
2922
2923
Damien Miller11fa2cc2000-08-16 10:35:58 +10002924AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002925 AC_TRY_LINK([],
2926 [ extern int sys_nerr; printf("%i", sys_nerr);],
Damien Miller11fa2cc2000-08-16 10:35:58 +10002927 [ ac_cv_libc_defines_sys_nerr="yes" ],
2928 [ ac_cv_libc_defines_sys_nerr="no" ]
2929 )
2930])
2931if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002932 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if your system defines sys_nerr])
Damien Miller11fa2cc2000-08-16 10:35:58 +10002933fi
2934
Damien Millera8e06ce2003-11-21 23:48:55 +11002935SCARD_MSG="no"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002936# Check whether user wants sectok support
2937AC_ARG_WITH(sectok,
2938 [ --with-sectok Enable smartcard support using libsectok],
Damien Miller85de5802001-09-18 14:01:11 +10002939 [
2940 if test "x$withval" != "xno" ; then
2941 if test "x$withval" != "xyes" ; then
2942 CPPFLAGS="$CPPFLAGS -I${withval}"
2943 LDFLAGS="$LDFLAGS -L${withval}"
2944 if test ! -z "$need_dash_r" ; then
2945 LDFLAGS="$LDFLAGS -R${withval}"
2946 fi
2947 if test ! -z "$blibpath" ; then
2948 blibpath="$blibpath:${withval}"
2949 fi
2950 fi
2951 AC_CHECK_HEADERS(sectok.h)
2952 if test "$ac_cv_header_sectok_h" != yes; then
2953 AC_MSG_ERROR(Can't find sectok.h)
2954 fi
2955 AC_CHECK_LIB(sectok, sectok_open)
2956 if test "$ac_cv_lib_sectok_sectok_open" != yes; then
2957 AC_MSG_ERROR(Can't find libsectok)
2958 fi
Tim Rice7df8d392005-09-19 09:33:39 -07002959 AC_DEFINE(SMARTCARD, 1,
2960 [Define if you want smartcard support])
2961 AC_DEFINE(USE_SECTOK, 1,
2962 [Define if you want smartcard support
2963 using sectok])
Damien Millera8e06ce2003-11-21 23:48:55 +11002964 SCARD_MSG="yes, using sectok"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002965 fi
2966 ]
2967)
2968
2969# Check whether user wants OpenSC support
Tim Rice12ee8e22005-03-17 13:37:04 -08002970OPENSC_CONFIG="no"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002971AC_ARG_WITH(opensc,
Darren Tucker82171c62005-09-22 20:19:54 +10002972 [ --with-opensc[[=PFX]] Enable smartcard support using OpenSC (optionally in PATH)],
Tim Rice12ee8e22005-03-17 13:37:04 -08002973 [
2974 if test "x$withval" != "xno" ; then
2975 if test "x$withval" != "xyes" ; then
2976 OPENSC_CONFIG=$withval/bin/opensc-config
2977 else
2978 AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no)
2979 fi
2980 if test "$OPENSC_CONFIG" != "no"; then
2981 LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags`
2982 LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs`
2983 CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS"
2984 LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS"
2985 AC_DEFINE(SMARTCARD)
Tim Rice7df8d392005-09-19 09:33:39 -07002986 AC_DEFINE(USE_OPENSC, 1,
2987 [Define if you want smartcard support
2988 using OpenSC])
Tim Rice12ee8e22005-03-17 13:37:04 -08002989 SCARD_MSG="yes, using OpenSC"
2990 fi
2991 fi
2992 ]
2993)
Damien Miller85de5802001-09-18 14:01:11 +10002994
Darren Tucker5f88d342003-10-15 16:57:57 +10002995# Check libraries needed by DNS fingerprint support
Damien Millera8e06ce2003-11-21 23:48:55 +11002996AC_SEARCH_LIBS(getrrsetbyname, resolv,
Tim Rice7df8d392005-09-19 09:33:39 -07002997 [AC_DEFINE(HAVE_GETRRSETBYNAME, 1,
2998 [Define if getrrsetbyname() exists])],
Damien Miller7abe09b2003-05-15 10:53:49 +10002999 [
Darren Tucker5f88d342003-10-15 16:57:57 +10003000 # Needed by our getrrsetbyname()
3001 AC_SEARCH_LIBS(res_query, resolv)
3002 AC_SEARCH_LIBS(dn_expand, resolv)
Darren Tucker8e968a52004-05-13 11:56:16 +10003003 AC_MSG_CHECKING(if res_query will link)
3004 AC_TRY_LINK_FUNC(res_query, AC_MSG_RESULT(yes),
3005 [AC_MSG_RESULT(no)
3006 saved_LIBS="$LIBS"
3007 LIBS="$LIBS -lresolv"
3008 AC_MSG_CHECKING(for res_query in -lresolv)
3009 AC_LINK_IFELSE([
3010#include <resolv.h>
3011int main()
3012{
3013 res_query (0, 0, 0, 0, 0);
3014 return 0;
3015}
3016 ],
3017 [LIBS="$LIBS -lresolv"
3018 AC_MSG_RESULT(yes)],
3019 [LIBS="$saved_LIBS"
3020 AC_MSG_RESULT(no)])
3021 ])
Darren Tucker5f88d342003-10-15 16:57:57 +10003022 AC_CHECK_FUNCS(_getshort _getlong)
Darren Tuckerd886e1c2005-06-01 18:57:45 +10003023 AC_CHECK_DECLS([_getshort, _getlong], , ,
Tim Ricefcc7ff12005-06-02 20:28:29 -07003024 [#include <sys/types.h>
3025 #include <arpa/nameser.h>])
Darren Tucker5f88d342003-10-15 16:57:57 +10003026 AC_CHECK_MEMBER(HEADER.ad,
Tim Rice7df8d392005-09-19 09:33:39 -07003027 [AC_DEFINE(HAVE_HEADER_AD, 1,
3028 [Define if HEADER.ad exists in arpa/nameser.h])],,
Darren Tucker5f88d342003-10-15 16:57:57 +10003029 [#include <arpa/nameser.h>])
3030 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10003031
Damien Miller73b42d22006-04-22 21:26:08 +10003032# Check whether user wants SELinux support
3033SELINUX_MSG="no"
3034LIBSELINUX=""
3035AC_ARG_WITH(selinux,
3036 [ --with-selinux Enable SELinux support],
3037 [ if test "x$withval" != "xno" ; then
3038 AC_DEFINE(WITH_SELINUX,1,[Define if you want SELinux support.])
3039 SELINUX_MSG="yes"
3040 AC_CHECK_HEADER([selinux/selinux.h], ,
3041 AC_MSG_ERROR(SELinux support requires selinux.h header))
3042 AC_CHECK_LIB(selinux, setexeccon, [ LIBSELINUX="-lselinux" ],
3043 AC_MSG_ERROR(SELinux support requires libselinux library))
3044 AC_CHECK_FUNCS(getseuserbyname get_default_context_with_level)
3045 fi ]
3046)
3047AC_SUBST(LIBSELINUX)
3048
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003049# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11003050KRB5_MSG="no"
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003051AC_ARG_WITH(kerberos5,
Damien Millera8e06ce2003-11-21 23:48:55 +11003052 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11003053 [ if test "x$withval" != "xno" ; then
3054 if test "x$withval" = "xyes" ; then
3055 KRB5ROOT="/usr/local"
3056 else
3057 KRB5ROOT=${withval}
3058 fi
3059
Tim Rice7df8d392005-09-19 09:33:39 -07003060 AC_DEFINE(KRB5, 1, [Define if you want Kerberos 5 support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11003061 KRB5_MSG="yes"
3062
3063 AC_MSG_CHECKING(for krb5-config)
3064 if test -x $KRB5ROOT/bin/krb5-config ; then
3065 KRB5CONF=$KRB5ROOT/bin/krb5-config
3066 AC_MSG_RESULT($KRB5CONF)
3067
3068 AC_MSG_CHECKING(for gssapi support)
3069 if $KRB5CONF | grep gssapi >/dev/null ; then
3070 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003071 AC_DEFINE(GSSAPI, 1,
3072 [Define this if you want GSSAPI
3073 support in the version 2 protocol])
Darren Tucker0d27ed12004-02-24 10:37:33 +11003074 k5confopts=gssapi
Damien Millera8e06ce2003-11-21 23:48:55 +11003075 else
Darren Tucker1d3ca582004-01-22 12:05:34 +11003076 AC_MSG_RESULT(no)
Darren Tucker0d27ed12004-02-24 10:37:33 +11003077 k5confopts=""
Damien Millera8e06ce2003-11-21 23:48:55 +11003078 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11003079 K5CFLAGS="`$KRB5CONF --cflags $k5confopts`"
3080 K5LIBS="`$KRB5CONF --libs $k5confopts`"
Darren Tucker1d3ca582004-01-22 12:05:34 +11003081 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11003082 AC_MSG_CHECKING(whether we are using Heimdal)
3083 AC_TRY_COMPILE([ #include <krb5.h> ],
3084 [ char *tmp = heimdal_version; ],
3085 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003086 AC_DEFINE(HEIMDAL, 1,
3087 [Define this if you are using the
3088 Heimdal version of Kerberos V5]) ],
Darren Tucker1d3ca582004-01-22 12:05:34 +11003089 AC_MSG_RESULT(no)
3090 )
3091 else
3092 AC_MSG_RESULT(no)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003093 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11003094 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Damien Millera8e06ce2003-11-21 23:48:55 +11003095 AC_MSG_CHECKING(whether we are using Heimdal)
3096 AC_TRY_COMPILE([ #include <krb5.h> ],
3097 [ char *tmp = heimdal_version; ],
3098 [ AC_MSG_RESULT(yes)
3099 AC_DEFINE(HEIMDAL)
Damien Miller5561e0b2004-04-20 20:28:55 +10003100 K5LIBS="-lkrb5 -ldes"
3101 K5LIBS="$K5LIBS -lcom_err -lasn1"
Tim Riceeae17cc2005-03-17 16:52:20 -08003102 AC_CHECK_LIB(roken, net_write,
Damien Miller5561e0b2004-04-20 20:28:55 +10003103 [K5LIBS="$K5LIBS -lroken"])
Damien Millera8e06ce2003-11-21 23:48:55 +11003104 ],
3105 [ AC_MSG_RESULT(no)
3106 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
3107 ]
3108 )
Damien Miller200d0a72003-06-30 19:21:36 +10003109 AC_SEARCH_LIBS(dn_expand, resolv)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003110
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003111 AC_CHECK_LIB(gssapi,gss_init_sec_context,
3112 [ AC_DEFINE(GSSAPI)
3113 K5LIBS="-lgssapi $K5LIBS" ],
3114 [ AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context,
3115 [ AC_DEFINE(GSSAPI)
Damien Millera8e06ce2003-11-21 23:48:55 +11003116 K5LIBS="-lgssapi_krb5 $K5LIBS" ],
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003117 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
3118 $K5LIBS)
3119 ],
3120 $K5LIBS)
Tim Riceeae17cc2005-03-17 16:52:20 -08003121
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003122 AC_CHECK_HEADER(gssapi.h, ,
3123 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11003124 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003125 AC_CHECK_HEADERS(gssapi.h, ,
3126 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11003127 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003128 ]
3129 )
3130
3131 oldCPP="$CPPFLAGS"
3132 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
3133 AC_CHECK_HEADER(gssapi_krb5.h, ,
3134 [ CPPFLAGS="$oldCPP" ])
3135
Damien Millera8e06ce2003-11-21 23:48:55 +11003136 fi
Darren Tucker1d3ca582004-01-22 12:05:34 +11003137 if test ! -z "$need_dash_r" ; then
3138 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
3139 fi
3140 if test ! -z "$blibpath" ; then
3141 blibpath="$blibpath:${KRB5ROOT}/lib"
3142 fi
Tim Ricefd9e9e32005-09-12 17:36:10 -07003143
3144 AC_CHECK_HEADERS(gssapi.h gssapi/gssapi.h)
3145 AC_CHECK_HEADERS(gssapi_krb5.h gssapi/gssapi_krb5.h)
3146 AC_CHECK_HEADERS(gssapi_generic.h gssapi/gssapi_generic.h)
3147
3148 LIBS="$LIBS $K5LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07003149 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS, 1,
3150 [Define this if you want to use libkafs' AFS support]))
Darren Tucker0d27ed12004-02-24 10:37:33 +11003151 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11003152 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003153)
Damien Millerc79bc0d2001-03-28 13:03:42 +10003154
Damien Millera22ba012000-03-02 23:09:20 +11003155# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11003156
Damien Millerf58c6722002-05-13 13:15:42 +10003157PRIVSEP_PATH=/var/empty
3158AC_ARG_WITH(privsep-path,
Tim Ricecbb90662002-07-08 19:17:10 -07003159 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10003160 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003161 if test -n "$withval" && test "x$withval" != "xno" && \
3162 test "x${withval}" != "xyes"; then
Damien Millerf58c6722002-05-13 13:15:42 +10003163 PRIVSEP_PATH=$withval
3164 fi
3165 ]
3166)
3167AC_SUBST(PRIVSEP_PATH)
3168
Damien Millera22ba012000-03-02 23:09:20 +11003169AC_ARG_WITH(xauth,
3170 [ --with-xauth=PATH Specify path to xauth program ],
3171 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003172 if test -n "$withval" && test "x$withval" != "xno" && \
3173 test "x${withval}" != "xyes"; then
Damien Miller7b22d652000-06-18 14:07:04 +10003174 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11003175 fi
3176 ],
3177 [
Tim Ricee22be3b2002-07-17 19:20:07 -07003178 TestPath="$PATH"
3179 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
3180 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
3181 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
3182 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
3183 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
Damien Milleredb82922000-06-20 13:25:52 +10003184 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11003185 xauth_path="/usr/openwin/bin/xauth"
3186 fi
3187 ]
3188)
3189
Damien Miller7d901272003-01-13 16:55:22 +11003190STRIP_OPT=-s
3191AC_ARG_ENABLE(strip,
3192 [ --disable-strip Disable calling strip(1) on install],
3193 [
3194 if test "x$enableval" = "xno" ; then
3195 STRIP_OPT=
3196 fi
3197 ]
3198)
3199AC_SUBST(STRIP_OPT)
3200
Damien Millera19cf472000-11-29 13:28:50 +11003201if test -z "$xauth_path" ; then
3202 XAUTH_PATH="undefined"
3203 AC_SUBST(XAUTH_PATH)
3204else
Tim Rice7df8d392005-09-19 09:33:39 -07003205 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path",
3206 [Define if xauth is found in your path])
Damien Millera19cf472000-11-29 13:28:50 +11003207 XAUTH_PATH=$xauth_path
3208 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11003209fi
Damien Millera22ba012000-03-02 23:09:20 +11003210
3211# Check for mail directory (last resort if we cannot get it from headers)
3212if test ! -z "$MAIL" ; then
3213 maildir=`dirname $MAIL`
Tim Rice7df8d392005-09-19 09:33:39 -07003214 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir",
3215 [Set this to your mail directory if you don't have maillock.h])
Damien Millera22ba012000-03-02 23:09:20 +11003216fi
3217
Darren Tucker623d92f2004-09-12 22:36:15 +10003218if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10003219 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
3220 disable_ptmx_check=yes
3221fi
Damien Millera22ba012000-03-02 23:09:20 +11003222if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003223 if test "x$disable_ptmx_check" != "xyes" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11003224 AC_CHECK_FILE("/dev/ptmx",
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003225 [
Tim Rice7df8d392005-09-19 09:33:39 -07003226 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX, 1,
3227 [Define if you have /dev/ptmx])
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003228 have_dev_ptmx=1
3229 ]
3230 )
3231 fi
Damien Millera22ba012000-03-02 23:09:20 +11003232fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10003233
Darren Tucker623d92f2004-09-12 22:36:15 +10003234if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10003235 AC_CHECK_FILE("/dev/ptc",
3236 [
Tim Rice7df8d392005-09-19 09:33:39 -07003237 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC, 1,
3238 [Define if you have /dev/ptc])
Darren Tuckera0c2b392004-09-11 23:26:37 +10003239 have_dev_ptc=1
3240 ]
3241 )
3242else
3243 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
3244fi
Damien Miller204ad072000-03-02 23:56:12 +11003245
Damien Millera22ba012000-03-02 23:09:20 +11003246# Options from here on. Some of these are preset by platform above
Ben Lindstrom9841b0a2001-06-09 02:26:58 +00003247AC_ARG_WITH(mantype,
Damien Miller897741e2001-04-16 10:41:46 +10003248 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11003249 [
Damien Miller897741e2001-04-16 10:41:46 +10003250 case "$withval" in
3251 man|cat|doc)
3252 MANTYPE=$withval
3253 ;;
3254 *)
3255 AC_MSG_ERROR(invalid man type: $withval)
3256 ;;
3257 esac
Damien Miller670a4b82000-01-22 13:53:11 +11003258 ]
3259)
Ben Lindstrombc709922001-04-18 18:04:21 +00003260if test -z "$MANTYPE"; then
Tim Ricee22be3b2002-07-17 19:20:07 -07003261 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
3262 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
Ben Lindstrombc709922001-04-18 18:04:21 +00003263 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
3264 MANTYPE=doc
3265 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
3266 MANTYPE=man
3267 else
3268 MANTYPE=cat
3269 fi
3270fi
Damien Miller670a4b82000-01-22 13:53:11 +11003271AC_SUBST(MANTYPE)
Ben Lindstrombc709922001-04-18 18:04:21 +00003272if test "$MANTYPE" = "doc"; then
3273 mansubdir=man;
3274else
3275 mansubdir=$MANTYPE;
3276fi
3277AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11003278
Damien Millera22ba012000-03-02 23:09:20 +11003279# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11003280MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11003281AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003282 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11003283 [
Damien Millerb85dcad2000-03-11 11:37:00 +11003284 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003285 AC_DEFINE(HAVE_MD5_PASSWORDS, 1,
3286 [Define if you want to allow MD5 passwords])
Damien Millera8e06ce2003-11-21 23:48:55 +11003287 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11003288 fi
3289 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003290)
3291
Damien Millera22ba012000-03-02 23:09:20 +11003292# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11003293AC_ARG_WITH(shadow,
3294 [ --without-shadow Disable shadow password support],
3295 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003296 if test "x$withval" = "xno" ; then
Damien Miller76112de1999-12-21 11:18:08 +11003297 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10003298 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11003299 fi
3300 ]
3301)
3302
Damien Miller1f335fb2000-06-26 11:31:33 +10003303if test -z "$disable_shadow" ; then
3304 AC_MSG_CHECKING([if the systems has expire shadow information])
3305 AC_TRY_COMPILE(
3306 [
3307#include <sys/types.h>
3308#include <shadow.h>
3309 struct spwd sp;
3310 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
3311 [ sp_expire_available=yes ], []
3312 )
3313
3314 if test "x$sp_expire_available" = "xyes" ; then
3315 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003316 AC_DEFINE(HAS_SHADOW_EXPIRE, 1,
3317 [Define if you want to use shadow password expire field])
Damien Miller1f335fb2000-06-26 11:31:33 +10003318 else
3319 AC_MSG_RESULT(no)
3320 fi
3321fi
3322
Damien Millera22ba012000-03-02 23:09:20 +11003323# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11003324if test ! -z "$IPADDR_IN_DISPLAY" ; then
3325 DISPLAY_HACK_MSG="yes"
Tim Rice7df8d392005-09-19 09:33:39 -07003326 AC_DEFINE(IPADDR_IN_DISPLAY, 1,
3327 [Define if you need to use IP address
3328 instead of hostname in $DISPLAY])
Damien Miller9a947342000-08-30 10:03:33 +11003329else
Damien Millera8e06ce2003-11-21 23:48:55 +11003330 DISPLAY_HACK_MSG="no"
Damien Miller9a947342000-08-30 10:03:33 +11003331 AC_ARG_WITH(ipaddr-display,
3332 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
3333 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003334 if test "x$withval" != "xno" ; then
Damien Miller9a947342000-08-30 10:03:33 +11003335 AC_DEFINE(IPADDR_IN_DISPLAY)
Damien Millera8e06ce2003-11-21 23:48:55 +11003336 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11003337 fi
3338 ]
3339 )
3340fi
Damien Miller76112de1999-12-21 11:18:08 +11003341
Darren Tuckere1a790d2003-09-16 11:52:19 +10003342# check for /etc/default/login and use it if present.
Tim Rice7ff4e6d2003-09-22 19:50:14 -07003343AC_ARG_ENABLE(etc-default-login,
Darren Tucker1b6f2292005-02-11 16:11:49 +11003344 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
Darren Tucker2f9573d2005-02-10 22:28:54 +11003345 [ if test "x$enableval" = "xno"; then
3346 AC_MSG_NOTICE([/etc/default/login handling disabled])
3347 etc_default_login=no
3348 else
3349 etc_default_login=yes
3350 fi ],
Darren Tucker314d89e2005-10-17 23:29:23 +10003351 [ if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
3352 then
3353 AC_MSG_WARN([cross compiling: not checking /etc/default/login])
3354 etc_default_login=no
3355 else
3356 etc_default_login=yes
3357 fi ]
Darren Tucker2f9573d2005-02-10 22:28:54 +11003358)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003359
Darren Tucker2f9573d2005-02-10 22:28:54 +11003360if test "x$etc_default_login" != "xno"; then
3361 AC_CHECK_FILE("/etc/default/login",
3362 [ external_path_file=/etc/default/login ])
Darren Tucker314d89e2005-10-17 23:29:23 +10003363 if test "x$external_path_file" = "x/etc/default/login"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003364 AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN, 1,
3365 [Define if your system has /etc/default/login])
Darren Tuckera0c2b392004-09-11 23:26:37 +10003366 fi
Darren Tucker2f9573d2005-02-10 22:28:54 +11003367fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003368
Tim Rice43a1c132002-04-17 21:19:14 -07003369dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
Tim Rice8bb561b2005-03-17 16:23:19 -08003370if test $ac_cv_func_login_getcapbool = "yes" && \
3371 test $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003372 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07003373fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003374
Damien Millera22ba012000-03-02 23:09:20 +11003375# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11003376SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11003377AC_ARG_WITH(default-path,
Damien Millerf71d2a52002-05-13 15:14:08 +10003378 [ --with-default-path= Specify default \$PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11003379 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10003380 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07003381 AC_MSG_WARN([
3382--with-default-path=PATH has no effect on this system.
3383Edit /etc/login.conf instead.])
Tim Riceeae17cc2005-03-17 16:52:20 -08003384 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07003385 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003386 AC_MSG_WARN([
3387--with-default-path=PATH will only be used if PATH is not defined in
3388$external_path_file .])
3389 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003390 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11003391 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11003392 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003393 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10003394 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
3395 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07003396 else
Tim Riceb925b4b2003-09-15 22:40:49 -07003397 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003398 AC_MSG_WARN([
3399If PATH is defined in $external_path_file, ensure the path to scp is included,
3400otherwise scp will not work.])
3401 fi
Darren Tucker314d89e2005-10-17 23:29:23 +10003402 AC_RUN_IFELSE(
3403 [AC_LANG_SOURCE([[
Tim Rice59ea0a02001-03-10 13:50:45 -08003404/* find out what STDPATH is */
3405#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08003406#ifdef HAVE_PATHS_H
3407# include <paths.h>
3408#endif
3409#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08003410# ifdef _PATH_USERPATH /* Irix */
3411# define _PATH_STDPATH _PATH_USERPATH
3412# else
3413# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
3414# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08003415#endif
3416#include <sys/types.h>
3417#include <sys/stat.h>
3418#include <fcntl.h>
3419#define DATA "conftest.stdpath"
3420
3421main()
3422{
3423 FILE *fd;
3424 int rc;
Tim Riceeae17cc2005-03-17 16:52:20 -08003425
Tim Rice59ea0a02001-03-10 13:50:45 -08003426 fd = fopen(DATA,"w");
3427 if(fd == NULL)
3428 exit(1);
Tim Riceeae17cc2005-03-17 16:52:20 -08003429
Tim Rice59ea0a02001-03-10 13:50:45 -08003430 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
3431 exit(1);
3432
3433 exit(0);
3434}
Darren Tucker314d89e2005-10-17 23:29:23 +10003435 ]])],
3436 [ user_path=`cat conftest.stdpath` ],
Tim Rice59ea0a02001-03-10 13:50:45 -08003437 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
3438 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
3439 )
3440# make sure $bindir is in USER_PATH so scp will work
3441 t_bindir=`eval echo ${bindir}`
3442 case $t_bindir in
3443 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
3444 esac
3445 case $t_bindir in
3446 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
3447 esac
3448 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
3449 if test $? -ne 0 ; then
3450 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
3451 if test $? -ne 0 ; then
3452 user_path=$user_path:$t_bindir
3453 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
3454 fi
3455 fi
Tim Rice43a1c132002-04-17 21:19:14 -07003456 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11003457)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003458if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003459 AC_DEFINE_UNQUOTED(USER_PATH, "$user_path", [Specify default $PATH])
Tim Rice43a1c132002-04-17 21:19:14 -07003460 AC_SUBST(user_path)
3461fi
Damien Miller5a3e6831999-12-27 09:48:56 +11003462
Damien Millera18bbd32002-05-13 10:48:57 +10003463# Set superuser path separately to user path
Damien Millera18bbd32002-05-13 10:48:57 +10003464AC_ARG_WITH(superuser-path,
3465 [ --with-superuser-path= Specify different path for super-user],
3466 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003467 if test -n "$withval" && test "x$withval" != "xno" && \
3468 test "x${withval}" != "xyes"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003469 AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval",
3470 [Define if you want a different $PATH
3471 for the superuser])
Damien Millera18bbd32002-05-13 10:48:57 +10003472 superuser_path=$withval
3473 fi
3474 ]
3475)
3476
3477
Damien Miller61e50f12000-05-08 20:49:37 +10003478AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11003479IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11003480AC_ARG_WITH(4in6,
3481 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
3482 [
3483 if test "x$withval" != "xno" ; then
3484 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003485 AC_DEFINE(IPV4_IN_IPV6, 1,
3486 [Detect IPv4 in IPv6 mapped addresses
3487 and treat as IPv4])
Damien Millera8e06ce2003-11-21 23:48:55 +11003488 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003489 else
3490 AC_MSG_RESULT(no)
3491 fi
3492 ],[
3493 if test "x$inet6_default_4in6" = "xyes"; then
3494 AC_MSG_RESULT([yes (default)])
3495 AC_DEFINE(IPV4_IN_IPV6)
Damien Millera8e06ce2003-11-21 23:48:55 +11003496 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003497 else
3498 AC_MSG_RESULT([no (default)])
3499 fi
3500 ]
3501)
3502
Damien Miller60396b02001-02-18 17:01:00 +11003503# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11003504BSD_AUTH_MSG=no
Damien Miller60396b02001-02-18 17:01:00 +11003505AC_ARG_WITH(bsd-auth,
3506 [ --with-bsd-auth Enable BSD auth support],
3507 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003508 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003509 AC_DEFINE(BSD_AUTH, 1,
3510 [Define if you have BSD auth support])
Damien Miller6c21c512002-01-22 21:57:53 +11003511 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11003512 fi
3513 ]
3514)
3515
Damien Millera22ba012000-03-02 23:09:20 +11003516# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11003517piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11003518# make sure the directory exists
Tim Riceeae17cc2005-03-17 16:52:20 -08003519if test ! -d $piddir ; then
Damien Miller78315eb2000-09-29 23:01:36 +11003520 piddir=`eval echo ${sysconfdir}`
3521 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11003522 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11003523 esac
3524fi
3525
Tim Rice88f2ab52002-03-17 12:17:34 -08003526AC_ARG_WITH(pid-dir,
3527 [ --with-pid-dir=PATH Specify location of ssh.pid file],
3528 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003529 if test -n "$withval" && test "x$withval" != "xno" && \
3530 test "x${withval}" != "xyes"; then
Tim Rice88f2ab52002-03-17 12:17:34 -08003531 piddir=$withval
Tim Riceeae17cc2005-03-17 16:52:20 -08003532 if test ! -d $piddir ; then
Tim Rice88f2ab52002-03-17 12:17:34 -08003533 AC_MSG_WARN([** no $piddir directory on this system **])
3534 fi
3535 fi
3536 ]
3537)
3538
Tim Rice7df8d392005-09-19 09:33:39 -07003539AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir", [Specify location of ssh.pid])
Damien Millerb13c73e2000-01-17 22:02:17 +11003540AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11003541
andre2ff7b5d2000-06-03 14:57:40 +00003542dnl allow user to disable some login recording features
3543AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00003544 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003545 [
3546 if test "x$enableval" = "xno" ; then
3547 AC_DEFINE(DISABLE_LASTLOG)
3548 fi
3549 ]
andre2ff7b5d2000-06-03 14:57:40 +00003550)
3551AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00003552 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003553 [
3554 if test "x$enableval" = "xno" ; then
3555 AC_DEFINE(DISABLE_UTMP)
3556 fi
3557 ]
andre2ff7b5d2000-06-03 14:57:40 +00003558)
3559AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00003560 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003561 [
3562 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003563 AC_DEFINE(DISABLE_UTMPX, 1,
3564 [Define if you don't want to use utmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003565 fi
3566 ]
andre2ff7b5d2000-06-03 14:57:40 +00003567)
3568AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00003569 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003570 [
3571 if test "x$enableval" = "xno" ; then
3572 AC_DEFINE(DISABLE_WTMP)
3573 fi
3574 ]
andre2ff7b5d2000-06-03 14:57:40 +00003575)
3576AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00003577 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003578 [
3579 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003580 AC_DEFINE(DISABLE_WTMPX, 1,
3581 [Define if you don't want to use wtmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003582 fi
3583 ]
andre2ff7b5d2000-06-03 14:57:40 +00003584)
3585AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00003586 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003587 [
3588 if test "x$enableval" = "xno" ; then
3589 AC_DEFINE(DISABLE_LOGIN)
3590 fi
3591 ]
andre2ff7b5d2000-06-03 14:57:40 +00003592)
3593AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00003594 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003595 [
3596 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003597 AC_DEFINE(DISABLE_PUTUTLINE, 1,
3598 [Define if you don't want to use pututline()
3599 etc. to write [uw]tmp])
Darren Tuckera3020db2003-06-28 12:54:33 +10003600 fi
3601 ]
andre2ff7b5d2000-06-03 14:57:40 +00003602)
3603AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00003604 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003605 [
3606 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003607 AC_DEFINE(DISABLE_PUTUTXLINE, 1,
3608 [Define if you don't want to use pututxline()
3609 etc. to write [uw]tmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003610 fi
3611 ]
andre2ff7b5d2000-06-03 14:57:40 +00003612)
3613AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00003614 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11003615 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003616 if test "x$withval" = "xno" ; then
Damien Miller709528a2001-01-31 09:57:55 +11003617 AC_DEFINE(DISABLE_LASTLOG)
Tim Rice35cc69d2005-03-17 16:44:25 -08003618 elif test -n "$withval" && test "x${withval}" != "xyes"; then
Damien Miller709528a2001-01-31 09:57:55 +11003619 conf_lastlog_location=$withval
3620 fi
3621 ]
3622)
andre2ff7b5d2000-06-03 14:57:40 +00003623
3624dnl lastlog, [uw]tmpx? detection
3625dnl NOTE: set the paths in the platform section to avoid the
3626dnl need for command-line parameters
3627dnl lastlog and [uw]tmp are subject to a file search if all else fails
3628
3629dnl lastlog detection
3630dnl NOTE: the code itself will detect if lastlog is a directory
3631AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
3632AC_TRY_COMPILE([
3633#include <sys/types.h>
3634#include <utmp.h>
3635#ifdef HAVE_LASTLOG_H
3636# include <lastlog.h>
3637#endif
Damien Miller2994e082000-06-04 15:51:47 +10003638#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003639# include <paths.h>
3640#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003641#ifdef HAVE_LOGIN_H
3642# include <login.h>
3643#endif
andre2ff7b5d2000-06-03 14:57:40 +00003644 ],
3645 [ char *lastlog = LASTLOG_FILE; ],
3646 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10003647 [
3648 AC_MSG_RESULT(no)
3649 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
3650 AC_TRY_COMPILE([
3651#include <sys/types.h>
3652#include <utmp.h>
3653#ifdef HAVE_LASTLOG_H
3654# include <lastlog.h>
3655#endif
3656#ifdef HAVE_PATHS_H
3657# include <paths.h>
3658#endif
3659 ],
3660 [ char *lastlog = _PATH_LASTLOG; ],
3661 [ AC_MSG_RESULT(yes) ],
3662 [
andree441aa32000-06-12 22:34:38 +00003663 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10003664 system_lastlog_path=no
3665 ])
3666 ]
andre2ff7b5d2000-06-03 14:57:40 +00003667)
Damien Miller2994e082000-06-04 15:51:47 +10003668
andre2ff7b5d2000-06-03 14:57:40 +00003669if test -z "$conf_lastlog_location"; then
3670 if test x"$system_lastlog_path" = x"no" ; then
3671 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10003672 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00003673 conf_lastlog_location=$f
3674 fi
3675 done
3676 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00003677 AC_MSG_WARN([** Cannot find lastlog **])
3678 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00003679 fi
3680 fi
3681fi
3682
3683if test -n "$conf_lastlog_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003684 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location",
3685 [Define if you want to specify the path to your lastlog file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003686fi
andre2ff7b5d2000-06-03 14:57:40 +00003687
3688dnl utmp detection
3689AC_MSG_CHECKING([if your system defines UTMP_FILE])
3690AC_TRY_COMPILE([
3691#include <sys/types.h>
3692#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10003693#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003694# include <paths.h>
3695#endif
3696 ],
3697 [ char *utmp = UTMP_FILE; ],
3698 [ AC_MSG_RESULT(yes) ],
3699 [ AC_MSG_RESULT(no)
3700 system_utmp_path=no ]
3701)
3702if test -z "$conf_utmp_location"; then
3703 if test x"$system_utmp_path" = x"no" ; then
3704 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
3705 if test -f $f ; then
3706 conf_utmp_location=$f
3707 fi
3708 done
3709 if test -z "$conf_utmp_location"; then
3710 AC_DEFINE(DISABLE_UTMP)
3711 fi
3712 fi
3713fi
3714if test -n "$conf_utmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003715 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location",
3716 [Define if you want to specify the path to your utmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003717fi
andre2ff7b5d2000-06-03 14:57:40 +00003718
3719dnl wtmp detection
3720AC_MSG_CHECKING([if your system defines WTMP_FILE])
3721AC_TRY_COMPILE([
3722#include <sys/types.h>
3723#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10003724#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003725# include <paths.h>
3726#endif
3727 ],
3728 [ char *wtmp = WTMP_FILE; ],
3729 [ AC_MSG_RESULT(yes) ],
3730 [ AC_MSG_RESULT(no)
3731 system_wtmp_path=no ]
3732)
3733if test -z "$conf_wtmp_location"; then
3734 if test x"$system_wtmp_path" = x"no" ; then
3735 for f in /usr/adm/wtmp /var/log/wtmp; do
3736 if test -f $f ; then
3737 conf_wtmp_location=$f
3738 fi
3739 done
3740 if test -z "$conf_wtmp_location"; then
3741 AC_DEFINE(DISABLE_WTMP)
3742 fi
3743 fi
3744fi
3745if test -n "$conf_wtmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003746 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location",
3747 [Define if you want to specify the path to your wtmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003748fi
andre2ff7b5d2000-06-03 14:57:40 +00003749
3750
3751dnl utmpx detection - I don't know any system so perverse as to require
3752dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
3753dnl there, though.
3754AC_MSG_CHECKING([if your system defines UTMPX_FILE])
3755AC_TRY_COMPILE([
3756#include <sys/types.h>
3757#include <utmp.h>
3758#ifdef HAVE_UTMPX_H
3759#include <utmpx.h>
3760#endif
Damien Miller2994e082000-06-04 15:51:47 +10003761#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003762# include <paths.h>
3763#endif
3764 ],
3765 [ char *utmpx = UTMPX_FILE; ],
3766 [ AC_MSG_RESULT(yes) ],
3767 [ AC_MSG_RESULT(no)
3768 system_utmpx_path=no ]
3769)
3770if test -z "$conf_utmpx_location"; then
3771 if test x"$system_utmpx_path" = x"no" ; then
3772 AC_DEFINE(DISABLE_UTMPX)
3773 fi
3774else
Tim Rice7df8d392005-09-19 09:33:39 -07003775 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location",
3776 [Define if you want to specify the path to your utmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003777fi
andre2ff7b5d2000-06-03 14:57:40 +00003778
3779dnl wtmpx detection
3780AC_MSG_CHECKING([if your system defines WTMPX_FILE])
3781AC_TRY_COMPILE([
3782#include <sys/types.h>
3783#include <utmp.h>
3784#ifdef HAVE_UTMPX_H
3785#include <utmpx.h>
3786#endif
Damien Miller2994e082000-06-04 15:51:47 +10003787#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003788# include <paths.h>
3789#endif
3790 ],
3791 [ char *wtmpx = WTMPX_FILE; ],
3792 [ AC_MSG_RESULT(yes) ],
3793 [ AC_MSG_RESULT(no)
3794 system_wtmpx_path=no ]
3795)
3796if test -z "$conf_wtmpx_location"; then
3797 if test x"$system_wtmpx_path" = x"no" ; then
3798 AC_DEFINE(DISABLE_WTMPX)
3799 fi
3800else
Tim Rice7df8d392005-09-19 09:33:39 -07003801 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location",
3802 [Define if you want to specify the path to your wtmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003803fi
andre2ff7b5d2000-06-03 14:57:40 +00003804
Damien Miller4018c192000-04-30 09:30:44 +10003805
Damien Miller29ea30d2000-03-17 10:54:15 +11003806if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10003807 LDFLAGS="$LDFLAGS $blibflags$blibpath"
3808 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11003809fi
3810
Tim Rice4cec93f2002-02-26 08:40:48 -08003811dnl remove pam and dl because they are in $LIBPAM
3812if test "$PAM_MSG" = yes ; then
Tim Rice7d2d1f12002-02-26 22:05:11 -08003813 LIBS=`echo $LIBS | sed 's/-lpam //'`
3814fi
3815if test "$ac_cv_lib_pam_pam_set_item" = yes ; then
3816 LIBS=`echo $LIBS | sed 's/-ldl //'`
Tim Rice4cec93f2002-02-26 08:40:48 -08003817fi
3818
Darren Tucker7da23cb2005-08-03 00:20:15 +10003819dnl Adding -Werror to CFLAGS early prevents configure tests from running.
3820dnl Add now.
3821CFLAGS="$CFLAGS $werror_flags"
3822
Damien Millerbac2d8a2000-09-05 16:13:06 +11003823AC_EXEEXT
Darren Tucker72c025d2005-01-18 12:05:18 +11003824AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openbsd-compat/Makefile \
Darren Tucker4881c372006-02-19 22:50:20 +11003825 openbsd-compat/regress/Makefile scard/Makefile ssh_prng_cmds survey.sh])
Tim Rice13aae5e2001-10-21 17:53:58 -07003826AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10003827
Damien Miller7b22d652000-06-18 14:07:04 +10003828# Print summary of options
3829
Damien Miller7b22d652000-06-18 14:07:04 +10003830# Someone please show me a better way :)
3831A=`eval echo ${prefix}` ; A=`eval echo ${A}`
3832B=`eval echo ${bindir}` ; B=`eval echo ${B}`
3833C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
3834D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00003835E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00003836F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10003837G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10003838H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
3839I=`eval echo ${user_path}` ; I=`eval echo ${I}`
3840J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10003841
3842echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00003843echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10003844echo " User binaries: $B"
3845echo " System binaries: $C"
3846echo " Configuration files: $D"
3847echo " Askpass program: $E"
3848echo " Manual pages: $F"
3849echo " PID file: $G"
3850echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10003851if test "x$external_path_file" = "x/etc/login.conf" ; then
3852echo " At runtime, sshd will use the path defined in $external_path_file"
3853echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07003854else
Damien Millerf58c6722002-05-13 13:15:42 +10003855echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07003856 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003857echo " (If PATH is set in $external_path_file it will be used instead. If"
3858echo " used, ensure the path to scp is present, otherwise scp will not work.)"
3859 fi
Tim Rice43a1c132002-04-17 21:19:14 -07003860fi
Damien Millera18bbd32002-05-13 10:48:57 +10003861if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10003862echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10003863fi
Damien Millerf58c6722002-05-13 13:15:42 +10003864echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10003865echo " PAM support: $PAM_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003866echo " KerberosV support: $KRB5_MSG"
Damien Miller73b42d22006-04-22 21:26:08 +10003867echo " SELinux support: $SELINUX_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003868echo " Smartcard support: $SCARD_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003869echo " S/KEY support: $SKEY_MSG"
3870echo " TCP Wrappers support: $TCPW_MSG"
3871echo " MD5 password support: $MD5_MSG"
Darren Tucker16bcc1c2004-11-07 20:14:34 +11003872echo " libedit support: $LIBEDIT_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10003873echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003874echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
3875echo " BSD Auth support: $BSD_AUTH_MSG"
3876echo " Random number source: $RAND_MSG"
Damien Miller6c21c512002-01-22 21:57:53 +11003877if test ! -z "$USE_RAND_HELPER" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10003878echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
Damien Miller60396b02001-02-18 17:01:00 +11003879fi
3880
Damien Miller7b22d652000-06-18 14:07:04 +10003881echo ""
3882
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00003883echo " Host: ${host}"
3884echo " Compiler: ${CC}"
3885echo " Compiler flags: ${CFLAGS}"
3886echo "Preprocessor flags: ${CPPFLAGS}"
3887echo " Linker flags: ${LDFLAGS}"
Tim Rice4cec93f2002-02-26 08:40:48 -08003888echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}"
Damien Miller7b22d652000-06-18 14:07:04 +10003889
3890echo ""
3891
Tim Rice6f1f7582004-05-30 21:38:51 -07003892if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
Darren Tuckercf59d312004-08-29 21:18:09 +10003893 echo "SVR4 style packages are supported with \"make package\""
3894 echo ""
Tim Rice6f1f7582004-05-30 21:38:51 -07003895fi
3896
Damien Miller82cf0ce2000-12-20 13:34:48 +11003897if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11003898 echo "PAM is enabled. You may need to install a PAM control file "
3899 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11003900 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11003901 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11003902 echo ""
3903fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003904
Damien Miller6c21c512002-01-22 21:57:53 +11003905if test ! -z "$RAND_HELPER_CMDHASH" ; then
3906 echo "WARNING: you are using the builtin random number collection "
3907 echo "service. Please read WARNING.RNG and request that your OS "
3908 echo "vendor includes kernel-based random number collection in "
3909 echo "future versions of your OS."
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003910 echo ""
3911fi
Damien Miller60396b02001-02-18 17:01:00 +11003912
Damien Millerb4097182004-05-23 14:09:40 +10003913if test ! -z "$NO_PEERCHECK" ; then
3914 echo "WARNING: the operating system that you are using does not "
3915 echo "appear to support either the getpeereid() API nor the "
3916 echo "SO_PEERCRED getsockopt() option. These facilities are used to "
3917 echo "enforce security checks to prevent unauthorised connections to "
3918 echo "ssh-agent. Their absence increases the risk that a malicious "
3919 echo "user can connect to your agent. "
3920 echo ""
3921fi
3922
Darren Tuckerd9f88912005-02-20 21:01:48 +11003923if test "$AUDIT_MODULE" = "bsm" ; then
3924 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
3925 echo "See the Solaris section in README.platform for details."
3926fi