blob: 226730f3ecb36f1ca63d61dcbfdd29ce72564ac9 [file] [log] [blame]
Tim Rice7df8d392005-09-19 09:33:39 -07001# $Id: configure.ac,v 1.294 2005/09/19 16:33:39 tim 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)
Tim Rice13aae5e2001-10-21 17:53:58 -070018AC_CONFIG_SRCDIR([ssh.c])
Damien Miller7f6ea021999-10-28 13:25:17 +100019
20AC_CONFIG_HEADER(config.h)
Damien Miller856799b2000-03-15 21:18:10 +110021AC_PROG_CC
Damien Miller76112de1999-12-21 11:18:08 +110022AC_CANONICAL_HOST
Damien Miller4df5c762001-02-28 08:14:22 +110023AC_C_BIGENDIAN
Damien Miller7f6ea021999-10-28 13:25:17 +100024
Damien Millera22ba012000-03-02 23:09:20 +110025# Checks for programs.
Darren Tucker167bd9c2003-09-07 12:34:54 +100026AC_PROG_AWK
Damien Millerab18c411999-11-11 10:40:23 +110027AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +100028AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110029AC_PROG_INSTALL
Ben Lindstrom582d3982001-02-06 22:54:30 +000030AC_PATH_PROG(AR, ar)
Tim Rice5af9db92004-06-19 19:31:06 -070031AC_PATH_PROG(CAT, cat)
32AC_PATH_PROG(KILL, kill)
Tim Riceb8fbb8e2001-04-21 14:31:52 -070033AC_PATH_PROGS(PERL, perl5 perl)
Tim Riced0d7a8b2003-01-08 17:22:59 -080034AC_PATH_PROG(SED, sed)
Damien Millere79334a1999-12-29 10:03:37 +110035AC_SUBST(PERL)
Damien Miller8d1fd572000-05-17 21:34:07 +100036AC_PATH_PROG(ENT, ent)
37AC_SUBST(ENT)
Damien Miller4864e8f2001-02-08 10:07:08 +110038AC_PATH_PROG(TEST_MINUS_S_SH, bash)
39AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
40AC_PATH_PROG(TEST_MINUS_S_SH, sh)
Tim Rice0502a472002-05-08 16:04:14 -070041AC_PATH_PROG(SH, sh)
Tim Ricef7ba8f62004-06-20 10:37:32 -070042AC_SUBST(TEST_SHELL,sh)
Damien Miller2e1b0821999-12-25 10:11:29 +110043
Tim Rice6f1f7582004-05-30 21:38:51 -070044dnl for buildpkg.sh
45AC_PATH_PROG(PATH_GROUPADD_PROG, groupadd, groupadd,
46 [/usr/sbin${PATH_SEPARATOR}/etc])
47AC_PATH_PROG(PATH_USERADD_PROG, useradd, useradd,
48 [/usr/sbin${PATH_SEPARATOR}/etc])
49AC_CHECK_PROG(MAKE_PACKAGE_SUPPORTED, pkgmk, yes, no)
50
Damien Millere8bb4502001-09-25 16:39:35 +100051# System features
52AC_SYS_LARGEFILE
53
Damien Miller3f62aba2000-11-29 11:56:35 +110054if test -z "$AR" ; then
55 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
56fi
57
Damien Millerad833b32000-08-23 10:46:23 +100058# Use LOGIN_PROGRAM from environment if possible
59if test ! -z "$LOGIN_PROGRAM" ; then
Tim Rice7df8d392005-09-19 09:33:39 -070060 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM",
61 [If your header files don't define LOGIN_PROGRAM,
62 then use this (detected) from environment and PATH])
Damien Millerad833b32000-08-23 10:46:23 +100063else
64 # Search for login
65 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
66 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
67 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
68 fi
69fi
70
Darren Tucker23bc8d02004-02-06 16:24:31 +110071AC_PATH_PROG(PATH_PASSWD_PROG, passwd)
72if test ! -z "$PATH_PASSWD_PROG" ; then
Tim Rice7df8d392005-09-19 09:33:39 -070073 AC_DEFINE_UNQUOTED(_PATH_PASSWD_PROG, "$PATH_PASSWD_PROG",
74 [Full path of your "passwd" program])
Darren Tucker23bc8d02004-02-06 16:24:31 +110075fi
76
Damien Miller166bd442000-03-16 10:48:25 +110077if test -z "$LD" ; then
78 LD=$CC
79fi
80AC_SUBST(LD)
Tim Riceeae17cc2005-03-17 16:52:20 -080081
Damien Miller166bd442000-03-16 10:48:25 +110082AC_C_INLINE
Darren Tucker67b37032005-06-03 17:58:31 +100083
84AC_CHECK_DECL(LLONG_MAX, have_llong_max=1, , [#include <limits.h>])
85
Damien Millera8e06ce2003-11-21 23:48:55 +110086if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
Darren Tuckerdd352b62005-08-02 17:21:29 +100087 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wuninitialized"
Tim Rice3db1e3f2005-08-23 17:11:26 -070088 GCC_VER=`$CC --version`
89 case $GCC_VER in
90 1.*) ;;
91 2.8* | 2.9*) CFLAGS="$CFLAGS -Wsign-compare" ;;
92 2.*) ;;
93 *) CFLAGS="$CFLAGS -Wsign-compare" ;;
94 esac
Damien Millerde3cb0a2005-05-26 20:48:25 +100095
Darren Tucker67b37032005-06-03 17:58:31 +100096 if test -z "$have_llong_max"; then
97 # retry LLONG_MAX with -std=gnu99, needed on some Linuxes
98 unset ac_cv_have_decl_LLONG_MAX
99 saved_CFLAGS="$CFLAGS"
100 CFLAGS="$CFLAGS -std=gnu99"
101 AC_CHECK_DECL(LLONG_MAX,
102 [have_llong_max=1],
103 [CFLAGS="$saved_CFLAGS"],
104 [#include <limits.h>]
105 )
106 fi
Damien Miller166bd442000-03-16 10:48:25 +1100107fi
108
Darren Tucker431f0222005-06-07 17:53:40 +1000109if test -z "$have_llong_max"; then
110 AC_MSG_CHECKING([for max value of long long])
111 AC_RUN_IFELSE(
112 [AC_LANG_SOURCE([[
113#include <stdio.h>
114/* Why is this so damn hard? */
115#ifdef __GNUC__
116# undef __GNUC__
117#endif
118#define __USE_ISOC99
119#include <limits.h>
120#define DATA "conftest.llminmax"
121int main(void) {
122 FILE *f;
123 long long i, llmin, llmax = 0;
124
125 if((f = fopen(DATA,"w")) == NULL)
126 exit(1);
127
128#if defined(LLONG_MIN) && defined(LLONG_MAX)
129 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
130 llmin = LLONG_MIN;
131 llmax = LLONG_MAX;
132#else
133 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n");
134 /* This will work on one's complement and two's complement */
135 for (i = 1; i > llmax; i <<= 1, i++)
136 llmax = i;
137 llmin = llmax + 1LL; /* wrap */
138#endif
139
140 /* Sanity check */
141 if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
142 || llmax - 1 > llmax) {
143 fprintf(f, "unknown unknown\n");
144 exit(2);
145 }
146
147 if (fprintf(f ,"%lld %lld", llmin, llmax) < 0)
148 exit(3);
149
150 exit(0);
151}
152 ]])],
153 [
154 llong_min=`$AWK '{print $1}' conftest.llminmax`
155 llong_max=`$AWK '{print $2}' conftest.llminmax`
156 AC_MSG_RESULT($llong_max)
157 AC_DEFINE_UNQUOTED(LLONG_MAX, [${llong_max}LL],
158 [max value of long long calculated by configure])
159 AC_MSG_CHECKING([for min value of long long])
160 AC_MSG_RESULT($llong_min)
161 AC_DEFINE_UNQUOTED(LLONG_MIN, [${llong_min}LL],
162 [min value of long long calculated by configure])
163 ],
164 [
165 AC_MSG_RESULT(not found)
166 ],
167 [
168 AC_MSG_WARN([cross compiling: not checking])
169 ]
170 )
171fi
172
Tim Rice88368a32003-12-08 12:35:59 -0800173AC_ARG_WITH(rpath,
174 [ --without-rpath Disable auto-added -R linker paths],
175 [
Tim Riceeae17cc2005-03-17 16:52:20 -0800176 if test "x$withval" = "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800177 need_dash_r=""
178 fi
179 if test "x$withval" = "xyes" ; then
180 need_dash_r=1
181 fi
182 ]
183)
184
Damien Millera22ba012000-03-02 23:09:20 +1100185# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +1100186case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +1100187*-*-aix*)
Damien Millera8e06ce2003-11-21 23:48:55 +1100188 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
Damien Millereab4bae2003-04-29 23:22:40 +1000189 if (test -z "$blibpath"); then
Tim Ricefcb62202004-01-23 18:35:16 -0800190 blibpath="/usr/lib:/lib"
Damien Miller29ea30d2000-03-17 10:54:15 +1100191 fi
Damien Millereab4bae2003-04-29 23:22:40 +1000192 saved_LDFLAGS="$LDFLAGS"
193 for tryflags in -blibpath: -Wl,-blibpath: -Wl,-rpath, ;do
194 if (test -z "$blibflags"); then
195 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
196 AC_TRY_LINK([], [], [blibflags=$tryflags])
197 fi
198 done
199 if (test -z "$blibflags"); then
200 AC_MSG_RESULT(not found)
201 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
202 else
203 AC_MSG_RESULT($blibflags)
204 fi
205 LDFLAGS="$saved_LDFLAGS"
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000206 dnl Check for authenticate. Might be in libs.a on older AIXes
Tim Rice7df8d392005-09-19 09:33:39 -0700207 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE, 1,
208 [Define if you want to enable AIX4's authenticate function])],
Tim Ricee958ed32002-07-05 07:12:33 -0700209 [AC_CHECK_LIB(s,authenticate,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000210 [ AC_DEFINE(WITH_AIXAUTHENTICATE)
Tim Ricee958ed32002-07-05 07:12:33 -0700211 LIBS="$LIBS -ls"
212 ])
213 ])
Darren Tucker3c774c52005-02-16 22:49:31 +1100214 dnl Check for various auth function declarations in headers.
Darren Tucker04cfbe02005-02-20 23:27:11 +1100215 AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
Darren Tuckere66519d2005-03-21 22:46:34 +1100216 passwdexpired, setauthdb], , , [#include <usersec.h>])
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000217 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
Darren Tucker3c774c52005-02-16 22:49:31 +1100218 AC_CHECK_DECLS(loginfailed,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000219 [AC_MSG_CHECKING(if loginfailed takes 4 arguments)
220 AC_TRY_COMPILE(
Darren Tuckera0c0b632003-07-08 20:52:12 +1000221 [#include <usersec.h>],
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000222 [(void)loginfailed("user","host","tty",0);],
223 [AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -0700224 AC_DEFINE(AIX_LOGINFAILED_4ARG, 1,
225 [Define if your AIX loginfailed() function
226 takes 4 arguments (AIX >= 5.2)])],
Darren Tuckera0c0b632003-07-08 20:52:12 +1000227 [AC_MSG_RESULT(no)]
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000228 )],
229 [],
230 [#include <usersec.h>]
231 )
Darren Tuckerfc3454e2003-07-14 16:41:55 +1000232 AC_CHECK_FUNCS(setauthdb)
Darren Tucker691d5232005-02-15 21:45:57 +1100233 check_for_aix_broken_getaddrinfo=1
Tim Rice7df8d392005-09-19 09:33:39 -0700234 AC_DEFINE(BROKEN_REALPATH, 1, [Define if you have a broken realpath.])
235 AC_DEFINE(SETEUID_BREAKS_SETUID, 1,
236 [Define if your platform breaks doing a seteuid before a setuid])
237 AC_DEFINE(BROKEN_SETREUID, 1, [Define if your setreuid() is broken])
238 AC_DEFINE(BROKEN_SETREGID, 1, [Define if your setregid() is broken])
andre60f3c982000-06-03 16:18:19 +0000239 dnl AIX handles lastlog as part of its login message
Tim Rice7df8d392005-09-19 09:33:39 -0700240 AC_DEFINE(DISABLE_LASTLOG, 1, [Define if you don't want to use lastlog])
241 AC_DEFINE(LOGIN_NEEDS_UTMPX, 1,
242 [Some systems need a utmpx entry for /bin/login to work])
243 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV,
244 [Define to a Set Process Title type if your system is
245 supported by bsd-setproctitle.c])
Damien Miller75b1d102000-01-07 14:01:41 +1100246 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100247*-*-cygwin*)
Damien Millerc8936ac2003-02-11 10:04:03 +1100248 check_for_libcrypt_later=1
Tim Ricefe1d1002001-11-26 17:19:43 -0800249 LIBS="$LIBS /usr/lib/textmode.o"
Tim Rice7df8d392005-09-19 09:33:39 -0700250 AC_DEFINE(HAVE_CYGWIN, 1, [Define if you are on Cygwin])
251 AC_DEFINE(USE_PIPES, 1, [Use PIPES instead of a socketpair()])
252 AC_DEFINE(DISABLE_SHADOW, 1,
253 [Define if you want to disable shadow passwords])
254 AC_DEFINE(IP_TOS_IS_BROKEN, 1,
255 [Define if your system choked on IP TOS setting])
256 AC_DEFINE(NO_X11_UNIX_SOCKETS, 1,
257 [Define if X11 doesn't support AF_UNIX sockets on that system])
258 AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT, 1,
259 [Define if the concept of ports only accessible to
260 superusers isn't known])
261 AC_DEFINE(DISABLE_FD_PASSING, 1,
262 [Define if your platform needs to skip post auth
263 file descriptor passing])
Damien Millerbac2d8a2000-09-05 16:13:06 +1100264 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000265*-*-dgux*)
266 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker454da0b2003-12-18 12:52:19 +1100267 AC_DEFINE(SETEUID_BREAKS_SETUID)
268 AC_DEFINE(BROKEN_SETREUID)
269 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom58055132001-02-15 18:34:29 +0000270 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000271*-*-darwin*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000272 AC_MSG_CHECKING(if we have working getaddrinfo)
273 AC_TRY_RUN([#include <mach-o/dyld.h>
274main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
275 exit(0);
276 else
277 exit(1);
278}], [AC_MSG_RESULT(working)],
279 [AC_MSG_RESULT(buggy)
Tim Rice7df8d392005-09-19 09:33:39 -0700280 AC_DEFINE(BROKEN_GETADDRINFO, 1, [getaddrinfo is broken (if present)])],
Tim Rice480ef8d2003-09-21 21:38:11 -0700281 [AC_MSG_RESULT(assume it is working)])
Darren Tucker20379a32003-09-22 11:07:40 +1000282 AC_DEFINE(SETEUID_BREAKS_SETUID)
283 AC_DEFINE(BROKEN_SETREUID)
284 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700285 AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1,
286 [Define if your resolver libs need this for getrrsetbyname])
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000287 ;;
Darren Tuckerfd333282005-05-28 18:31:42 +1000288*-*-hpux*)
289 # first we define all of the options common to all HP-UX releases
Kevin Steves315f8b72001-06-28 00:24:41 +0000290 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100291 IPADDR_IN_DISPLAY=yes
Damien Millerb0785672000-08-23 09:10:39 +1000292 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700293 AC_DEFINE(LOGIN_NO_ENDOPT, 1,
294 [Define if your login program cannot handle end of options ("--")])
Kevin Steves5feaaef2002-04-23 20:45:55 +0000295 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700296 AC_DEFINE(LOCKED_PASSWD_STRING, "*",
297 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000298 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Tim Ricef028f1e2002-07-19 12:41:10 -0700299 LIBS="$LIBS -lsec"
Darren Tuckerfd333282005-05-28 18:31:42 +1000300 AC_CHECK_LIB(xnet, t_error, ,
301 AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
302
303 # next, we define all of the options specific to major releases
304 case "$host" in
305 *-*-hpux10*)
306 if test -z "$GCC"; then
307 CFLAGS="$CFLAGS -Ae"
308 fi
309 ;;
310 *-*-hpux11*)
Tim Rice7df8d392005-09-19 09:33:39 -0700311 AC_DEFINE(PAM_SUN_CODEBASE, 1,
312 [Define if you are using Solaris-derived PAM which
313 passes pam_messages to the conversation function
314 with an extra level of indirection])
315 AC_DEFINE(DISABLE_UTMP, 1,
316 [Define if you don't want to use utmp])
Darren Tuckerfd333282005-05-28 18:31:42 +1000317 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
318 check_for_hpux_broken_getaddrinfo=1
319 check_for_conflicting_getspnam=1
320 ;;
321 esac
322
323 # lastly, we define options specific to minor releases
324 case "$host" in
325 *-*-hpux10.26)
Tim Rice7df8d392005-09-19 09:33:39 -0700326 AC_DEFINE(HAVE_SECUREWARE, 1,
327 [Define if you have SecureWare-based
328 protected password database])
Darren Tuckerfd333282005-05-28 18:31:42 +1000329 disable_ptmx_check=yes
330 LIBS="$LIBS -lsecpw"
331 ;;
332 esac
Damien Miller1bead332000-04-30 00:47:29 +1000333 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100334*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100335 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700336 AC_DEFINE(BROKEN_INET_NTOA, 1,
337 [Define if you system's inet_ntoa is busted
338 (e.g. Irix gcc issue)])
Darren Tuckerbeaf6792003-09-24 20:03:48 +1000339 AC_DEFINE(SETEUID_BREAKS_SETUID)
340 AC_DEFINE(BROKEN_SETREUID)
341 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700342 AC_DEFINE(WITH_ABBREV_NO_TTY, 1,
343 [Define if you shouldn't strip 'tty' from your
344 ttyname in [uw]tmp])
Darren Tuckere41bba52003-08-25 11:51:19 +1000345 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller1808f382000-01-06 12:03:12 +1100346 ;;
347*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100348 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700349 AC_DEFINE(WITH_IRIX_ARRAY, 1,
350 [Define if you have/want arrays
351 (cluster-wide session managment, not C arrays)])
352 AC_DEFINE(WITH_IRIX_PROJECT, 1,
353 [Define if you want IRIX project management])
354 AC_DEFINE(WITH_IRIX_AUDIT, 1,
355 [Define if you want IRIX audit trails])
356 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS, 1,
357 [Define if you want IRIX kernel jobs])])
Damien Miller11fa2cc2000-08-16 10:35:58 +1000358 AC_DEFINE(BROKEN_INET_NTOA)
Darren Tuckerbe79af12003-09-22 11:58:21 +1000359 AC_DEFINE(SETEUID_BREAKS_SETUID)
360 AC_DEFINE(BROKEN_SETREUID)
361 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700362 AC_DEFINE(BROKEN_UPDWTMPX, 1, [updwtmpx is broken (if present)])
Damien Millerf1b9d112002-04-23 23:09:19 +1000363 AC_DEFINE(WITH_ABBREV_NO_TTY)
Darren Tuckere41bba52003-08-25 11:51:19 +1000364 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Millerbeb4ba51999-12-28 15:09:35 +1100365 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100366*-*-linux*)
367 no_dev_ptmx=1
Damien Millera64b57a2001-01-17 10:44:13 +1100368 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000369 check_for_openpty_ctty_bug=1
Tim Rice7df8d392005-09-19 09:33:39 -0700370 AC_DEFINE(DONT_TRY_OTHER_AF, 1, [Workaround more Linux IPv6 quirks])
371 AC_DEFINE(PAM_TTY_KLUDGE, 1,
372 [Work around problematic Linux PAM modules handling of PAM_TTY])
373 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!",
374 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000375 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
Tim Rice7df8d392005-09-19 09:33:39 -0700376 AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM,
377 [Define to whatever link() returns for "not supported"
378 if it doesn't return EOPNOTSUPP.])
Darren Tucker2fba9932005-02-02 23:30:24 +1100379 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
Tim Rice7df8d392005-09-19 09:33:39 -0700380 AC_DEFINE(USE_BTMP)
Damien Miller7bcb0892000-03-11 20:45:40 +1100381 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000382 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000383 1.*|2.0.*)
Tim Rice7df8d392005-09-19 09:33:39 -0700384 AC_DEFINE(BROKEN_CMSG_TYPE, 1,
385 [Define if cmsg_type is not passed correctly])
Darren Tucker3c016542003-05-02 20:48:21 +1000386 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000387 esac
Damien Millerb29ea912000-01-15 14:12:03 +1100388 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000389mips-sony-bsd|mips-sony-newsos4)
Tim Rice7df8d392005-09-19 09:33:39 -0700390 AC_DEFINE(NEED_SETPRGP, 1, [Need setpgrp to acquire controlling tty])
Ben Lindstromb5628642000-10-18 00:02:25 +0000391 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000392 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100393*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000394 check_for_libcrypt_before=1
Tim Riceeae17cc2005-03-17 16:52:20 -0800395 if test "x$withval" != "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800396 need_dash_r=1
397 fi
Damien Milleree1c0b32000-01-21 00:18:15 +1100398 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100399*-*-freebsd*)
400 check_for_libcrypt_later=1
401 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000402*-*-bsdi*)
403 AC_DEFINE(SETEUID_BREAKS_SETUID)
404 AC_DEFINE(BROKEN_SETREUID)
405 AC_DEFINE(BROKEN_SETREGID)
406 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000407*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000408 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100409 conf_utmp_location=/etc/utmp
410 conf_wtmp_location=/usr/adm/wtmp
411 MAIL=/usr/spool/mail
Tim Rice7df8d392005-09-19 09:33:39 -0700412 AC_DEFINE(HAVE_NEXT, 1, [Define if you are on NeXT])
Ben Lindstromb4df15d2000-10-15 00:17:36 +0000413 AC_DEFINE(BROKEN_REALPATH)
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000414 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700415 AC_DEFINE(BROKEN_SAVED_UIDS, 1, [Needed for NeXT])
Damien Miller0f91b4e2000-06-18 15:43:25 +1000416 ;;
Darren Tucker4a422572005-07-14 17:22:11 +1000417*-*-openbsd*)
418 AC_DEFINE(HAVE_ATTRIBUTE__SENTINEL__, 1, [OpenBSD's gcc has sentinel])
419 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100420*-*-solaris*)
Tim Riceeae17cc2005-03-17 16:52:20 -0800421 if test "x$withval" != "xno" ; then
Tim Ricead4a1882004-02-29 15:53:37 -0800422 need_dash_r=1
423 fi
Damien Miller82cf0ce2000-12-20 13:34:48 +1100424 AC_DEFINE(PAM_SUN_CODEBASE)
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000425 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700426 AC_DEFINE(LOGIN_NEEDS_TERM, 1,
427 [Some versions of /bin/login need the TERM supplied
428 on the commandline])
Ben Lindstrom95276712001-10-23 17:14:00 +0000429 AC_DEFINE(PAM_TTY_KLUDGE)
Tim Rice7df8d392005-09-19 09:33:39 -0700430 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
431 [Define if pam_chauthtok wants real uid set
432 to the unpriv'ed user])
Darren Tuckere41bba52003-08-25 11:51:19 +1000433 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Darren Tuckerc437cda2003-05-10 17:05:46 +1000434 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
Tim Rice7df8d392005-09-19 09:33:39 -0700435 AC_DEFINE(SSHD_ACQUIRES_CTTY, 1,
436 [Define if sshd somehow reacquires a controlling TTY
437 after setsid()])
Darren Tuckere1a790d2003-09-16 11:52:19 +1000438 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000439 # hardwire lastlog location (can't detect it on some versions)
440 conf_lastlog_location="/var/adm/lastlog"
Damien Millera1cb6442000-06-09 11:58:35 +1000441 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
442 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
443 if test "$sol2ver" -ge 8; then
444 AC_MSG_RESULT(yes)
445 AC_DEFINE(DISABLE_UTMP)
Tim Rice7df8d392005-09-19 09:33:39 -0700446 AC_DEFINE(DISABLE_WTMP, 1,
447 [Define if you don't want to use wtmp])
Damien Millera1cb6442000-06-09 11:58:35 +1000448 else
449 AC_MSG_RESULT(no)
450 fi
Damien Miller75b1d102000-01-07 14:01:41 +1100451 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +1000452*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000453 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Damien Millerdfc83f42000-05-20 15:02:59 +1000454 AC_CHECK_FUNCS(getpwanam)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100455 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000456 conf_utmp_location=/etc/utmp
457 conf_wtmp_location=/var/adm/wtmp
458 conf_lastlog_location=/var/adm/lastlog
Damien Millerb0785672000-08-23 09:10:39 +1000459 AC_DEFINE(USE_PIPES)
Damien Millerdfc83f42000-05-20 15:02:59 +1000460 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000461*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -0700462 LIBS="$LIBS -lc89"
Kevin Steves0bd4b342002-01-05 23:24:27 +0000463 AC_DEFINE(USE_PIPES)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000464 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker00130112003-09-22 11:40:24 +1000465 AC_DEFINE(SETEUID_BREAKS_SETUID)
466 AC_DEFINE(BROKEN_SETREUID)
467 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000468 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000469*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -0700470 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Darren Tucker89df7a32003-10-07 20:35:57 +1000471 AC_CHECK_LIB(dl, dlsym, ,)
Darren Tuckerca6e7a72005-02-16 16:19:17 +1100472 # -lresolv needs to be at then end of LIBS or DNS lookups break
473 AC_CHECK_LIB(res_query, resolv, [ LIBS="$LIBS -lresolv" ])
Damien Millerfd9885e2001-01-10 08:16:53 +1100474 IPADDR_IN_DISPLAY=yes
475 AC_DEFINE(USE_PIPES)
Damien Miller2ae714f2000-07-11 09:29:50 +1000476 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker3b2a06c2003-10-07 18:37:11 +1000477 AC_DEFINE(SETEUID_BREAKS_SETUID)
478 AC_DEFINE(BROKEN_SETREUID)
479 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000480 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckere1a790d2003-09-16 11:52:19 +1000481 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -0700482 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
483 # Attention: always take care to bind libsocket and libnsl before libc,
484 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +1000485 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800486# UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
Damien Miller78315eb2000-09-29 23:01:36 +1100487*-*-sysv4.2*)
Damien Miller5dfe9762001-02-16 12:05:39 +1100488 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700489 AC_DEFINE(SETEUID_BREAKS_SETUID)
490 AC_DEFINE(BROKEN_SETREUID)
491 AC_DEFINE(BROKEN_SETREGID)
Tim Rice2f97b8b2005-04-11 19:00:18 -0700492 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd])
Damien Miller78315eb2000-09-29 23:01:36 +1100493 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800494# UnixWare 7.x, OpenUNIX 8
Damien Miller78315eb2000-09-29 23:01:36 +1100495*-*-sysv5*)
Tim Riceeb456542005-08-30 07:12:02 -0700496 check_for_libcrypt_later=1
497 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
Damien Miller5dfe9762001-02-16 12:05:39 +1100498 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700499 AC_DEFINE(SETEUID_BREAKS_SETUID)
500 AC_DEFINE(BROKEN_SETREUID)
501 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700502 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Tim Rice4dbacff2005-06-01 20:09:28 -0700503 case "$host" in
504 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
505 TEST_SHELL=/u95/bin/sh
Tim Rice7df8d392005-09-19 09:33:39 -0700506 AC_DEFINE(BROKEN_LIBIAF, 1,
507 [ia_uinfo routines not supported by OS yet])
Tim Rice4dbacff2005-06-01 20:09:28 -0700508 ;;
509 esac
Damien Miller78315eb2000-09-29 23:01:36 +1100510 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100511*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +1100512 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800513# SCO UNIX and OEM versions of SCO UNIX
Damien Miller78315eb2000-09-29 23:01:36 +1100514*-*-sco3.2v4*)
Tim Ricec390c8d2005-03-07 01:21:37 -0800515 AC_MSG_ERROR("This Platform is no longer supported.")
Damien Miller78315eb2000-09-29 23:01:36 +1100516 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800517# SCO OpenServer 5.x
Damien Miller78315eb2000-09-29 23:01:36 +1100518*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -0800519 if test -z "$GCC"; then
520 CFLAGS="$CFLAGS -belf"
521 fi
Damien Miller5dfe9762001-02-16 12:05:39 +1100522 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000523 no_dev_ptmx=1
Damien Miller5dfe9762001-02-16 12:05:39 +1100524 AC_DEFINE(USE_PIPES)
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000525 AC_DEFINE(HAVE_SECUREWARE)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000526 AC_DEFINE(DISABLE_SHADOW)
Tim Rice9dd30812002-07-07 13:43:36 -0700527 AC_DEFINE(DISABLE_FD_PASSING)
Tim Riced546a842003-09-11 22:24:36 -0700528 AC_DEFINE(SETEUID_BREAKS_SETUID)
529 AC_DEFINE(BROKEN_SETREUID)
530 AC_DEFINE(BROKEN_SETREGID)
Tim Riceae477e92003-09-12 18:15:15 -0700531 AC_DEFINE(WITH_ABBREV_NO_TTY)
Tim Rice816bd0d2004-07-19 10:19:26 -0700532 AC_DEFINE(BROKEN_UPDWTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700533 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Damien Miller217f5672001-02-16 12:12:41 +1100534 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700535 MANTYPE=man
Tim Ricef7ba8f62004-06-20 10:37:32 -0700536 TEST_SHELL=ksh
Damien Millera66626b2000-06-13 18:57:53 +1000537 ;;
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000538*-*-unicosmk*)
Tim Rice7df8d392005-09-19 09:33:39 -0700539 AC_DEFINE(NO_SSH_LASTLOG, 1,
540 [Define if you don't want to use lastlog in session.c])
Darren Tucker2df33432004-01-30 14:34:21 +1100541 AC_DEFINE(SETEUID_BREAKS_SETUID)
542 AC_DEFINE(BROKEN_SETREUID)
543 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000544 AC_DEFINE(USE_PIPES)
545 AC_DEFINE(DISABLE_FD_PASSING)
546 LDFLAGS="$LDFLAGS"
547 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
548 MANTYPE=cat
Ben Lindstrom762104e2002-07-23 00:00:05 +0000549 ;;
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000550*-*-unicosmp*)
Darren Tucker2df33432004-01-30 14:34:21 +1100551 AC_DEFINE(SETEUID_BREAKS_SETUID)
552 AC_DEFINE(BROKEN_SETREUID)
553 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000554 AC_DEFINE(WITH_ABBREV_NO_TTY)
555 AC_DEFINE(USE_PIPES)
556 AC_DEFINE(DISABLE_FD_PASSING)
557 LDFLAGS="$LDFLAGS"
Darren Tucker2df33432004-01-30 14:34:21 +1100558 LIBS="$LIBS -lgen -lacid -ldb"
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000559 MANTYPE=cat
560 ;;
Ben Lindstromd9e08242001-07-22 19:32:00 +0000561*-*-unicos*)
Darren Tucker2df33432004-01-30 14:34:21 +1100562 AC_DEFINE(SETEUID_BREAKS_SETUID)
563 AC_DEFINE(BROKEN_SETREUID)
564 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstromd9e08242001-07-22 19:32:00 +0000565 AC_DEFINE(USE_PIPES)
Tim Rice9dd30812002-07-07 13:43:36 -0700566 AC_DEFINE(DISABLE_FD_PASSING)
Tim Rice81ed5182002-09-25 17:38:46 -0700567 AC_DEFINE(NO_SSH_LASTLOG)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000568 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
569 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
570 MANTYPE=cat
Tim Ricee991e3c2001-08-07 15:29:07 -0700571 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000572*-dec-osf*)
Ben Lindstrom72af2ef2001-05-08 20:42:28 +0000573 AC_MSG_CHECKING(for Digital Unix SIA)
574 no_osfsia=""
575 AC_ARG_WITH(osfsia,
576 [ --with-osfsia Enable Digital Unix SIA],
577 [
578 if test "x$withval" = "xno" ; then
579 AC_MSG_RESULT(disabled)
580 no_osfsia=1
581 fi
582 ],
583 )
584 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +1000585 if test -f /etc/sia/matrix.conf; then
586 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -0700587 AC_DEFINE(HAVE_OSF_SIA, 1,
588 [Define if you have Digital Unix Security
589 Integration Architecture])
590 AC_DEFINE(DISABLE_LOGIN, 1,
591 [Define if you don't want to use your
592 system's login() call])
Ben Lindstromc8c548d2003-03-21 01:18:09 +0000593 AC_DEFINE(DISABLE_FD_PASSING)
Damien Millerb8c656e2000-06-28 15:22:41 +1000594 LIBS="$LIBS -lsecurity -ldb -lm -laud"
595 else
596 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -0700597 AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin",
598 [String used in /etc/passwd to denote locked account])
Damien Millerb8c656e2000-06-28 15:22:41 +1000599 fi
600 fi
Darren Tucker3c8e1e12003-08-25 13:27:40 +1000601 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Rice7a74c6b2003-09-21 21:00:59 -0700602 AC_DEFINE(SETEUID_BREAKS_SETUID)
Darren Tuckered92b212003-09-22 11:26:16 +1000603 AC_DEFINE(BROKEN_SETREUID)
604 AC_DEFINE(BROKEN_SETREGID)
Damien Millerb8c656e2000-06-28 15:22:41 +1000605 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000606
607*-*-nto-qnx)
608 AC_DEFINE(USE_PIPES)
609 AC_DEFINE(NO_X11_UNIX_SOCKETS)
Tim Rice7df8d392005-09-19 09:33:39 -0700610 AC_DEFINE(MISSING_NFDBITS, 1, [Define on *nto-qnx systems])
611 AC_DEFINE(MISSING_HOWMANY, 1, [Define on *nto-qnx systems])
612 AC_DEFINE(MISSING_FD_MASK, 1, [Define on *nto-qnx systems])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000613 ;;
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000614
615*-*-ultrix*)
Tim Rice7df8d392005-09-19 09:33:39 -0700616 AC_DEFINE(BROKEN_GETGROUPS, 1, [getgroups(0,NULL) will return -1])
617 AC_DEFINE(BROKEN_MMAP, 1, [Ultrix mmap can't map files])
618 AC_DEFINE(NEED_SETPRGP)
Tim Ricefcc7ff12005-06-02 20:28:29 -0700619 AC_DEFINE(HAVE_SYS_SYSLOG_H, 1, [Force use of sys/syslog.h on Ultrix])
620 ;;
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000621
622*-*-lynxos)
623 CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
Tim Rice7df8d392005-09-19 09:33:39 -0700624 AC_DEFINE(MISSING_HOWMANY)
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000625 AC_DEFINE(BROKEN_SETVBUF, 1, [LynxOS has broken setvbuf() implementation])
626 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100627esac
628
Damien Millere37bfc12000-06-05 09:37:43 +1000629# Allow user to specify flags
630AC_ARG_WITH(cflags,
631 [ --with-cflags Specify additional flags to pass to compiler],
632 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800633 if test -n "$withval" && test "x$withval" != "xno" && \
634 test "x${withval}" != "xyes"; then
Damien Millere37bfc12000-06-05 09:37:43 +1000635 CFLAGS="$CFLAGS $withval"
636 fi
Tim Riceeae17cc2005-03-17 16:52:20 -0800637 ]
Damien Millere37bfc12000-06-05 09:37:43 +1000638)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000639AC_ARG_WITH(cppflags,
640 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
641 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800642 if test -n "$withval" && test "x$withval" != "xno" && \
643 test "x${withval}" != "xyes"; then
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000644 CPPFLAGS="$CPPFLAGS $withval"
645 fi
646 ]
647)
Damien Millere37bfc12000-06-05 09:37:43 +1000648AC_ARG_WITH(ldflags,
Ben Lindstrom2ed98182000-11-06 07:15:43 +0000649 [ --with-ldflags Specify additional flags to pass to linker],
Damien Millere37bfc12000-06-05 09:37:43 +1000650 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800651 if test -n "$withval" && test "x$withval" != "xno" && \
652 test "x${withval}" != "xyes"; then
Damien Millere37bfc12000-06-05 09:37:43 +1000653 LDFLAGS="$LDFLAGS $withval"
654 fi
Tim Riceeae17cc2005-03-17 16:52:20 -0800655 ]
Damien Millere37bfc12000-06-05 09:37:43 +1000656)
657AC_ARG_WITH(libs,
658 [ --with-libs Specify additional libraries to link with],
659 [
Tim Rice35cc69d2005-03-17 16:44:25 -0800660 if test -n "$withval" && test "x$withval" != "xno" && \
661 test "x${withval}" != "xyes"; then
Damien Millere37bfc12000-06-05 09:37:43 +1000662 LIBS="$LIBS $withval"
663 fi
Tim Riceeae17cc2005-03-17 16:52:20 -0800664 ]
Damien Millere37bfc12000-06-05 09:37:43 +1000665)
Darren Tucker7da23cb2005-08-03 00:20:15 +1000666AC_ARG_WITH(Werror,
667 [ --with-Werror Build main code with -Werror],
668 [
669 if test -n "$withval" && test "x$withval" != "xno"; then
670 werror_flags="-Werror"
671 if "x${withval}" != "xyes"; then
672 werror_flags="$withval"
673 fi
674 fi
675 ]
676)
Damien Millere37bfc12000-06-05 09:37:43 +1000677
Darren Tucker6eb93042003-06-29 21:30:41 +1000678AC_MSG_CHECKING(compiler and flags for sanity)
Darren Tucker623d92f2004-09-12 22:36:15 +1000679AC_RUN_IFELSE(
680 [AC_LANG_SOURCE([
Darren Tucker6eb93042003-06-29 21:30:41 +1000681#include <stdio.h>
682int main(){exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +1000683 ])],
Darren Tucker6eb93042003-06-29 21:30:41 +1000684 [ AC_MSG_RESULT(yes) ],
685 [
686 AC_MSG_RESULT(no)
687 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000688 ],
689 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
Darren Tucker6eb93042003-06-29 21:30:41 +1000690)
691
Darren Tucker0c9653f2005-05-28 15:58:14 +1000692dnl Checks for header files.
693AC_CHECK_HEADERS( \
694 bstring.h \
695 crypt.h \
696 dirent.h \
697 endian.h \
698 features.h \
699 floatingpoint.h \
700 getopt.h \
701 glob.h \
702 ia.h \
Tim Rice2291c002005-08-26 13:15:19 -0700703 iaf.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000704 lastlog.h \
705 limits.h \
706 login.h \
707 login_cap.h \
708 maillock.h \
709 ndir.h \
710 netdb.h \
711 netgroup.h \
712 netinet/in_systm.h \
713 pam/pam_appl.h \
714 paths.h \
715 pty.h \
716 readpassphrase.h \
717 rpc/types.h \
718 security/pam_appl.h \
719 shadow.h \
720 stddef.h \
721 stdint.h \
Darren Tucker390b6d52005-05-28 16:54:36 +1000722 string.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000723 strings.h \
724 sys/audit.h \
725 sys/bitypes.h \
726 sys/bsdtty.h \
727 sys/cdefs.h \
728 sys/dir.h \
729 sys/mman.h \
730 sys/ndir.h \
731 sys/prctl.h \
732 sys/pstat.h \
733 sys/select.h \
734 sys/stat.h \
735 sys/stream.h \
736 sys/stropts.h \
737 sys/strtio.h \
738 sys/sysmacros.h \
739 sys/time.h \
740 sys/timers.h \
741 sys/un.h \
742 time.h \
743 tmpdir.h \
744 ttyent.h \
Darren Tucker7d2171b2005-05-28 16:57:00 +1000745 unistd.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000746 usersec.h \
747 util.h \
748 utime.h \
749 utmp.h \
750 utmpx.h \
Darren Tuckere910be12005-05-28 16:01:18 +1000751 vis.h \
Darren Tucker0c9653f2005-05-28 15:58:14 +1000752)
Tim Rice4cec93f2002-02-26 08:40:48 -0800753
Darren Tucker48d99d32004-08-29 17:04:50 +1000754# sys/ptms.h requires sys/stream.h to be included first on Solaris
755AC_CHECK_HEADERS(sys/ptms.h, [], [], [
756#ifdef HAVE_SYS_STREAM_H
757# include <sys/stream.h>
758#endif
759])
760
Damien Millera22ba012000-03-02 23:09:20 +1100761# Checks for libraries.
Tim Rice13aae5e2001-10-21 17:53:58 -0700762AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
763AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000764
Tim Rice1e1ef642003-09-11 22:19:31 -0700765dnl IRIX and Solaris 2.5.1 have dirname() in libgen
766AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
767 AC_CHECK_LIB(gen, dirname,[
768 AC_CACHE_CHECK([for broken dirname],
769 ac_cv_have_broken_dirname, [
770 save_LIBS="$LIBS"
771 LIBS="$LIBS -lgen"
772 AC_TRY_RUN(
773 [
774#include <libgen.h>
775#include <string.h>
776
777int main(int argc, char **argv) {
778 char *s, buf[32];
779
780 strncpy(buf,"/etc", 32);
781 s = dirname(buf);
782 if (!s || strncmp(s, "/", 32) != 0) {
783 exit(1);
784 } else {
785 exit(0);
786 }
787}
788 ],
789 [ ac_cv_have_broken_dirname="no" ],
790 [ ac_cv_have_broken_dirname="yes" ]
791 )
792 LIBS="$save_LIBS"
793 ])
794 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
795 LIBS="$LIBS -lgen"
796 AC_DEFINE(HAVE_DIRNAME)
797 AC_CHECK_HEADERS(libgen.h)
798 fi
799 ])
800])
801
802AC_CHECK_FUNC(getspnam, ,
803 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
Tim Rice7df8d392005-09-19 09:33:39 -0700804AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME, 1,
805 [Define if you have the basename function.]))
Tim Rice1e1ef642003-09-11 22:19:31 -0700806
Tim Rice13aae5e2001-10-21 17:53:58 -0700807dnl zlib is required
808AC_ARG_WITH(zlib,
809 [ --with-zlib=PATH Use zlib in PATH],
Darren Tucker86a5f8d2005-03-21 09:55:17 +1100810 [ if test "x$withval" = "xno" ; then
811 AC_MSG_ERROR([*** zlib is required ***])
812 elif test "x$withval" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -0700813 if test -d "$withval/lib"; then
814 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700815 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700816 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700817 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700818 fi
819 else
820 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700821 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700822 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700823 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700824 fi
825 fi
826 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700827 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700828 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700829 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700830 fi
Darren Tucker86a5f8d2005-03-21 09:55:17 +1100831 fi ]
Tim Rice13aae5e2001-10-21 17:53:58 -0700832)
833
Tim Ricefcb62202004-01-23 18:35:16 -0800834AC_CHECK_LIB(z, deflate, ,
835 [
836 saved_CPPFLAGS="$CPPFLAGS"
837 saved_LDFLAGS="$LDFLAGS"
838 save_LIBS="$LIBS"
839 dnl Check default zlib install dir
840 if test -n "${need_dash_r}"; then
841 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
842 else
843 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
844 fi
845 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
846 LIBS="$LIBS -lz"
847 AC_TRY_LINK_FUNC(deflate, AC_DEFINE(HAVE_LIBZ),
848 [
849 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
850 ]
851 )
852 ]
853)
Darren Tucker2dcd2392004-01-23 17:13:33 +1100854AC_CHECK_HEADER([zlib.h], ,AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***]))
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100855
856AC_ARG_WITH(zlib-version-check,
857 [ --without-zlib-version-check Disable zlib version check],
858 [ if test "x$withval" = "xno" ; then
859 zlib_check_nonfatal=1
860 fi
861 ]
862)
863
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000864AC_MSG_CHECKING(for possibly buggy zlib)
Darren Tucker623d92f2004-09-12 22:36:15 +1000865AC_RUN_IFELSE([AC_LANG_SOURCE([[
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000866#include <stdio.h>
Darren Tucker2dcd2392004-01-23 17:13:33 +1100867#include <zlib.h>
868int main()
869{
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000870 int a=0, b=0, c=0, d=0, n, v;
871 n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
872 if (n != 3 && n != 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +1100873 exit(1);
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000874 v = a*1000000 + b*10000 + c*100 + d;
875 fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
876
877 /* 1.1.4 is OK */
878 if (a == 1 && b == 1 && c >= 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +1100879 exit(0);
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000880
Darren Tucker41097ed2005-07-25 15:24:21 +1000881 /* 1.2.3 and up are OK */
882 if (v >= 1020300)
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000883 exit(0);
884
Darren Tucker2dcd2392004-01-23 17:13:33 +1100885 exit(2);
886}
Darren Tucker623d92f2004-09-12 22:36:15 +1000887 ]])],
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000888 AC_MSG_RESULT(no),
889 [ AC_MSG_RESULT(yes)
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100890 if test -z "$zlib_check_nonfatal" ; then
891 AC_MSG_ERROR([*** zlib too old - check config.log ***
892Your reported zlib version has known security problems. It's possible your
893vendor has fixed these problems without changing the version number. If you
894are sure this is the case, you can disable the check by running
895"./configure --without-zlib-version-check".
Darren Tuckerac1910f2005-07-26 12:00:42 +1000896If you are in doubt, upgrade zlib to version 1.2.3 or greater.
Darren Tucker2f0b5c42005-04-24 17:52:22 +1000897See http://www.gzip.org/zlib/ for details.])
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100898 else
899 AC_MSG_WARN([zlib version may have security problems])
900 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +1000901 ],
902 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
Darren Tucker2dcd2392004-01-23 17:13:33 +1100903)
Damien Miller6f9c3372000-10-25 10:06:04 +1100904
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000905dnl UnixWare 2.x
Damien Millera8e06ce2003-11-21 23:48:55 +1100906AC_CHECK_FUNC(strcasecmp,
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000907 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
908)
Damien Millera8e06ce2003-11-21 23:48:55 +1100909AC_CHECK_FUNC(utimes,
Tim Ricecbb90662002-07-08 19:17:10 -0700910 [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
911 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000912)
Damien Millerab18c411999-11-11 10:40:23 +1100913
Tim Ricee589a292001-11-03 11:09:32 -0800914dnl Checks for libutil functions
915AC_CHECK_HEADERS(libutil.h)
Tim Rice7df8d392005-09-19 09:33:39 -0700916AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN, 1,
917 [Define if your libraries define login()])])
Tim Ricee589a292001-11-03 11:09:32 -0800918AC_CHECK_FUNCS(logout updwtmp logwtmp)
919
Ben Lindstrom8697e082001-02-24 21:41:10 +0000920AC_FUNC_STRFTIME
921
Damien Miller3c027682001-03-14 11:39:45 +1100922# Check for ALTDIRFUNC glob() extension
923AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
924AC_EGREP_CPP(FOUNDIT,
925 [
926 #include <glob.h>
927 #ifdef GLOB_ALTDIRFUNC
928 FOUNDIT
929 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +1100930 ],
Damien Miller3c027682001-03-14 11:39:45 +1100931 [
Tim Rice7df8d392005-09-19 09:33:39 -0700932 AC_DEFINE(GLOB_HAS_ALTDIRFUNC, 1,
933 [Define if your system glob() function has
934 the GLOB_ALTDIRFUNC extension])
Damien Miller3c027682001-03-14 11:39:45 +1100935 AC_MSG_RESULT(yes)
936 ],
937 [
938 AC_MSG_RESULT(no)
939 ]
940)
Damien Millerab18c411999-11-11 10:40:23 +1100941
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000942# Check for g.gl_matchc glob() extension
943AC_MSG_CHECKING(for gl_matchc field in glob_t)
944AC_EGREP_CPP(FOUNDIT,
Damien Millera8e06ce2003-11-21 23:48:55 +1100945 [
946 #include <glob.h>
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000947 int main(void){glob_t g; g.gl_matchc = 1;}
Damien Millera8e06ce2003-11-21 23:48:55 +1100948 ],
949 [
Tim Rice7df8d392005-09-19 09:33:39 -0700950 AC_DEFINE(GLOB_HAS_GL_MATCHC, 1,
951 [Define if your system glob() function has
952 gl_matchc options in glob_t])
Damien Millera8e06ce2003-11-21 23:48:55 +1100953 AC_MSG_RESULT(yes)
954 ],
955 [
956 AC_MSG_RESULT(no)
957 ]
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000958)
959
Damien Miller18bb4732001-03-28 14:35:30 +1000960AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000961AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +1000962 [AC_LANG_SOURCE([[
Damien Miller18bb4732001-03-28 14:35:30 +1000963#include <sys/types.h>
964#include <dirent.h>
Tim Rice2c961ce2002-09-23 16:54:10 -0700965int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
Darren Tucker623d92f2004-09-12 22:36:15 +1000966 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +1100967 [AC_MSG_RESULT(yes)],
Damien Miller18bb4732001-03-28 14:35:30 +1000968 [
969 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -0700970 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
971 [Define in your struct dirent expects you to
972 allocate extra space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000973 ],
Tim Riceeae17cc2005-03-17 16:52:20 -0800974 [
Darren Tuckera0c2b392004-09-11 23:26:37 +1000975 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
976 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
Damien Miller18bb4732001-03-28 14:35:30 +1000977 ]
978)
979
Damien Miller36f49652004-08-15 18:40:59 +1000980AC_MSG_CHECKING([for /proc/pid/fd directory])
981if test -d "/proc/$$/fd" ; then
Tim Rice7df8d392005-09-19 09:33:39 -0700982 AC_DEFINE(HAVE_PROC_PID, 1, [Define if you have /proc/$pid/fd])
Damien Miller36f49652004-08-15 18:40:59 +1000983 AC_MSG_RESULT(yes)
984else
985 AC_MSG_RESULT(no)
986fi
987
Damien Millerc547bf12001-02-16 10:18:12 +1100988# Check whether user wants S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +1100989SKEY_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +1100990AC_ARG_WITH(skey,
Darren Tucker1b6f2292005-02-11 16:11:49 +1100991 [ --with-skey[[=PATH]] Enable S/Key support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +1100992 [
993 if test "x$withval" != "xno" ; then
994
995 if test "x$withval" != "xyes" ; then
996 CPPFLAGS="$CPPFLAGS -I${withval}/include"
997 LDFLAGS="$LDFLAGS -L${withval}/lib"
998 fi
999
Tim Rice7df8d392005-09-19 09:33:39 -07001000 AC_DEFINE(SKEY, 1, [Define if you want S/Key support])
Damien Millerc547bf12001-02-16 10:18:12 +11001001 LIBS="-lskey $LIBS"
Damien Millera8e06ce2003-11-21 23:48:55 +11001002 SKEY_MSG="yes"
Tim Riceeae17cc2005-03-17 16:52:20 -08001003
Tim Rice4cec93f2002-02-26 08:40:48 -08001004 AC_MSG_CHECKING([for s/key support])
1005 AC_TRY_RUN(
Damien Millerc547bf12001-02-16 10:18:12 +11001006 [
Tim Rice4cec93f2002-02-26 08:40:48 -08001007#include <stdio.h>
1008#include <skey.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001009int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
Tim Rice4cec93f2002-02-26 08:40:48 -08001010 ],
1011 [AC_MSG_RESULT(yes)],
1012 [
1013 AC_MSG_RESULT(no)
Damien Millerc547bf12001-02-16 10:18:12 +11001014 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
1015 ])
Darren Tucker3b908f62004-04-14 15:26:39 +10001016 AC_MSG_CHECKING(if skeychallenge takes 4 arguments)
1017 AC_TRY_COMPILE(
1018 [#include <stdio.h>
1019 #include <skey.h>],
1020 [(void)skeychallenge(NULL,"name","",0);],
1021 [AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001022 AC_DEFINE(SKEYCHALLENGE_4ARG, 1,
1023 [Define if your skeychallenge()
1024 function takes 4 arguments (NetBSD)])],
Darren Tucker3b908f62004-04-14 15:26:39 +10001025 [AC_MSG_RESULT(no)]
1026 )
Damien Millerc547bf12001-02-16 10:18:12 +11001027 fi
1028 ]
1029)
1030
1031# Check whether user wants TCP wrappers support
Tim Rice13aae5e2001-10-21 17:53:58 -07001032TCPW_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +11001033AC_ARG_WITH(tcp-wrappers,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001034 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +11001035 [
1036 if test "x$withval" != "xno" ; then
1037 saved_LIBS="$LIBS"
Tim Rice13aae5e2001-10-21 17:53:58 -07001038 saved_LDFLAGS="$LDFLAGS"
1039 saved_CPPFLAGS="$CPPFLAGS"
Tim Rice8bb561b2005-03-17 16:23:19 -08001040 if test -n "${withval}" && \
Tim Rice35cc69d2005-03-17 16:44:25 -08001041 test "x${withval}" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001042 if test -d "${withval}/lib"; then
1043 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001044 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001045 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001046 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001047 fi
1048 else
1049 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001050 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001051 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001052 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001053 fi
1054 fi
1055 if test -d "${withval}/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001056 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001057 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001058 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001059 fi
Tim Rice13aae5e2001-10-21 17:53:58 -07001060 fi
Tim Rice4cec93f2002-02-26 08:40:48 -08001061 LIBWRAP="-lwrap"
1062 LIBS="$LIBWRAP $LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001063 AC_MSG_CHECKING(for libwrap)
1064 AC_TRY_LINK(
1065 [
Damien Miller0ac45002004-04-14 20:14:26 +10001066#include <sys/types.h>
1067#include <sys/socket.h>
1068#include <netinet/in.h>
Damien Millerc547bf12001-02-16 10:18:12 +11001069#include <tcpd.h>
1070 int deny_severity = 0, allow_severity = 0;
1071 ],
1072 [hosts_access(0);],
1073 [
1074 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001075 AC_DEFINE(LIBWRAP, 1,
1076 [Define if you want
1077 TCP Wrappers support])
Tim Rice4cec93f2002-02-26 08:40:48 -08001078 AC_SUBST(LIBWRAP)
Tim Rice13aae5e2001-10-21 17:53:58 -07001079 TCPW_MSG="yes"
Damien Millerc547bf12001-02-16 10:18:12 +11001080 ],
1081 [
1082 AC_MSG_ERROR([*** libwrap missing])
1083 ]
1084 )
Tim Rice4cec93f2002-02-26 08:40:48 -08001085 LIBS="$saved_LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001086 fi
1087 ]
1088)
1089
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001090# Check whether user wants libedit support
1091LIBEDIT_MSG="no"
1092AC_ARG_WITH(libedit,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001093 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001094 [ if test "x$withval" != "xno" ; then
Darren Tucker1df61452005-03-21 09:58:07 +11001095 if test "x$withval" != "xyes"; then
1096 CPPFLAGS="$CPPFLAGS -I$withval/include"
1097 LDFLAGS="$LDFLAGS -L$withval/lib"
1098 fi
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001099 AC_CHECK_LIB(edit, el_init,
Tim Rice7df8d392005-09-19 09:33:39 -07001100 [ AC_DEFINE(USE_LIBEDIT, 1, [Use libedit for sftp])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001101 LIBEDIT="-ledit -lcurses"
1102 LIBEDIT_MSG="yes"
1103 AC_SUBST(LIBEDIT)
1104 ],
Darren Tucker1df61452005-03-21 09:58:07 +11001105 [ AC_MSG_ERROR(libedit not found) ],
1106 [ -lcurses ]
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001107 )
Darren Tuckerc7572b22005-08-10 20:34:15 +10001108 AC_MSG_CHECKING(if libedit version is compatible)
Tim Ricec1819c82005-08-15 17:48:40 -07001109 AC_COMPILE_IFELSE(
1110 [AC_LANG_SOURCE([[
1111#include <histedit.h>
Darren Tuckerc7572b22005-08-10 20:34:15 +10001112int main(void)
1113{
1114 int i = H_SETSIZE;
1115 el_init("", NULL, NULL, NULL);
1116 exit(0);
1117}
Tim Ricec1819c82005-08-15 17:48:40 -07001118 ]])],
Darren Tuckerc7572b22005-08-10 20:34:15 +10001119 [ AC_MSG_RESULT(yes) ],
1120 [ AC_MSG_RESULT(no)
1121 AC_MSG_ERROR(libedit version is not compatible) ]
1122 )
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001123 fi ]
1124)
1125
Darren Tuckerd9f88912005-02-20 21:01:48 +11001126AUDIT_MODULE=none
1127AC_ARG_WITH(audit,
1128 [ --with-audit=module Enable EXPERIMENTAL audit support (modules=debug,bsm)],
1129 [
1130 AC_MSG_CHECKING(for supported audit module)
1131 case "$withval" in
1132 bsm)
1133 AC_MSG_RESULT(bsm)
1134 AUDIT_MODULE=bsm
1135 dnl Checks for headers, libs and functions
1136 AC_CHECK_HEADERS(bsm/audit.h, [],
1137 [AC_MSG_ERROR(BSM enabled and bsm/audit.h not found)])
1138 AC_CHECK_LIB(bsm, getaudit, [],
1139 [AC_MSG_ERROR(BSM enabled and required library not found)])
1140 AC_CHECK_FUNCS(getaudit, [],
1141 [AC_MSG_ERROR(BSM enabled and required function not found)])
1142 # These are optional
Darren Tucker0d096692005-03-07 17:34:45 +11001143 AC_CHECK_FUNCS(getaudit_addr)
Tim Rice7df8d392005-09-19 09:33:39 -07001144 AC_DEFINE(USE_BSM_AUDIT, 1, [Use BSM audit module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001145 ;;
1146 debug)
1147 AUDIT_MODULE=debug
1148 AC_MSG_RESULT(debug)
Tim Rice7df8d392005-09-19 09:33:39 -07001149 AC_DEFINE(SSH_AUDIT_EVENTS, 1, Use audit debugging module)
Darren Tuckerd9f88912005-02-20 21:01:48 +11001150 ;;
Tim Rice8bc6b902005-08-09 10:09:53 -07001151 no)
Tim Ricec1819c82005-08-15 17:48:40 -07001152 AC_MSG_RESULT(no)
Tim Rice8bc6b902005-08-09 10:09:53 -07001153 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001154 *)
1155 AC_MSG_ERROR([Unknown audit module $withval])
1156 ;;
1157 esac ]
1158)
1159
Damien Millerfe1f1432003-02-24 15:45:42 +11001160dnl Checks for library functions. Please keep in alphabetical order
Darren Tucker0c9653f2005-05-28 15:58:14 +10001161AC_CHECK_FUNCS( \
1162 arc4random \
1163 b64_ntop \
1164 __b64_ntop \
1165 b64_pton \
1166 __b64_pton \
1167 bcopy \
1168 bindresvport_sa \
1169 clock \
1170 closefrom \
1171 dirfd \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001172 fchmod \
1173 fchown \
1174 freeaddrinfo \
1175 futimes \
1176 getaddrinfo \
1177 getcwd \
1178 getgrouplist \
1179 getnameinfo \
1180 getopt \
1181 getpeereid \
1182 _getpty \
1183 getrlimit \
1184 getttyent \
1185 glob \
1186 inet_aton \
1187 inet_ntoa \
1188 inet_ntop \
1189 innetgr \
1190 login_getcapbool \
1191 md5_crypt \
1192 memmove \
1193 mkdtemp \
1194 mmap \
1195 ngetaddrinfo \
1196 nsleep \
1197 ogetaddrinfo \
1198 openlog_r \
1199 openpty \
1200 prctl \
1201 pstat \
1202 readpassphrase \
1203 realpath \
1204 recvmsg \
1205 rresvport_af \
1206 sendmsg \
1207 setdtablesize \
1208 setegid \
1209 setenv \
1210 seteuid \
1211 setgroups \
1212 setlogin \
1213 setpcred \
1214 setproctitle \
1215 setregid \
1216 setreuid \
1217 setrlimit \
1218 setsid \
1219 setvbuf \
1220 sigaction \
1221 sigvec \
1222 snprintf \
1223 socketpair \
1224 strdup \
1225 strerror \
1226 strlcat \
1227 strlcpy \
1228 strmode \
1229 strnvis \
1230 strtonum \
Darren Tucker81eb5d52005-06-01 21:39:33 +10001231 strtoll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001232 strtoul \
1233 sysconf \
1234 tcgetpgrp \
1235 truncate \
1236 unsetenv \
1237 updwtmpx \
1238 utimes \
1239 vhangup \
1240 vsnprintf \
1241 waitpid \
Damien Millerfe1f1432003-02-24 15:45:42 +11001242)
Tim Rice13aae5e2001-10-21 17:53:58 -07001243
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001244# IRIX has a const char return value for gai_strerror()
1245AC_CHECK_FUNCS(gai_strerror,[
1246 AC_DEFINE(HAVE_GAI_STRERROR)
1247 AC_TRY_COMPILE([
1248#include <sys/types.h>
1249#include <sys/socket.h>
1250#include <netdb.h>
1251
1252const char *gai_strerror(int);],[
1253char *str;
1254
1255str = gai_strerror(0);],[
1256 AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1,
1257 [Define if gai_strerror() returns const char *])])])
1258
Tim Rice7df8d392005-09-19 09:33:39 -07001259AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP, 1,
1260 [Some systems put nanosleep outside of libc]))
Damien Millercd6853c2003-01-28 11:33:42 +11001261
Darren Tuckerf1159b52003-07-07 19:44:01 +10001262dnl Make sure prototypes are defined for these before using them.
Darren Tuckerf1159b52003-07-07 19:44:01 +10001263AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
Darren Tucker390b6d52005-05-28 16:54:36 +10001264AC_CHECK_DECL(strsep,
1265 [AC_CHECK_FUNCS(strsep)],
1266 [],
1267 [
1268#ifdef HAVE_STRING_H
1269# include <string.h>
1270#endif
1271 ])
Ben Lindstrom3e006472002-10-16 00:24:03 +00001272
Darren Tuckerb2427c82003-09-10 15:22:44 +10001273dnl tcsendbreak might be a macro
1274AC_CHECK_DECL(tcsendbreak,
1275 [AC_DEFINE(HAVE_TCSENDBREAK)],
Damien Millera8e06ce2003-11-21 23:48:55 +11001276 [AC_CHECK_FUNCS(tcsendbreak)],
Darren Tuckerb2427c82003-09-10 15:22:44 +10001277 [#include <termios.h>]
1278)
1279
Darren Tucker5bb14002004-04-23 18:53:10 +10001280AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>])
1281
Darren Tucker2a6b0292003-12-31 14:59:17 +11001282AC_CHECK_FUNCS(setresuid, [
1283 dnl Some platorms have setresuid that isn't implemented, test for this
1284 AC_MSG_CHECKING(if setresuid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001285 AC_RUN_IFELSE(
1286 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001287#include <stdlib.h>
1288#include <errno.h>
1289int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001290 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001291 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001292 [AC_DEFINE(BROKEN_SETRESUID, 1,
1293 [Define if your setresuid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001294 AC_MSG_RESULT(not implemented)],
1295 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001296 )
1297])
Darren Tuckere937be32003-12-17 18:53:26 +11001298
Darren Tucker2a6b0292003-12-31 14:59:17 +11001299AC_CHECK_FUNCS(setresgid, [
1300 dnl Some platorms have setresgid that isn't implemented, test for this
1301 AC_MSG_CHECKING(if setresgid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001302 AC_RUN_IFELSE(
1303 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001304#include <stdlib.h>
1305#include <errno.h>
1306int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001307 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001308 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001309 [AC_DEFINE(BROKEN_SETRESGID, 1,
1310 [Define if your setresgid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001311 AC_MSG_RESULT(not implemented)],
1312 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001313 )
1314])
Darren Tuckere937be32003-12-17 18:53:26 +11001315
Damien Millerad833b32000-08-23 10:46:23 +10001316dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +00001317AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +10001318dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001319AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +00001320AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +10001321dnl Checks for utmpx functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001322AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
andre2ff7b5d2000-06-03 14:57:40 +00001323AC_CHECK_FUNCS(setutxent utmpxname)
Damien Millercedfecc1999-11-15 14:36:53 +11001324
Damien Millera8e06ce2003-11-21 23:48:55 +11001325AC_CHECK_FUNC(daemon,
Tim Rice7df8d392005-09-19 09:33:39 -07001326 [AC_DEFINE(HAVE_DAEMON, 1, [Define if your libraries define daemon()])],
1327 [AC_CHECK_LIB(bsd, daemon,
1328 [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
Damien Miller04f80141999-11-19 15:32:34 +11001329)
1330
Damien Millera8e06ce2003-11-21 23:48:55 +11001331AC_CHECK_FUNC(getpagesize,
Tim Rice7df8d392005-09-19 09:33:39 -07001332 [AC_DEFINE(HAVE_GETPAGESIZE, 1,
1333 [Define if your libraries define getpagesize()])],
1334 [AC_CHECK_LIB(ucb, getpagesize,
1335 [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
Damien Miller9fb07e42000-03-05 16:22:59 +11001336)
1337
Damien Millercb170cb2000-07-01 16:52:55 +10001338# Check for broken snprintf
1339if test "x$ac_cv_func_snprintf" = "xyes" ; then
1340 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001341 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001342 [AC_LANG_SOURCE([[
Damien Millercb170cb2000-07-01 16:52:55 +10001343#include <stdio.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001344int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
Darren Tucker623d92f2004-09-12 22:36:15 +10001345 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001346 [AC_MSG_RESULT(yes)],
Damien Millercb170cb2000-07-01 16:52:55 +10001347 [
1348 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -07001349 AC_DEFINE(BROKEN_SNPRINTF, 1,
1350 [Define if your snprintf is busted])
Damien Millercb170cb2000-07-01 16:52:55 +10001351 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001352 ],
1353 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
Damien Millercb170cb2000-07-01 16:52:55 +10001354 )
1355fi
1356
Damien Millerb4097182004-05-23 14:09:40 +10001357# Check for missing getpeereid (or equiv) support
1358NO_PEERCHECK=""
1359if test "x$ac_cv_func_getpeereid" != "xyes" ; then
1360 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
1361 AC_TRY_COMPILE(
1362 [#include <sys/types.h>
1363 #include <sys/socket.h>],
1364 [int i = SO_PEERCRED;],
Darren Tucker9d2562c2005-04-05 19:22:45 +10001365 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001366 AC_DEFINE(HAVE_SO_PEERCRED, 1, [Have PEERCRED socket option])
Darren Tucker9d2562c2005-04-05 19:22:45 +10001367 ],
Damien Millerb4097182004-05-23 14:09:40 +10001368 [AC_MSG_RESULT(no)
1369 NO_PEERCHECK=1]
1370 )
1371fi
1372
Damien Millere8328192003-01-07 15:18:32 +11001373dnl see whether mkstemp() requires XXXXXX
1374if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
1375AC_MSG_CHECKING([for (overly) strict mkstemp])
1376AC_TRY_RUN(
1377 [
1378#include <stdlib.h>
1379main() { char template[]="conftest.mkstemp-test";
1380if (mkstemp(template) == -1)
1381 exit(1);
1382unlink(template); exit(0);
1383}
1384 ],
1385 [
1386 AC_MSG_RESULT(no)
1387 ],
Damien Millera8e06ce2003-11-21 23:48:55 +11001388 [
Damien Millere8328192003-01-07 15:18:32 +11001389 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001390 AC_DEFINE(HAVE_STRICT_MKSTEMP, 1, [Silly mkstemp()])
Damien Millere8328192003-01-07 15:18:32 +11001391 ],
1392 [
1393 AC_MSG_RESULT(yes)
1394 AC_DEFINE(HAVE_STRICT_MKSTEMP)
Damien Millera8e06ce2003-11-21 23:48:55 +11001395 ]
Damien Millere8328192003-01-07 15:18:32 +11001396)
1397fi
1398
Darren Tucker70a3d552003-08-21 17:58:29 +10001399dnl make sure that openpty does not reacquire controlling terminal
1400if test ! -z "$check_for_openpty_ctty_bug"; then
1401 AC_MSG_CHECKING(if openpty correctly handles controlling tty)
1402 AC_TRY_RUN(
1403 [
1404#include <stdio.h>
1405#include <sys/fcntl.h>
1406#include <sys/types.h>
1407#include <sys/wait.h>
1408
1409int
1410main()
1411{
1412 pid_t pid;
1413 int fd, ptyfd, ttyfd, status;
1414
1415 pid = fork();
1416 if (pid < 0) { /* failed */
1417 exit(1);
1418 } else if (pid > 0) { /* parent */
1419 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +11001420 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +10001421 exit(WEXITSTATUS(status));
1422 else
1423 exit(2);
1424 } else { /* child */
1425 close(0); close(1); close(2);
1426 setsid();
1427 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
1428 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
1429 if (fd >= 0)
1430 exit(3); /* Acquired ctty: broken */
1431 else
1432 exit(0); /* Did not acquire ctty: OK */
1433 }
1434}
1435 ],
1436 [
1437 AC_MSG_RESULT(yes)
1438 ],
1439 [
1440 AC_MSG_RESULT(no)
1441 AC_DEFINE(SSHD_ACQUIRES_CTTY)
1442 ]
1443 )
1444fi
1445
Tim Rice8bb561b2005-03-17 16:23:19 -08001446if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1447 test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
Darren Tucker4398cf52004-04-06 21:39:02 +10001448 AC_MSG_CHECKING(if getaddrinfo seems to work)
1449 AC_TRY_RUN(
1450 [
1451#include <stdio.h>
1452#include <sys/socket.h>
1453#include <netdb.h>
1454#include <errno.h>
1455#include <netinet/in.h>
1456
1457#define TEST_PORT "2222"
1458
1459int
1460main(void)
1461{
1462 int err, sock;
1463 struct addrinfo *gai_ai, *ai, hints;
1464 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1465
1466 memset(&hints, 0, sizeof(hints));
1467 hints.ai_family = PF_UNSPEC;
1468 hints.ai_socktype = SOCK_STREAM;
1469 hints.ai_flags = AI_PASSIVE;
1470
1471 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1472 if (err != 0) {
1473 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1474 exit(1);
1475 }
1476
1477 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1478 if (ai->ai_family != AF_INET6)
1479 continue;
1480
1481 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1482 sizeof(ntop), strport, sizeof(strport),
1483 NI_NUMERICHOST|NI_NUMERICSERV);
1484
1485 if (err != 0) {
1486 if (err == EAI_SYSTEM)
1487 perror("getnameinfo EAI_SYSTEM");
1488 else
1489 fprintf(stderr, "getnameinfo failed: %s\n",
1490 gai_strerror(err));
1491 exit(2);
1492 }
1493
1494 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1495 if (sock < 0)
1496 perror("socket");
1497 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1498 if (errno == EBADF)
1499 exit(3);
1500 }
1501 }
1502 exit(0);
1503}
1504 ],
1505 [
1506 AC_MSG_RESULT(yes)
1507 ],
1508 [
1509 AC_MSG_RESULT(no)
1510 AC_DEFINE(BROKEN_GETADDRINFO)
1511 ]
1512 )
1513fi
1514
Tim Rice8bb561b2005-03-17 16:23:19 -08001515if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1516 test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
Darren Tucker691d5232005-02-15 21:45:57 +11001517 AC_MSG_CHECKING(if getaddrinfo seems to work)
1518 AC_TRY_RUN(
1519 [
1520#include <stdio.h>
1521#include <sys/socket.h>
1522#include <netdb.h>
1523#include <errno.h>
1524#include <netinet/in.h>
1525
1526#define TEST_PORT "2222"
1527
1528int
1529main(void)
1530{
1531 int err, sock;
1532 struct addrinfo *gai_ai, *ai, hints;
1533 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1534
1535 memset(&hints, 0, sizeof(hints));
1536 hints.ai_family = PF_UNSPEC;
1537 hints.ai_socktype = SOCK_STREAM;
1538 hints.ai_flags = AI_PASSIVE;
1539
1540 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1541 if (err != 0) {
1542 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1543 exit(1);
1544 }
1545
1546 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1547 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1548 continue;
1549
1550 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1551 sizeof(ntop), strport, sizeof(strport),
1552 NI_NUMERICHOST|NI_NUMERICSERV);
1553
1554 if (ai->ai_family == AF_INET && err != 0) {
1555 perror("getnameinfo");
1556 exit(2);
1557 }
1558 }
1559 exit(0);
1560}
1561 ],
1562 [
1563 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001564 AC_DEFINE(AIX_GETNAMEINFO_HACK, 1,
1565 [Define if you have a getaddrinfo that fails
1566 for the all-zeros IPv6 address])
Darren Tucker691d5232005-02-15 21:45:57 +11001567 ],
1568 [
1569 AC_MSG_RESULT(no)
1570 AC_DEFINE(BROKEN_GETADDRINFO)
1571 ]
1572 )
1573fi
1574
Darren Tuckera56f1912004-11-02 20:30:54 +11001575if test "x$check_for_conflicting_getspnam" = "x1"; then
1576 AC_MSG_CHECKING(for conflicting getspnam in shadow.h)
1577 AC_COMPILE_IFELSE(
1578 [
1579#include <shadow.h>
1580int main(void) {exit(0);}
1581 ],
1582 [
1583 AC_MSG_RESULT(no)
1584 ],
1585 [
1586 AC_MSG_RESULT(yes)
1587 AC_DEFINE(GETSPNAM_CONFLICTING_DEFS, 1,
1588 [Conflicting defs for getspnam])
1589 ]
1590 )
1591fi
1592
Damien Miller606f8802000-09-16 15:39:56 +11001593AC_FUNC_GETPGRP
1594
Damien Millera64b57a2001-01-17 10:44:13 +11001595# Check for PAM libs
Damien Miller7b22d652000-06-18 14:07:04 +10001596PAM_MSG="no"
Damien Millera22ba012000-03-02 23:09:20 +11001597AC_ARG_WITH(pam,
Damien Millera64b57a2001-01-17 10:44:13 +11001598 [ --with-pam Enable PAM support ],
Damien Millera22ba012000-03-02 23:09:20 +11001599 [
Damien Millera64b57a2001-01-17 10:44:13 +11001600 if test "x$withval" != "xno" ; then
Damien Miller0f47c532004-01-02 18:01:30 +11001601 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
1602 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
Damien Millera64b57a2001-01-17 10:44:13 +11001603 AC_MSG_ERROR([PAM headers not found])
1604 fi
1605
1606 AC_CHECK_LIB(dl, dlopen, , )
1607 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
1608 AC_CHECK_FUNCS(pam_getenvlist)
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001609 AC_CHECK_FUNCS(pam_putenv)
Damien Millera64b57a2001-01-17 10:44:13 +11001610
Damien Millera64b57a2001-01-17 10:44:13 +11001611 PAM_MSG="yes"
1612
Tim Rice7df8d392005-09-19 09:33:39 -07001613 AC_DEFINE(USE_PAM, 1,
1614 [Define if you want to enable PAM support])
Tim Rice7d2d1f12002-02-26 22:05:11 -08001615 if test $ac_cv_lib_dl_dlopen = yes; then
1616 LIBPAM="-lpam -ldl"
1617 else
1618 LIBPAM="-lpam"
1619 fi
1620 AC_SUBST(LIBPAM)
Damien Millera22ba012000-03-02 23:09:20 +11001621 fi
1622 ]
1623)
Damien Millera22ba012000-03-02 23:09:20 +11001624
Damien Millera64b57a2001-01-17 10:44:13 +11001625# Check for older PAM
1626if test "x$PAM_MSG" = "xyes" ; then
Damien Millera22ba012000-03-02 23:09:20 +11001627 # Check PAM strerror arguments (old PAM)
1628 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
1629 AC_TRY_COMPILE(
1630 [
Damien Miller81171112000-04-23 11:14:01 +10001631#include <stdlib.h>
Damien Miller0f47c532004-01-02 18:01:30 +11001632#if defined(HAVE_SECURITY_PAM_APPL_H)
Damien Miller81171112000-04-23 11:14:01 +10001633#include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +11001634#elif defined (HAVE_PAM_PAM_APPL_H)
1635#include <pam/pam_appl.h>
1636#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001637 ],
1638 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
Damien Millera22ba012000-03-02 23:09:20 +11001639 [AC_MSG_RESULT(no)],
1640 [
Tim Rice7df8d392005-09-19 09:33:39 -07001641 AC_DEFINE(HAVE_OLD_PAM, 1,
1642 [Define if you have an old version of PAM
1643 which takes only one argument to pam_strerror])
Damien Millera22ba012000-03-02 23:09:20 +11001644 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +10001645 PAM_MSG="yes (old library)"
Damien Millera22ba012000-03-02 23:09:20 +11001646 ]
Damien Millera64b57a2001-01-17 10:44:13 +11001647 )
Damien Millera22ba012000-03-02 23:09:20 +11001648fi
1649
Tim Riceaef73712002-05-11 13:17:42 -07001650# Search for OpenSSL
1651saved_CPPFLAGS="$CPPFLAGS"
1652saved_LDFLAGS="$LDFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +11001653AC_ARG_WITH(ssl-dir,
1654 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
1655 [
Ben Lindstrom23e13712000-10-29 22:49:19 +00001656 if test "x$withval" != "xno" ; then
Darren Tuckerc7e38d52005-02-09 22:12:30 +11001657 case "$withval" in
1658 # Relative paths
1659 ./*|../*) withval="`pwd`/$withval"
1660 esac
Tim Riceaef73712002-05-11 13:17:42 -07001661 if test -d "$withval/lib"; then
1662 if test -n "${need_dash_r}"; then
1663 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1664 else
1665 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1666 fi
1667 else
1668 if test -n "${need_dash_r}"; then
1669 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
1670 else
1671 LDFLAGS="-L${withval} ${LDFLAGS}"
1672 fi
1673 fi
1674 if test -d "$withval/include"; then
1675 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
1676 else
1677 CPPFLAGS="-I${withval} ${CPPFLAGS}"
1678 fi
Damien Millera22ba012000-03-02 23:09:20 +11001679 fi
1680 ]
1681)
Tim Rice3d5352e2004-02-12 09:27:21 -08001682LIBS="-lcrypto $LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07001683AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL, 1,
1684 [Define if your ssl headers are included
1685 with #include <openssl/header.h>]),
Damien Miller3b512e12000-05-17 23:29:18 +10001686 [
Tim Riceaef73712002-05-11 13:17:42 -07001687 dnl Check default openssl install dir
1688 if test -n "${need_dash_r}"; then
1689 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001690 else
Tim Riceaef73712002-05-11 13:17:42 -07001691 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001692 fi
Tim Riceaef73712002-05-11 13:17:42 -07001693 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
1694 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
1695 [
1696 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
1697 ]
1698 )
1699 ]
1700)
1701
Tim Riced730b782002-08-13 18:52:10 -07001702# Determine OpenSSL header version
1703AC_MSG_CHECKING([OpenSSL header version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001704AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001705 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07001706#include <stdio.h>
1707#include <string.h>
1708#include <openssl/opensslv.h>
1709#define DATA "conftest.sslincver"
1710int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001711 FILE *fd;
1712 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001713
Damien Millera8e06ce2003-11-21 23:48:55 +11001714 fd = fopen(DATA,"w");
1715 if(fd == NULL)
1716 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001717
1718 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
1719 exit(1);
1720
1721 exit(0);
1722}
Darren Tucker623d92f2004-09-12 22:36:15 +10001723 ]])],
Tim Riced730b782002-08-13 18:52:10 -07001724 [
1725 ssl_header_ver=`cat conftest.sslincver`
1726 AC_MSG_RESULT($ssl_header_ver)
1727 ],
1728 [
1729 AC_MSG_RESULT(not found)
1730 AC_MSG_ERROR(OpenSSL version header not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10001731 ],
1732 [
1733 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07001734 ]
1735)
1736
1737# Determine OpenSSL library version
1738AC_MSG_CHECKING([OpenSSL library version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001739AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001740 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07001741#include <stdio.h>
1742#include <string.h>
1743#include <openssl/opensslv.h>
1744#include <openssl/crypto.h>
1745#define DATA "conftest.ssllibver"
1746int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001747 FILE *fd;
1748 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001749
Damien Millera8e06ce2003-11-21 23:48:55 +11001750 fd = fopen(DATA,"w");
1751 if(fd == NULL)
1752 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001753
1754 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
1755 exit(1);
1756
1757 exit(0);
1758}
Darren Tucker623d92f2004-09-12 22:36:15 +10001759 ]])],
Tim Riced730b782002-08-13 18:52:10 -07001760 [
1761 ssl_library_ver=`cat conftest.ssllibver`
1762 AC_MSG_RESULT($ssl_library_ver)
1763 ],
1764 [
1765 AC_MSG_RESULT(not found)
1766 AC_MSG_ERROR(OpenSSL library not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10001767 ],
1768 [
1769 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07001770 ]
1771)
Damien Millera22ba012000-03-02 23:09:20 +11001772
Damien Millerec932372002-01-22 22:16:03 +11001773# Sanity check OpenSSL headers
1774AC_MSG_CHECKING([whether OpenSSL's headers match the library])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001775AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001776 [AC_LANG_SOURCE([[
Damien Millerec932372002-01-22 22:16:03 +11001777#include <string.h>
1778#include <openssl/opensslv.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001779int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10001780 ]])],
Damien Millerec932372002-01-22 22:16:03 +11001781 [
1782 AC_MSG_RESULT(yes)
1783 ],
1784 [
1785 AC_MSG_RESULT(no)
Darren Tuckera0472e02003-06-24 20:22:09 +10001786 AC_MSG_ERROR([Your OpenSSL headers do not match your library.
1787Check config.log for details.
1788Also see contrib/findssl.sh for help identifying header/library mismatches.])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001789 ],
1790 [
1791 AC_MSG_WARN([cross compiling: not checking])
Damien Millerec932372002-01-22 22:16:03 +11001792 ]
1793)
1794
Tim Rice3d5352e2004-02-12 09:27:21 -08001795# Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
1796# because the system crypt() is more featureful.
1797if test "x$check_for_libcrypt_before" = "x1"; then
1798 AC_CHECK_LIB(crypt, crypt)
1799fi
1800
Damien Millera8e06ce2003-11-21 23:48:55 +11001801# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
Tim Rice43fa5572004-02-11 14:46:40 -08001802# version in OpenSSL.
Damien Miller4f9f42a2003-05-10 19:28:02 +10001803if test "x$check_for_libcrypt_later" = "x1"; then
Damien Miller95aa2d62001-03-01 09:16:11 +11001804 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
Damien Millera64b57a2001-01-17 10:44:13 +11001805fi
1806
Tim Rice2291c002005-08-26 13:15:19 -07001807AC_CHECK_LIB(iaf, ia_openinfo)
Damien Miller6c21c512002-01-22 21:57:53 +11001808
1809### Configure cryptographic random number support
1810
1811# Check wheter OpenSSL seeds itself
1812AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001813AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001814 [AC_LANG_SOURCE([[
Damien Miller6c21c512002-01-22 21:57:53 +11001815#include <string.h>
1816#include <openssl/rand.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001817int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10001818 ]])],
Damien Miller6c21c512002-01-22 21:57:53 +11001819 [
1820 OPENSSL_SEEDS_ITSELF=yes
1821 AC_MSG_RESULT(yes)
1822 ],
1823 [
1824 AC_MSG_RESULT(no)
1825 # Default to use of the rand helper if OpenSSL doesn't
1826 # seed itself
1827 USE_RAND_HELPER=yes
Darren Tuckera0c2b392004-09-11 23:26:37 +10001828 ],
1829 [
1830 AC_MSG_WARN([cross compiling: assuming yes])
1831 # This is safe, since all recent OpenSSL versions will
Tim Riceeae17cc2005-03-17 16:52:20 -08001832 # complain at runtime if not seeded correctly.
Darren Tuckera0c2b392004-09-11 23:26:37 +10001833 OPENSSL_SEEDS_ITSELF=yes
Damien Miller6c21c512002-01-22 21:57:53 +11001834 ]
1835)
1836
1837
1838# Do we want to force the use of the rand helper?
1839AC_ARG_WITH(rand-helper,
1840 [ --with-rand-helper Use subprocess to gather strong randomness ],
1841 [
1842 if test "x$withval" = "xno" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11001843 # Force use of OpenSSL's internal RNG, even if
Damien Miller6c21c512002-01-22 21:57:53 +11001844 # the previous test showed it to be unseeded.
1845 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
1846 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
1847 OPENSSL_SEEDS_ITSELF=yes
1848 USE_RAND_HELPER=""
1849 fi
1850 else
1851 USE_RAND_HELPER=yes
1852 fi
1853 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08001854)
Damien Miller6c21c512002-01-22 21:57:53 +11001855
1856# Which randomness source do we use?
Tim Rice8bb561b2005-03-17 16:23:19 -08001857if test ! -z "$OPENSSL_SEEDS_ITSELF" && test -z "$USE_RAND_HELPER" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001858 # OpenSSL only
Tim Rice7df8d392005-09-19 09:33:39 -07001859 AC_DEFINE(OPENSSL_PRNG_ONLY, 1,
1860 [Define if you want OpenSSL's internally seeded PRNG only])
Damien Miller6c21c512002-01-22 21:57:53 +11001861 RAND_MSG="OpenSSL internal ONLY"
1862 INSTALL_SSH_RAND_HELPER=""
Tim Rice1e2c6002002-01-30 22:14:03 -08001863elif test ! -z "$USE_RAND_HELPER" ; then
1864 # install rand helper
Damien Miller6c21c512002-01-22 21:57:53 +11001865 RAND_MSG="ssh-rand-helper"
1866 INSTALL_SSH_RAND_HELPER="yes"
1867fi
1868AC_SUBST(INSTALL_SSH_RAND_HELPER)
1869
1870### Configuration of ssh-rand-helper
1871
1872# PRNGD TCP socket
1873AC_ARG_WITH(prngd-port,
1874 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
1875 [
Damien Millere996d722002-01-23 11:20:59 +11001876 case "$withval" in
1877 no)
1878 withval=""
1879 ;;
1880 [[0-9]]*)
1881 ;;
1882 *)
1883 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
1884 ;;
1885 esac
1886 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001887 PRNGD_PORT="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07001888 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT,
1889 [Port number of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11001890 fi
1891 ]
1892)
1893
1894# PRNGD Unix domain socket
1895AC_ARG_WITH(prngd-socket,
1896 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
1897 [
Damien Millere996d722002-01-23 11:20:59 +11001898 case "$withval" in
1899 yes)
Damien Miller6c21c512002-01-22 21:57:53 +11001900 withval="/var/run/egd-pool"
Damien Millere996d722002-01-23 11:20:59 +11001901 ;;
1902 no)
1903 withval=""
1904 ;;
1905 /*)
1906 ;;
1907 *)
1908 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
1909 ;;
1910 esac
1911
1912 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001913 if test ! -z "$PRNGD_PORT" ; then
1914 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
1915 fi
Damien Miller6385ba02002-01-23 08:12:36 +11001916 if test ! -r "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001917 AC_MSG_WARN(Entropy socket is not readable)
1918 fi
1919 PRNGD_SOCKET="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07001920 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET",
1921 [Location of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11001922 fi
Tim Rice4cec93f2002-02-26 08:40:48 -08001923 ],
1924 [
1925 # Check for existing socket only if we don't have a random device already
1926 if test "$USE_RAND_HELPER" = yes ; then
1927 AC_MSG_CHECKING(for PRNGD/EGD socket)
1928 # Insert other locations here
1929 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
1930 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
1931 PRNGD_SOCKET="$sock"
1932 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
1933 break;
1934 fi
1935 done
1936 if test ! -z "$PRNGD_SOCKET" ; then
1937 AC_MSG_RESULT($PRNGD_SOCKET)
1938 else
1939 AC_MSG_RESULT(not found)
1940 fi
1941 fi
Damien Miller6c21c512002-01-22 21:57:53 +11001942 ]
1943)
1944
1945# Change default command timeout for hashing entropy source
1946entropy_timeout=200
1947AC_ARG_WITH(entropy-timeout,
1948 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
1949 [
Tim Rice35cc69d2005-03-17 16:44:25 -08001950 if test -n "$withval" && test "x$withval" != "xno" && \
1951 test "x${withval}" != "xyes"; then
Damien Miller6c21c512002-01-22 21:57:53 +11001952 entropy_timeout=$withval
1953 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08001954 ]
Damien Miller6c21c512002-01-22 21:57:53 +11001955)
Tim Rice7df8d392005-09-19 09:33:39 -07001956AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout,
1957 [Builtin PRNG command timeout])
Damien Miller6c21c512002-01-22 21:57:53 +11001958
Damien Millerd3f6ad22002-06-25 10:24:47 +10001959SSH_PRIVSEP_USER=sshd
Kevin Steves7ff91122002-04-07 19:22:54 +00001960AC_ARG_WITH(privsep-user,
Kevin Stevesc81e1292002-05-13 03:51:40 +00001961 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00001962 [
Tim Rice35cc69d2005-03-17 16:44:25 -08001963 if test -n "$withval" && test "x$withval" != "xno" && \
1964 test "x${withval}" != "xyes"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10001965 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00001966 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08001967 ]
Kevin Steves7ff91122002-04-07 19:22:54 +00001968)
Tim Rice7df8d392005-09-19 09:33:39 -07001969AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER",
1970 [non-privileged user for privilege separation])
Damien Millerd3f6ad22002-06-25 10:24:47 +10001971AC_SUBST(SSH_PRIVSEP_USER)
Kevin Steves7ff91122002-04-07 19:22:54 +00001972
Tim Rice88f2ab52002-03-17 12:17:34 -08001973# We do this little dance with the search path to insure
1974# that programs that we select for use by installed programs
1975# (which may be run by the super-user) come from trusted
1976# locations before they come from the user's private area.
1977# This should help avoid accidentally configuring some
1978# random version of a program in someone's personal bin.
1979
1980OPATH=$PATH
1981PATH=/bin:/usr/bin
Tim Riceae49fe62002-04-12 10:26:21 -07001982test -h /bin 2> /dev/null && PATH=/usr/bin
Tim Rice88f2ab52002-03-17 12:17:34 -08001983test -d /sbin && PATH=$PATH:/sbin
1984test -d /usr/sbin && PATH=$PATH:/usr/sbin
1985PATH=$PATH:/etc:$OPATH
1986
Damien Millera8e06ce2003-11-21 23:48:55 +11001987# These programs are used by the command hashing source to gather entropy
Damien Miller6c21c512002-01-22 21:57:53 +11001988OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
1989OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
1990OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
1991OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
1992OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
1993OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
1994OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
1995OSSH_PATH_ENTROPY_PROG(PROG_W, w)
1996OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
1997OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
1998OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
1999OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
2000OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
2001OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
2002OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
2003OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
Tim Rice88f2ab52002-03-17 12:17:34 -08002004# restore PATH
2005PATH=$OPATH
Damien Miller6c21c512002-01-22 21:57:53 +11002006
2007# Where does ssh-rand-helper get its randomness from?
2008INSTALL_SSH_PRNG_CMDS=""
2009if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
2010 if test ! -z "$PRNGD_PORT" ; then
2011 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
2012 elif test ! -z "$PRNGD_SOCKET" ; then
2013 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
2014 else
2015 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
2016 RAND_HELPER_CMDHASH=yes
2017 INSTALL_SSH_PRNG_CMDS="yes"
2018 fi
2019fi
2020AC_SUBST(INSTALL_SSH_PRNG_CMDS)
2021
2022
Ben Lindstromb5628642000-10-18 00:02:25 +00002023# Cheap hack to ensure NEWS-OS libraries are arranged right.
2024if test ! -z "$SONY" ; then
2025 LIBS="$LIBS -liberty";
2026fi
2027
Damien Millera22ba012000-03-02 23:09:20 +11002028# Checks for data types
Damien Millere0f45742000-01-18 09:12:06 +11002029AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +11002030AC_CHECK_SIZEOF(short int, 2)
2031AC_CHECK_SIZEOF(int, 4)
2032AC_CHECK_SIZEOF(long int, 4)
2033AC_CHECK_SIZEOF(long long int, 8)
2034
Damien Millerfa2bb692002-04-23 23:22:25 +10002035# Sanity check long long for some platforms (AIX)
2036if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
2037 ac_cv_sizeof_long_long_int=0
2038fi
2039
Damien Millera22ba012000-03-02 23:09:20 +11002040# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11002041AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
2042 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002043 [ #include <sys/types.h> ],
2044 [ u_int a; a = 1;],
Damien Millercaf6dd62000-08-29 11:33:50 +11002045 [ ac_cv_have_u_int="yes" ],
2046 [ ac_cv_have_u_int="no" ]
2047 )
2048])
2049if test "x$ac_cv_have_u_int" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002050 AC_DEFINE(HAVE_U_INT, 1, [define if you have u_int data type])
Damien Millercaf6dd62000-08-29 11:33:50 +11002051 have_u_int=1
2052fi
2053
Damien Miller61e50f12000-05-08 20:49:37 +10002054AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
2055 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002056 [ #include <sys/types.h> ],
2057 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002058 [ ac_cv_have_intxx_t="yes" ],
2059 [ ac_cv_have_intxx_t="no" ]
2060 )
2061])
2062if test "x$ac_cv_have_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002063 AC_DEFINE(HAVE_INTXX_T, 1, [define if you have intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002064 have_intxx_t=1
2065fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002066
2067if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002068 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002069then
2070 AC_MSG_CHECKING([for intXX_t types in stdint.h])
2071 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002072 [ #include <stdint.h> ],
2073 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002074 [
2075 AC_DEFINE(HAVE_INTXX_T)
2076 AC_MSG_RESULT(yes)
2077 ],
2078 [ AC_MSG_RESULT(no) ]
2079 )
2080fi
2081
Damien Miller578783e2000-09-23 14:12:24 +11002082AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
2083 AC_TRY_COMPILE(
Tim Rice907881e2002-07-18 11:44:50 -07002084 [
2085#include <sys/types.h>
2086#ifdef HAVE_STDINT_H
2087# include <stdint.h>
2088#endif
2089#include <sys/socket.h>
2090#ifdef HAVE_SYS_BITYPES_H
2091# include <sys/bitypes.h>
2092#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11002093 ],
2094 [ int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002095 [ ac_cv_have_int64_t="yes" ],
2096 [ ac_cv_have_int64_t="no" ]
2097 )
2098])
2099if test "x$ac_cv_have_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002100 AC_DEFINE(HAVE_INT64_T, 1, [define if you have int64_t data type])
Tim Rice4cec93f2002-02-26 08:40:48 -08002101fi
2102
Damien Miller61e50f12000-05-08 20:49:37 +10002103AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
2104 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002105 [ #include <sys/types.h> ],
2106 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002107 [ ac_cv_have_u_intxx_t="yes" ],
2108 [ ac_cv_have_u_intxx_t="no" ]
2109 )
2110])
2111if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002112 AC_DEFINE(HAVE_U_INTXX_T, 1, [define if you have u_intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002113 have_u_intxx_t=1
2114fi
Damien Millerc6398ef1999-11-20 12:18:40 +11002115
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002116if test -z "$have_u_intxx_t" ; then
2117 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
2118 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002119 [ #include <sys/socket.h> ],
2120 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002121 [
2122 AC_DEFINE(HAVE_U_INTXX_T)
2123 AC_MSG_RESULT(yes)
2124 ],
2125 [ AC_MSG_RESULT(no) ]
2126 )
2127fi
2128
Damien Miller578783e2000-09-23 14:12:24 +11002129AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
2130 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002131 [ #include <sys/types.h> ],
2132 [ u_int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002133 [ ac_cv_have_u_int64_t="yes" ],
2134 [ ac_cv_have_u_int64_t="no" ]
2135 )
2136])
2137if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002138 AC_DEFINE(HAVE_U_INT64_T, 1, [define if you have u_int64_t data type])
Damien Miller578783e2000-09-23 14:12:24 +11002139 have_u_int64_t=1
2140fi
2141
Tim Rice4cec93f2002-02-26 08:40:48 -08002142if test -z "$have_u_int64_t" ; then
2143 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
2144 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002145 [ #include <sys/bitypes.h> ],
Tim Rice4cec93f2002-02-26 08:40:48 -08002146 [ u_int64_t a; a = 1],
2147 [
2148 AC_DEFINE(HAVE_U_INT64_T)
2149 AC_MSG_RESULT(yes)
2150 ],
2151 [ AC_MSG_RESULT(no) ]
2152 )
2153fi
2154
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002155if test -z "$have_u_intxx_t" ; then
2156 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
2157 AC_TRY_COMPILE(
2158 [
2159#include <sys/types.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002160 ],
2161 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002162 [ ac_cv_have_uintxx_t="yes" ],
2163 [ ac_cv_have_uintxx_t="no" ]
2164 )
2165 ])
2166 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002167 AC_DEFINE(HAVE_UINTXX_T, 1,
2168 [define if you have uintxx_t data type])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002169 fi
2170fi
2171
2172if test -z "$have_uintxx_t" ; then
2173 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
2174 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002175 [ #include <stdint.h> ],
2176 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002177 [
2178 AC_DEFINE(HAVE_UINTXX_T)
2179 AC_MSG_RESULT(yes)
2180 ],
2181 [ AC_MSG_RESULT(no) ]
2182 )
2183fi
2184
Damien Milleredb82922000-06-20 13:25:52 +10002185if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002186 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11002187then
2188 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
2189 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +10002190 [
2191#include <sys/bitypes.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002192 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002193 [
Damien Miller70494d12000-04-03 15:57:06 +10002194 int8_t a; int16_t b; int32_t c;
2195 u_int8_t e; u_int16_t f; u_int32_t g;
2196 a = b = c = e = f = g = 1;
Damien Millera8e06ce2003-11-21 23:48:55 +11002197 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002198 [
2199 AC_DEFINE(HAVE_U_INTXX_T)
2200 AC_DEFINE(HAVE_INTXX_T)
2201 AC_MSG_RESULT(yes)
2202 ],
2203 [AC_MSG_RESULT(no)]
Damien Millera8e06ce2003-11-21 23:48:55 +11002204 )
Damien Millerb29ea912000-01-15 14:12:03 +11002205fi
2206
Damien Miller58be7382001-09-15 21:31:54 +10002207
2208AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
2209 AC_TRY_COMPILE(
2210 [
2211#include <sys/types.h>
2212 ],
2213 [ u_char foo; foo = 125; ],
2214 [ ac_cv_have_u_char="yes" ],
2215 [ ac_cv_have_u_char="no" ]
2216 )
2217])
2218if test "x$ac_cv_have_u_char" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002219 AC_DEFINE(HAVE_U_CHAR, 1, [define if you have u_char data type])
Damien Miller58be7382001-09-15 21:31:54 +10002220fi
2221
Tim Rice13aae5e2001-10-21 17:53:58 -07002222TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11002223
Tim Rice200a5c02002-02-26 22:12:34 -08002224AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
Tim Rice4cec93f2002-02-26 08:40:48 -08002225
Damien Miller848b9932005-02-24 12:12:34 +11002226AC_CHECK_TYPES(in_addr_t,,,
2227[#include <sys/types.h>
2228#include <netinet/in.h>])
Darren Tuckerd9f88912005-02-20 21:01:48 +11002229
Damien Miller61e50f12000-05-08 20:49:37 +10002230AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
2231 AC_TRY_COMPILE(
2232 [
2233#include <sys/types.h>
2234 ],
2235 [ size_t foo; foo = 1235; ],
2236 [ ac_cv_have_size_t="yes" ],
2237 [ ac_cv_have_size_t="no" ]
2238 )
2239])
2240if test "x$ac_cv_have_size_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002241 AC_DEFINE(HAVE_SIZE_T, 1, [define if you have size_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002242fi
Damien Miller95058511999-12-29 10:36:45 +11002243
Damien Miller615f9392000-05-17 22:53:33 +10002244AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
2245 AC_TRY_COMPILE(
2246 [
2247#include <sys/types.h>
2248 ],
2249 [ ssize_t foo; foo = 1235; ],
2250 [ ac_cv_have_ssize_t="yes" ],
2251 [ ac_cv_have_ssize_t="no" ]
2252 )
2253])
2254if test "x$ac_cv_have_ssize_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002255 AC_DEFINE(HAVE_SSIZE_T, 1, [define if you have ssize_t data type])
Damien Miller615f9392000-05-17 22:53:33 +10002256fi
2257
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002258AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
2259 AC_TRY_COMPILE(
2260 [
2261#include <time.h>
2262 ],
2263 [ clock_t foo; foo = 1235; ],
2264 [ ac_cv_have_clock_t="yes" ],
2265 [ ac_cv_have_clock_t="no" ]
2266 )
2267])
2268if test "x$ac_cv_have_clock_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002269 AC_DEFINE(HAVE_CLOCK_T, 1, [define if you have clock_t data type])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002270fi
2271
Damien Millerb54b40e2000-06-23 08:23:34 +10002272AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
2273 AC_TRY_COMPILE(
2274 [
2275#include <sys/types.h>
2276#include <sys/socket.h>
2277 ],
2278 [ sa_family_t foo; foo = 1235; ],
2279 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +11002280 [ AC_TRY_COMPILE(
2281 [
2282#include <sys/types.h>
2283#include <sys/socket.h>
2284#include <netinet/in.h>
2285 ],
2286 [ sa_family_t foo; foo = 1235; ],
2287 [ ac_cv_have_sa_family_t="yes" ],
2288
Damien Millerb54b40e2000-06-23 08:23:34 +10002289 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +11002290 )]
Damien Millerb54b40e2000-06-23 08:23:34 +10002291 )
2292])
2293if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002294 AC_DEFINE(HAVE_SA_FAMILY_T, 1,
2295 [define if you have sa_family_t data type])
Damien Millerb54b40e2000-06-23 08:23:34 +10002296fi
2297
Damien Miller0f91b4e2000-06-18 15:43:25 +10002298AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
2299 AC_TRY_COMPILE(
2300 [
2301#include <sys/types.h>
2302 ],
2303 [ pid_t foo; foo = 1235; ],
2304 [ ac_cv_have_pid_t="yes" ],
2305 [ ac_cv_have_pid_t="no" ]
2306 )
2307])
2308if test "x$ac_cv_have_pid_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002309 AC_DEFINE(HAVE_PID_T, 1, [define if you have pid_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002310fi
2311
2312AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
2313 AC_TRY_COMPILE(
2314 [
2315#include <sys/types.h>
2316 ],
2317 [ mode_t foo; foo = 1235; ],
2318 [ ac_cv_have_mode_t="yes" ],
2319 [ ac_cv_have_mode_t="no" ]
2320 )
2321])
2322if test "x$ac_cv_have_mode_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002323 AC_DEFINE(HAVE_MODE_T, 1, [define if you have mode_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002324fi
2325
Damien Miller61e50f12000-05-08 20:49:37 +10002326
2327AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
2328 AC_TRY_COMPILE(
2329 [
Damien Miller81171112000-04-23 11:14:01 +10002330#include <sys/types.h>
2331#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002332 ],
2333 [ struct sockaddr_storage s; ],
2334 [ ac_cv_have_struct_sockaddr_storage="yes" ],
2335 [ ac_cv_have_struct_sockaddr_storage="no" ]
2336 )
2337])
2338if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002339 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE, 1,
2340 [define if you have struct sockaddr_storage data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002341fi
Damien Miller34132e52000-01-14 15:45:46 +11002342
Damien Miller61e50f12000-05-08 20:49:37 +10002343AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
2344 AC_TRY_COMPILE(
2345 [
Damien Miller7b22d652000-06-18 14:07:04 +10002346#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002347#include <netinet/in.h>
2348 ],
2349 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
2350 [ ac_cv_have_struct_sockaddr_in6="yes" ],
2351 [ ac_cv_have_struct_sockaddr_in6="no" ]
2352 )
2353])
2354if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002355 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6, 1,
2356 [define if you have struct sockaddr_in6 data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002357fi
Damien Miller34132e52000-01-14 15:45:46 +11002358
Damien Miller61e50f12000-05-08 20:49:37 +10002359AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
2360 AC_TRY_COMPILE(
2361 [
Damien Miller7b22d652000-06-18 14:07:04 +10002362#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002363#include <netinet/in.h>
2364 ],
2365 [ struct in6_addr s; s.s6_addr[0] = 0; ],
2366 [ ac_cv_have_struct_in6_addr="yes" ],
2367 [ ac_cv_have_struct_in6_addr="no" ]
2368 )
2369])
2370if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002371 AC_DEFINE(HAVE_STRUCT_IN6_ADDR, 1,
2372 [define if you have struct in6_addr data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002373fi
Damien Miller34132e52000-01-14 15:45:46 +11002374
Damien Miller61e50f12000-05-08 20:49:37 +10002375AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
2376 AC_TRY_COMPILE(
2377 [
Damien Miller81171112000-04-23 11:14:01 +10002378#include <sys/types.h>
2379#include <sys/socket.h>
2380#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002381 ],
2382 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
2383 [ ac_cv_have_struct_addrinfo="yes" ],
2384 [ ac_cv_have_struct_addrinfo="no" ]
2385 )
2386])
2387if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002388 AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1,
2389 [define if you have struct addrinfo data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002390fi
2391
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002392AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
2393 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002394 [ #include <sys/time.h> ],
2395 [ struct timeval tv; tv.tv_sec = 1;],
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002396 [ ac_cv_have_struct_timeval="yes" ],
2397 [ ac_cv_have_struct_timeval="no" ]
2398 )
2399])
2400if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002401 AC_DEFINE(HAVE_STRUCT_TIMEVAL, 1, [define if you have struct timeval])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002402 have_struct_timeval=1
2403fi
2404
Tim Rice4e4dc562003-03-18 10:21:40 -08002405AC_CHECK_TYPES(struct timespec)
2406
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00002407# We need int64_t or else certian parts of the compile will fail.
Tim Rice8bb561b2005-03-17 16:23:19 -08002408if test "x$ac_cv_have_int64_t" = "xno" && \
2409 test "x$ac_cv_sizeof_long_int" != "x8" && \
2410 test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00002411 echo "OpenSSH requires int64_t support. Contact your vendor or install"
2412 echo "an alternative compiler (I.E., GCC) before continuing."
2413 echo ""
2414 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08002415else
2416dnl test snprintf (broken on SCO w/gcc)
Darren Tuckera0c2b392004-09-11 23:26:37 +10002417 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002418 [AC_LANG_SOURCE([[
Tim Ricebee3f222001-03-11 17:32:12 -08002419#include <stdio.h>
2420#include <string.h>
2421#ifdef HAVE_SNPRINTF
2422main()
2423{
2424 char buf[50];
2425 char expected_out[50];
2426 int mazsize = 50 ;
2427#if (SIZEOF_LONG_INT == 8)
2428 long int num = 0x7fffffffffffffff;
2429#else
Kevin Steves6482ec82001-07-15 02:09:28 +00002430 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08002431#endif
2432 strcpy(expected_out, "9223372036854775807");
2433 snprintf(buf, mazsize, "%lld", num);
2434 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11002435 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08002436 exit(0);
2437}
2438#else
2439main() { exit(0); }
2440#endif
Darren Tucker623d92f2004-09-12 22:36:15 +10002441 ]])], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],
Darren Tuckera0c2b392004-09-11 23:26:37 +10002442 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
Tim Ricebee3f222001-03-11 17:32:12 -08002443 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00002444fi
2445
Damien Miller78315eb2000-09-29 23:01:36 +11002446dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10002447OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
2448OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
2449OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
2450OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
2451OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10002452OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10002453OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
2454OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10002455OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10002456OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
2457OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
2458OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
2459OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00002460OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
2461OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
2462OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
2463OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Tim Rice13aae5e2001-10-21 17:53:58 -07002464
2465AC_CHECK_MEMBERS([struct stat.st_blksize])
andre2ff7b5d2000-06-03 14:57:40 +00002466
Damien Miller61e50f12000-05-08 20:49:37 +10002467AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
2468 ac_cv_have_ss_family_in_struct_ss, [
2469 AC_TRY_COMPILE(
2470 [
Damien Miller81171112000-04-23 11:14:01 +10002471#include <sys/types.h>
2472#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002473 ],
2474 [ struct sockaddr_storage s; s.ss_family = 1; ],
2475 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
2476 [ ac_cv_have_ss_family_in_struct_ss="no" ],
2477 )
2478])
2479if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002480 AC_DEFINE(HAVE_SS_FAMILY_IN_SS, 1, [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10002481fi
2482
Damien Miller61e50f12000-05-08 20:49:37 +10002483AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
2484 ac_cv_have___ss_family_in_struct_ss, [
2485 AC_TRY_COMPILE(
2486 [
Damien Miller81171112000-04-23 11:14:01 +10002487#include <sys/types.h>
2488#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002489 ],
2490 [ struct sockaddr_storage s; s.__ss_family = 1; ],
2491 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
2492 [ ac_cv_have___ss_family_in_struct_ss="no" ]
2493 )
2494])
2495if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002496 AC_DEFINE(HAVE___SS_FAMILY_IN_SS, 1,
2497 [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10002498fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11002499
Damien Millerad833b32000-08-23 10:46:23 +10002500AC_CACHE_CHECK([for pw_class field in struct passwd],
2501 ac_cv_have_pw_class_in_struct_passwd, [
2502 AC_TRY_COMPILE(
2503 [
Damien Millerad833b32000-08-23 10:46:23 +10002504#include <pwd.h>
2505 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00002506 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10002507 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
2508 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
2509 )
2510])
2511if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002512 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD, 1,
2513 [Define if your password has a pw_class field])
Damien Millerad833b32000-08-23 10:46:23 +10002514fi
2515
Kevin Steves82456952001-06-22 21:14:18 +00002516AC_CACHE_CHECK([for pw_expire field in struct passwd],
2517 ac_cv_have_pw_expire_in_struct_passwd, [
2518 AC_TRY_COMPILE(
2519 [
2520#include <pwd.h>
2521 ],
2522 [ struct passwd p; p.pw_expire = 0; ],
2523 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
2524 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
2525 )
2526])
2527if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002528 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD, 1,
2529 [Define if your password has a pw_expire field])
Kevin Steves82456952001-06-22 21:14:18 +00002530fi
2531
2532AC_CACHE_CHECK([for pw_change field in struct passwd],
2533 ac_cv_have_pw_change_in_struct_passwd, [
2534 AC_TRY_COMPILE(
2535 [
2536#include <pwd.h>
2537 ],
2538 [ struct passwd p; p.pw_change = 0; ],
2539 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
2540 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
2541 )
2542])
2543if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002544 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD, 1,
2545 [Define if your password has a pw_change field])
Kevin Steves82456952001-06-22 21:14:18 +00002546fi
Damien Miller61e50f12000-05-08 20:49:37 +10002547
Tim Rice28bbb0c2002-05-27 17:37:32 -07002548dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00002549AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
2550 ac_cv_have_accrights_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10002551 AC_COMPILE_IFELSE(
Kevin Steves939c9db2002-03-22 17:23:25 +00002552 [
Tim Riceae49fe62002-04-12 10:26:21 -07002553#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00002554#include <sys/socket.h>
2555#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07002556int main() {
2557#ifdef msg_accrights
Darren Tuckera0c2b392004-09-11 23:26:37 +10002558#error "msg_accrights is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07002559exit(1);
2560#endif
2561struct msghdr m;
2562m.msg_accrights = 0;
2563exit(0);
2564}
Kevin Steves939c9db2002-03-22 17:23:25 +00002565 ],
Kevin Steves939c9db2002-03-22 17:23:25 +00002566 [ ac_cv_have_accrights_in_msghdr="yes" ],
2567 [ ac_cv_have_accrights_in_msghdr="no" ]
2568 )
2569])
2570if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002571 AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR, 1,
2572 [Define if your system uses access rights style
2573 file descriptor passing])
Kevin Steves939c9db2002-03-22 17:23:25 +00002574fi
2575
Kevin Stevesa44e0352002-04-07 16:18:03 +00002576AC_CACHE_CHECK([for msg_control field in struct msghdr],
2577 ac_cv_have_control_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10002578 AC_COMPILE_IFELSE(
Kevin Stevesa44e0352002-04-07 16:18:03 +00002579 [
Tim Riceae49fe62002-04-12 10:26:21 -07002580#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00002581#include <sys/socket.h>
2582#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07002583int main() {
2584#ifdef msg_control
Darren Tuckera0c2b392004-09-11 23:26:37 +10002585#error "msg_control is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07002586exit(1);
2587#endif
2588struct msghdr m;
2589m.msg_control = 0;
2590exit(0);
2591}
Kevin Stevesa44e0352002-04-07 16:18:03 +00002592 ],
Kevin Stevesa44e0352002-04-07 16:18:03 +00002593 [ ac_cv_have_control_in_msghdr="yes" ],
2594 [ ac_cv_have_control_in_msghdr="no" ]
2595 )
2596])
2597if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002598 AC_DEFINE(HAVE_CONTROL_IN_MSGHDR, 1,
2599 [Define if your system uses ancillary data style
2600 file descriptor passing])
Kevin Stevesa44e0352002-04-07 16:18:03 +00002601fi
2602
Damien Miller61e50f12000-05-08 20:49:37 +10002603AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002604 AC_TRY_LINK([],
2605 [ extern char *__progname; printf("%s", __progname); ],
Damien Miller61e50f12000-05-08 20:49:37 +10002606 [ ac_cv_libc_defines___progname="yes" ],
2607 [ ac_cv_libc_defines___progname="no" ]
2608 )
2609])
2610if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002611 AC_DEFINE(HAVE___PROGNAME, 1, [Define if libc defines __progname])
Damien Miller61e50f12000-05-08 20:49:37 +10002612fi
2613
Kevin Steves4846f4a2002-03-22 18:19:53 +00002614AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
2615 AC_TRY_LINK([
2616#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002617],
2618 [ printf("%s", __FUNCTION__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00002619 [ ac_cv_cc_implements___FUNCTION__="yes" ],
2620 [ ac_cv_cc_implements___FUNCTION__="no" ]
2621 )
2622])
2623if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002624 AC_DEFINE(HAVE___FUNCTION__, 1,
2625 [Define if compiler implements __FUNCTION__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00002626fi
2627
2628AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
2629 AC_TRY_LINK([
2630#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002631],
2632 [ printf("%s", __func__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00002633 [ ac_cv_cc_implements___func__="yes" ],
2634 [ ac_cv_cc_implements___func__="no" ]
2635 )
2636])
2637if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002638 AC_DEFINE(HAVE___func__, 1, [Define if compiler implements __func__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00002639fi
2640
Damien Miller4f8e6692001-07-14 13:22:53 +10002641AC_CACHE_CHECK([whether getopt has optreset support],
2642 ac_cv_have_getopt_optreset, [
2643 AC_TRY_LINK(
2644 [
2645#include <getopt.h>
2646 ],
2647 [ extern int optreset; optreset = 0; ],
2648 [ ac_cv_have_getopt_optreset="yes" ],
2649 [ ac_cv_have_getopt_optreset="no" ]
2650 )
2651])
2652if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002653 AC_DEFINE(HAVE_GETOPT_OPTRESET, 1,
2654 [Define if your getopt(3) defines and uses optreset])
Damien Miller4f8e6692001-07-14 13:22:53 +10002655fi
Damien Millera22ba012000-03-02 23:09:20 +11002656
Damien Millerecbb26d2000-07-15 14:59:14 +10002657AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002658 AC_TRY_LINK([],
2659 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
Damien Millerecbb26d2000-07-15 14:59:14 +10002660 [ ac_cv_libc_defines_sys_errlist="yes" ],
2661 [ ac_cv_libc_defines_sys_errlist="no" ]
2662 )
2663])
2664if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002665 AC_DEFINE(HAVE_SYS_ERRLIST, 1,
2666 [Define if your system defines sys_errlist[]])
Damien Millerecbb26d2000-07-15 14:59:14 +10002667fi
2668
2669
Damien Miller11fa2cc2000-08-16 10:35:58 +10002670AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002671 AC_TRY_LINK([],
2672 [ extern int sys_nerr; printf("%i", sys_nerr);],
Damien Miller11fa2cc2000-08-16 10:35:58 +10002673 [ ac_cv_libc_defines_sys_nerr="yes" ],
2674 [ ac_cv_libc_defines_sys_nerr="no" ]
2675 )
2676])
2677if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002678 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if your system defines sys_nerr])
Damien Miller11fa2cc2000-08-16 10:35:58 +10002679fi
2680
Damien Millera8e06ce2003-11-21 23:48:55 +11002681SCARD_MSG="no"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002682# Check whether user wants sectok support
2683AC_ARG_WITH(sectok,
2684 [ --with-sectok Enable smartcard support using libsectok],
Damien Miller85de5802001-09-18 14:01:11 +10002685 [
2686 if test "x$withval" != "xno" ; then
2687 if test "x$withval" != "xyes" ; then
2688 CPPFLAGS="$CPPFLAGS -I${withval}"
2689 LDFLAGS="$LDFLAGS -L${withval}"
2690 if test ! -z "$need_dash_r" ; then
2691 LDFLAGS="$LDFLAGS -R${withval}"
2692 fi
2693 if test ! -z "$blibpath" ; then
2694 blibpath="$blibpath:${withval}"
2695 fi
2696 fi
2697 AC_CHECK_HEADERS(sectok.h)
2698 if test "$ac_cv_header_sectok_h" != yes; then
2699 AC_MSG_ERROR(Can't find sectok.h)
2700 fi
2701 AC_CHECK_LIB(sectok, sectok_open)
2702 if test "$ac_cv_lib_sectok_sectok_open" != yes; then
2703 AC_MSG_ERROR(Can't find libsectok)
2704 fi
Tim Rice7df8d392005-09-19 09:33:39 -07002705 AC_DEFINE(SMARTCARD, 1,
2706 [Define if you want smartcard support])
2707 AC_DEFINE(USE_SECTOK, 1,
2708 [Define if you want smartcard support
2709 using sectok])
Damien Millera8e06ce2003-11-21 23:48:55 +11002710 SCARD_MSG="yes, using sectok"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002711 fi
2712 ]
2713)
2714
2715# Check whether user wants OpenSC support
Tim Rice12ee8e22005-03-17 13:37:04 -08002716OPENSC_CONFIG="no"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002717AC_ARG_WITH(opensc,
Tim Rice12ee8e22005-03-17 13:37:04 -08002718 [--with-opensc[[=PFX]] Enable smartcard support using OpenSC (optionally in PATH)],
2719 [
2720 if test "x$withval" != "xno" ; then
2721 if test "x$withval" != "xyes" ; then
2722 OPENSC_CONFIG=$withval/bin/opensc-config
2723 else
2724 AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no)
2725 fi
2726 if test "$OPENSC_CONFIG" != "no"; then
2727 LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags`
2728 LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs`
2729 CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS"
2730 LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS"
2731 AC_DEFINE(SMARTCARD)
Tim Rice7df8d392005-09-19 09:33:39 -07002732 AC_DEFINE(USE_OPENSC, 1,
2733 [Define if you want smartcard support
2734 using OpenSC])
Tim Rice12ee8e22005-03-17 13:37:04 -08002735 SCARD_MSG="yes, using OpenSC"
2736 fi
2737 fi
2738 ]
2739)
Damien Miller85de5802001-09-18 14:01:11 +10002740
Darren Tucker5f88d342003-10-15 16:57:57 +10002741# Check libraries needed by DNS fingerprint support
Damien Millera8e06ce2003-11-21 23:48:55 +11002742AC_SEARCH_LIBS(getrrsetbyname, resolv,
Tim Rice7df8d392005-09-19 09:33:39 -07002743 [AC_DEFINE(HAVE_GETRRSETBYNAME, 1,
2744 [Define if getrrsetbyname() exists])],
Damien Miller7abe09b2003-05-15 10:53:49 +10002745 [
Darren Tucker5f88d342003-10-15 16:57:57 +10002746 # Needed by our getrrsetbyname()
2747 AC_SEARCH_LIBS(res_query, resolv)
2748 AC_SEARCH_LIBS(dn_expand, resolv)
Darren Tucker8e968a52004-05-13 11:56:16 +10002749 AC_MSG_CHECKING(if res_query will link)
2750 AC_TRY_LINK_FUNC(res_query, AC_MSG_RESULT(yes),
2751 [AC_MSG_RESULT(no)
2752 saved_LIBS="$LIBS"
2753 LIBS="$LIBS -lresolv"
2754 AC_MSG_CHECKING(for res_query in -lresolv)
2755 AC_LINK_IFELSE([
2756#include <resolv.h>
2757int main()
2758{
2759 res_query (0, 0, 0, 0, 0);
2760 return 0;
2761}
2762 ],
2763 [LIBS="$LIBS -lresolv"
2764 AC_MSG_RESULT(yes)],
2765 [LIBS="$saved_LIBS"
2766 AC_MSG_RESULT(no)])
2767 ])
Darren Tucker5f88d342003-10-15 16:57:57 +10002768 AC_CHECK_FUNCS(_getshort _getlong)
Darren Tuckerd886e1c2005-06-01 18:57:45 +10002769 AC_CHECK_DECLS([_getshort, _getlong], , ,
Tim Ricefcc7ff12005-06-02 20:28:29 -07002770 [#include <sys/types.h>
2771 #include <arpa/nameser.h>])
Darren Tucker5f88d342003-10-15 16:57:57 +10002772 AC_CHECK_MEMBER(HEADER.ad,
Tim Rice7df8d392005-09-19 09:33:39 -07002773 [AC_DEFINE(HAVE_HEADER_AD, 1,
2774 [Define if HEADER.ad exists in arpa/nameser.h])],,
Darren Tucker5f88d342003-10-15 16:57:57 +10002775 [#include <arpa/nameser.h>])
2776 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10002777
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002778# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11002779KRB5_MSG="no"
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002780AC_ARG_WITH(kerberos5,
Damien Millera8e06ce2003-11-21 23:48:55 +11002781 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11002782 [ if test "x$withval" != "xno" ; then
2783 if test "x$withval" = "xyes" ; then
2784 KRB5ROOT="/usr/local"
2785 else
2786 KRB5ROOT=${withval}
2787 fi
2788
Tim Rice7df8d392005-09-19 09:33:39 -07002789 AC_DEFINE(KRB5, 1, [Define if you want Kerberos 5 support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11002790 KRB5_MSG="yes"
2791
2792 AC_MSG_CHECKING(for krb5-config)
2793 if test -x $KRB5ROOT/bin/krb5-config ; then
2794 KRB5CONF=$KRB5ROOT/bin/krb5-config
2795 AC_MSG_RESULT($KRB5CONF)
2796
2797 AC_MSG_CHECKING(for gssapi support)
2798 if $KRB5CONF | grep gssapi >/dev/null ; then
2799 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07002800 AC_DEFINE(GSSAPI, 1,
2801 [Define this if you want GSSAPI
2802 support in the version 2 protocol])
Darren Tucker0d27ed12004-02-24 10:37:33 +11002803 k5confopts=gssapi
Damien Millera8e06ce2003-11-21 23:48:55 +11002804 else
Darren Tucker1d3ca582004-01-22 12:05:34 +11002805 AC_MSG_RESULT(no)
Darren Tucker0d27ed12004-02-24 10:37:33 +11002806 k5confopts=""
Damien Millera8e06ce2003-11-21 23:48:55 +11002807 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11002808 K5CFLAGS="`$KRB5CONF --cflags $k5confopts`"
2809 K5LIBS="`$KRB5CONF --libs $k5confopts`"
Darren Tucker1d3ca582004-01-22 12:05:34 +11002810 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11002811 AC_MSG_CHECKING(whether we are using Heimdal)
2812 AC_TRY_COMPILE([ #include <krb5.h> ],
2813 [ char *tmp = heimdal_version; ],
2814 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07002815 AC_DEFINE(HEIMDAL, 1,
2816 [Define this if you are using the
2817 Heimdal version of Kerberos V5]) ],
Darren Tucker1d3ca582004-01-22 12:05:34 +11002818 AC_MSG_RESULT(no)
2819 )
2820 else
2821 AC_MSG_RESULT(no)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002822 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11002823 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Damien Millera8e06ce2003-11-21 23:48:55 +11002824 AC_MSG_CHECKING(whether we are using Heimdal)
2825 AC_TRY_COMPILE([ #include <krb5.h> ],
2826 [ char *tmp = heimdal_version; ],
2827 [ AC_MSG_RESULT(yes)
2828 AC_DEFINE(HEIMDAL)
Damien Miller5561e0b2004-04-20 20:28:55 +10002829 K5LIBS="-lkrb5 -ldes"
2830 K5LIBS="$K5LIBS -lcom_err -lasn1"
Tim Riceeae17cc2005-03-17 16:52:20 -08002831 AC_CHECK_LIB(roken, net_write,
Damien Miller5561e0b2004-04-20 20:28:55 +10002832 [K5LIBS="$K5LIBS -lroken"])
Damien Millera8e06ce2003-11-21 23:48:55 +11002833 ],
2834 [ AC_MSG_RESULT(no)
2835 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
2836 ]
2837 )
Damien Miller200d0a72003-06-30 19:21:36 +10002838 AC_SEARCH_LIBS(dn_expand, resolv)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002839
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002840 AC_CHECK_LIB(gssapi,gss_init_sec_context,
2841 [ AC_DEFINE(GSSAPI)
2842 K5LIBS="-lgssapi $K5LIBS" ],
2843 [ AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context,
2844 [ AC_DEFINE(GSSAPI)
Damien Millera8e06ce2003-11-21 23:48:55 +11002845 K5LIBS="-lgssapi_krb5 $K5LIBS" ],
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002846 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
2847 $K5LIBS)
2848 ],
2849 $K5LIBS)
Tim Riceeae17cc2005-03-17 16:52:20 -08002850
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002851 AC_CHECK_HEADER(gssapi.h, ,
2852 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11002853 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002854 AC_CHECK_HEADERS(gssapi.h, ,
2855 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11002856 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002857 ]
2858 )
2859
2860 oldCPP="$CPPFLAGS"
2861 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
2862 AC_CHECK_HEADER(gssapi_krb5.h, ,
2863 [ CPPFLAGS="$oldCPP" ])
2864
Damien Millera8e06ce2003-11-21 23:48:55 +11002865 fi
Darren Tucker1d3ca582004-01-22 12:05:34 +11002866 if test ! -z "$need_dash_r" ; then
2867 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
2868 fi
2869 if test ! -z "$blibpath" ; then
2870 blibpath="$blibpath:${KRB5ROOT}/lib"
2871 fi
Tim Ricefd9e9e32005-09-12 17:36:10 -07002872
2873 AC_CHECK_HEADERS(gssapi.h gssapi/gssapi.h)
2874 AC_CHECK_HEADERS(gssapi_krb5.h gssapi/gssapi_krb5.h)
2875 AC_CHECK_HEADERS(gssapi_generic.h gssapi/gssapi_generic.h)
2876
2877 LIBS="$LIBS $K5LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07002878 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS, 1,
2879 [Define this if you want to use libkafs' AFS support]))
Darren Tucker0d27ed12004-02-24 10:37:33 +11002880 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11002881 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002882)
Damien Millerc79bc0d2001-03-28 13:03:42 +10002883
Damien Millera22ba012000-03-02 23:09:20 +11002884# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11002885
Damien Millerf58c6722002-05-13 13:15:42 +10002886PRIVSEP_PATH=/var/empty
2887AC_ARG_WITH(privsep-path,
Tim Ricecbb90662002-07-08 19:17:10 -07002888 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10002889 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002890 if test -n "$withval" && test "x$withval" != "xno" && \
2891 test "x${withval}" != "xyes"; then
Damien Millerf58c6722002-05-13 13:15:42 +10002892 PRIVSEP_PATH=$withval
2893 fi
2894 ]
2895)
2896AC_SUBST(PRIVSEP_PATH)
2897
Damien Millera22ba012000-03-02 23:09:20 +11002898AC_ARG_WITH(xauth,
2899 [ --with-xauth=PATH Specify path to xauth program ],
2900 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002901 if test -n "$withval" && test "x$withval" != "xno" && \
2902 test "x${withval}" != "xyes"; then
Damien Miller7b22d652000-06-18 14:07:04 +10002903 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11002904 fi
2905 ],
2906 [
Tim Ricee22be3b2002-07-17 19:20:07 -07002907 TestPath="$PATH"
2908 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
2909 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
2910 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
2911 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
2912 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
Damien Milleredb82922000-06-20 13:25:52 +10002913 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11002914 xauth_path="/usr/openwin/bin/xauth"
2915 fi
2916 ]
2917)
2918
Damien Miller7d901272003-01-13 16:55:22 +11002919STRIP_OPT=-s
2920AC_ARG_ENABLE(strip,
2921 [ --disable-strip Disable calling strip(1) on install],
2922 [
2923 if test "x$enableval" = "xno" ; then
2924 STRIP_OPT=
2925 fi
2926 ]
2927)
2928AC_SUBST(STRIP_OPT)
2929
Damien Millera19cf472000-11-29 13:28:50 +11002930if test -z "$xauth_path" ; then
2931 XAUTH_PATH="undefined"
2932 AC_SUBST(XAUTH_PATH)
2933else
Tim Rice7df8d392005-09-19 09:33:39 -07002934 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path",
2935 [Define if xauth is found in your path])
Damien Millera19cf472000-11-29 13:28:50 +11002936 XAUTH_PATH=$xauth_path
2937 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11002938fi
Damien Millera22ba012000-03-02 23:09:20 +11002939
2940# Check for mail directory (last resort if we cannot get it from headers)
2941if test ! -z "$MAIL" ; then
2942 maildir=`dirname $MAIL`
Tim Rice7df8d392005-09-19 09:33:39 -07002943 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir",
2944 [Set this to your mail directory if you don't have maillock.h])
Damien Millera22ba012000-03-02 23:09:20 +11002945fi
2946
Darren Tucker623d92f2004-09-12 22:36:15 +10002947if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10002948 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
2949 disable_ptmx_check=yes
2950fi
Damien Millera22ba012000-03-02 23:09:20 +11002951if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00002952 if test "x$disable_ptmx_check" != "xyes" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11002953 AC_CHECK_FILE("/dev/ptmx",
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00002954 [
Tim Rice7df8d392005-09-19 09:33:39 -07002955 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX, 1,
2956 [Define if you have /dev/ptmx])
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00002957 have_dev_ptmx=1
2958 ]
2959 )
2960 fi
Damien Millera22ba012000-03-02 23:09:20 +11002961fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10002962
Darren Tucker623d92f2004-09-12 22:36:15 +10002963if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10002964 AC_CHECK_FILE("/dev/ptc",
2965 [
Tim Rice7df8d392005-09-19 09:33:39 -07002966 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC, 1,
2967 [Define if you have /dev/ptc])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002968 have_dev_ptc=1
2969 ]
2970 )
2971else
2972 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
2973fi
Damien Miller204ad072000-03-02 23:56:12 +11002974
Damien Millera22ba012000-03-02 23:09:20 +11002975# Options from here on. Some of these are preset by platform above
Ben Lindstrom9841b0a2001-06-09 02:26:58 +00002976AC_ARG_WITH(mantype,
Damien Miller897741e2001-04-16 10:41:46 +10002977 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11002978 [
Damien Miller897741e2001-04-16 10:41:46 +10002979 case "$withval" in
2980 man|cat|doc)
2981 MANTYPE=$withval
2982 ;;
2983 *)
2984 AC_MSG_ERROR(invalid man type: $withval)
2985 ;;
2986 esac
Damien Miller670a4b82000-01-22 13:53:11 +11002987 ]
2988)
Ben Lindstrombc709922001-04-18 18:04:21 +00002989if test -z "$MANTYPE"; then
Tim Ricee22be3b2002-07-17 19:20:07 -07002990 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
2991 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
Ben Lindstrombc709922001-04-18 18:04:21 +00002992 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
2993 MANTYPE=doc
2994 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
2995 MANTYPE=man
2996 else
2997 MANTYPE=cat
2998 fi
2999fi
Damien Miller670a4b82000-01-22 13:53:11 +11003000AC_SUBST(MANTYPE)
Ben Lindstrombc709922001-04-18 18:04:21 +00003001if test "$MANTYPE" = "doc"; then
3002 mansubdir=man;
3003else
3004 mansubdir=$MANTYPE;
3005fi
3006AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11003007
Damien Millera22ba012000-03-02 23:09:20 +11003008# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11003009MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11003010AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003011 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11003012 [
Damien Millerb85dcad2000-03-11 11:37:00 +11003013 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003014 AC_DEFINE(HAVE_MD5_PASSWORDS, 1,
3015 [Define if you want to allow MD5 passwords])
Damien Millera8e06ce2003-11-21 23:48:55 +11003016 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11003017 fi
3018 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003019)
3020
Damien Millera22ba012000-03-02 23:09:20 +11003021# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11003022AC_ARG_WITH(shadow,
3023 [ --without-shadow Disable shadow password support],
3024 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003025 if test "x$withval" = "xno" ; then
Damien Miller76112de1999-12-21 11:18:08 +11003026 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10003027 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11003028 fi
3029 ]
3030)
3031
Damien Miller1f335fb2000-06-26 11:31:33 +10003032if test -z "$disable_shadow" ; then
3033 AC_MSG_CHECKING([if the systems has expire shadow information])
3034 AC_TRY_COMPILE(
3035 [
3036#include <sys/types.h>
3037#include <shadow.h>
3038 struct spwd sp;
3039 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
3040 [ sp_expire_available=yes ], []
3041 )
3042
3043 if test "x$sp_expire_available" = "xyes" ; then
3044 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003045 AC_DEFINE(HAS_SHADOW_EXPIRE, 1,
3046 [Define if you want to use shadow password expire field])
Damien Miller1f335fb2000-06-26 11:31:33 +10003047 else
3048 AC_MSG_RESULT(no)
3049 fi
3050fi
3051
Damien Millera22ba012000-03-02 23:09:20 +11003052# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11003053if test ! -z "$IPADDR_IN_DISPLAY" ; then
3054 DISPLAY_HACK_MSG="yes"
Tim Rice7df8d392005-09-19 09:33:39 -07003055 AC_DEFINE(IPADDR_IN_DISPLAY, 1,
3056 [Define if you need to use IP address
3057 instead of hostname in $DISPLAY])
Damien Miller9a947342000-08-30 10:03:33 +11003058else
Damien Millera8e06ce2003-11-21 23:48:55 +11003059 DISPLAY_HACK_MSG="no"
Damien Miller9a947342000-08-30 10:03:33 +11003060 AC_ARG_WITH(ipaddr-display,
3061 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
3062 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003063 if test "x$withval" != "xno" ; then
Damien Miller9a947342000-08-30 10:03:33 +11003064 AC_DEFINE(IPADDR_IN_DISPLAY)
Damien Millera8e06ce2003-11-21 23:48:55 +11003065 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11003066 fi
3067 ]
3068 )
3069fi
Damien Miller76112de1999-12-21 11:18:08 +11003070
Darren Tuckere1a790d2003-09-16 11:52:19 +10003071# check for /etc/default/login and use it if present.
Tim Rice7ff4e6d2003-09-22 19:50:14 -07003072AC_ARG_ENABLE(etc-default-login,
Darren Tucker1b6f2292005-02-11 16:11:49 +11003073 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
Darren Tucker2f9573d2005-02-10 22:28:54 +11003074 [ if test "x$enableval" = "xno"; then
3075 AC_MSG_NOTICE([/etc/default/login handling disabled])
3076 etc_default_login=no
3077 else
3078 etc_default_login=yes
3079 fi ],
3080 [ etc_default_login=yes ]
3081)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003082
Darren Tucker2f9573d2005-02-10 22:28:54 +11003083if test "x$etc_default_login" != "xno"; then
3084 AC_CHECK_FILE("/etc/default/login",
3085 [ external_path_file=/etc/default/login ])
Darren Tucker623d92f2004-09-12 22:36:15 +10003086 if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
3087 then
Darren Tuckera0c2b392004-09-11 23:26:37 +10003088 AC_MSG_WARN([cross compiling: Disabling /etc/default/login test])
3089 elif test "x$external_path_file" = "x/etc/default/login"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003090 AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN, 1,
3091 [Define if your system has /etc/default/login])
Darren Tuckera0c2b392004-09-11 23:26:37 +10003092 fi
Darren Tucker2f9573d2005-02-10 22:28:54 +11003093fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003094
Tim Rice43a1c132002-04-17 21:19:14 -07003095dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
Tim Rice8bb561b2005-03-17 16:23:19 -08003096if test $ac_cv_func_login_getcapbool = "yes" && \
3097 test $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003098 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07003099fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003100
Damien Millera22ba012000-03-02 23:09:20 +11003101# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11003102SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11003103AC_ARG_WITH(default-path,
Damien Millerf71d2a52002-05-13 15:14:08 +10003104 [ --with-default-path= Specify default \$PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11003105 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10003106 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07003107 AC_MSG_WARN([
3108--with-default-path=PATH has no effect on this system.
3109Edit /etc/login.conf instead.])
Tim Riceeae17cc2005-03-17 16:52:20 -08003110 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07003111 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003112 AC_MSG_WARN([
3113--with-default-path=PATH will only be used if PATH is not defined in
3114$external_path_file .])
3115 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003116 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11003117 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11003118 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003119 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10003120 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
3121 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07003122 else
Tim Riceb925b4b2003-09-15 22:40:49 -07003123 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003124 AC_MSG_WARN([
3125If PATH is defined in $external_path_file, ensure the path to scp is included,
3126otherwise scp will not work.])
3127 fi
3128 AC_TRY_RUN(
3129 [
Tim Rice59ea0a02001-03-10 13:50:45 -08003130/* find out what STDPATH is */
3131#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08003132#ifdef HAVE_PATHS_H
3133# include <paths.h>
3134#endif
3135#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08003136# ifdef _PATH_USERPATH /* Irix */
3137# define _PATH_STDPATH _PATH_USERPATH
3138# else
3139# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
3140# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08003141#endif
3142#include <sys/types.h>
3143#include <sys/stat.h>
3144#include <fcntl.h>
3145#define DATA "conftest.stdpath"
3146
3147main()
3148{
3149 FILE *fd;
3150 int rc;
Tim Riceeae17cc2005-03-17 16:52:20 -08003151
Tim Rice59ea0a02001-03-10 13:50:45 -08003152 fd = fopen(DATA,"w");
3153 if(fd == NULL)
3154 exit(1);
Tim Riceeae17cc2005-03-17 16:52:20 -08003155
Tim Rice59ea0a02001-03-10 13:50:45 -08003156 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
3157 exit(1);
3158
3159 exit(0);
3160}
3161 ], [ user_path=`cat conftest.stdpath` ],
3162 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
3163 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
3164 )
3165# make sure $bindir is in USER_PATH so scp will work
3166 t_bindir=`eval echo ${bindir}`
3167 case $t_bindir in
3168 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
3169 esac
3170 case $t_bindir in
3171 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
3172 esac
3173 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
3174 if test $? -ne 0 ; then
3175 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
3176 if test $? -ne 0 ; then
3177 user_path=$user_path:$t_bindir
3178 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
3179 fi
3180 fi
Tim Rice43a1c132002-04-17 21:19:14 -07003181 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11003182)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003183if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003184 AC_DEFINE_UNQUOTED(USER_PATH, "$user_path", [Specify default $PATH])
Tim Rice43a1c132002-04-17 21:19:14 -07003185 AC_SUBST(user_path)
3186fi
Damien Miller5a3e6831999-12-27 09:48:56 +11003187
Damien Millera18bbd32002-05-13 10:48:57 +10003188# Set superuser path separately to user path
Damien Millera18bbd32002-05-13 10:48:57 +10003189AC_ARG_WITH(superuser-path,
3190 [ --with-superuser-path= Specify different path for super-user],
3191 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003192 if test -n "$withval" && test "x$withval" != "xno" && \
3193 test "x${withval}" != "xyes"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003194 AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval",
3195 [Define if you want a different $PATH
3196 for the superuser])
Damien Millera18bbd32002-05-13 10:48:57 +10003197 superuser_path=$withval
3198 fi
3199 ]
3200)
3201
3202
Damien Miller61e50f12000-05-08 20:49:37 +10003203AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11003204IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11003205AC_ARG_WITH(4in6,
3206 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
3207 [
3208 if test "x$withval" != "xno" ; then
3209 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003210 AC_DEFINE(IPV4_IN_IPV6, 1,
3211 [Detect IPv4 in IPv6 mapped addresses
3212 and treat as IPv4])
Damien Millera8e06ce2003-11-21 23:48:55 +11003213 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003214 else
3215 AC_MSG_RESULT(no)
3216 fi
3217 ],[
3218 if test "x$inet6_default_4in6" = "xyes"; then
3219 AC_MSG_RESULT([yes (default)])
3220 AC_DEFINE(IPV4_IN_IPV6)
Damien Millera8e06ce2003-11-21 23:48:55 +11003221 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003222 else
3223 AC_MSG_RESULT([no (default)])
3224 fi
3225 ]
3226)
3227
Damien Miller60396b02001-02-18 17:01:00 +11003228# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11003229BSD_AUTH_MSG=no
Damien Miller60396b02001-02-18 17:01:00 +11003230AC_ARG_WITH(bsd-auth,
3231 [ --with-bsd-auth Enable BSD auth support],
3232 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003233 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003234 AC_DEFINE(BSD_AUTH, 1,
3235 [Define if you have BSD auth support])
Damien Miller6c21c512002-01-22 21:57:53 +11003236 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11003237 fi
3238 ]
3239)
3240
Damien Millera22ba012000-03-02 23:09:20 +11003241# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11003242piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11003243# make sure the directory exists
Tim Riceeae17cc2005-03-17 16:52:20 -08003244if test ! -d $piddir ; then
Damien Miller78315eb2000-09-29 23:01:36 +11003245 piddir=`eval echo ${sysconfdir}`
3246 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11003247 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11003248 esac
3249fi
3250
Tim Rice88f2ab52002-03-17 12:17:34 -08003251AC_ARG_WITH(pid-dir,
3252 [ --with-pid-dir=PATH Specify location of ssh.pid file],
3253 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003254 if test -n "$withval" && test "x$withval" != "xno" && \
3255 test "x${withval}" != "xyes"; then
Tim Rice88f2ab52002-03-17 12:17:34 -08003256 piddir=$withval
Tim Riceeae17cc2005-03-17 16:52:20 -08003257 if test ! -d $piddir ; then
Tim Rice88f2ab52002-03-17 12:17:34 -08003258 AC_MSG_WARN([** no $piddir directory on this system **])
3259 fi
3260 fi
3261 ]
3262)
3263
Tim Rice7df8d392005-09-19 09:33:39 -07003264AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir", [Specify location of ssh.pid])
Damien Millerb13c73e2000-01-17 22:02:17 +11003265AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11003266
andre2ff7b5d2000-06-03 14:57:40 +00003267dnl allow user to disable some login recording features
3268AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00003269 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003270 [
3271 if test "x$enableval" = "xno" ; then
3272 AC_DEFINE(DISABLE_LASTLOG)
3273 fi
3274 ]
andre2ff7b5d2000-06-03 14:57:40 +00003275)
3276AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00003277 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003278 [
3279 if test "x$enableval" = "xno" ; then
3280 AC_DEFINE(DISABLE_UTMP)
3281 fi
3282 ]
andre2ff7b5d2000-06-03 14:57:40 +00003283)
3284AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00003285 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003286 [
3287 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003288 AC_DEFINE(DISABLE_UTMPX, 1,
3289 [Define if you don't want to use utmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003290 fi
3291 ]
andre2ff7b5d2000-06-03 14:57:40 +00003292)
3293AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00003294 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003295 [
3296 if test "x$enableval" = "xno" ; then
3297 AC_DEFINE(DISABLE_WTMP)
3298 fi
3299 ]
andre2ff7b5d2000-06-03 14:57:40 +00003300)
3301AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00003302 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003303 [
3304 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003305 AC_DEFINE(DISABLE_WTMPX, 1,
3306 [Define if you don't want to use wtmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003307 fi
3308 ]
andre2ff7b5d2000-06-03 14:57:40 +00003309)
3310AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00003311 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003312 [
3313 if test "x$enableval" = "xno" ; then
3314 AC_DEFINE(DISABLE_LOGIN)
3315 fi
3316 ]
andre2ff7b5d2000-06-03 14:57:40 +00003317)
3318AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00003319 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003320 [
3321 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003322 AC_DEFINE(DISABLE_PUTUTLINE, 1,
3323 [Define if you don't want to use pututline()
3324 etc. to write [uw]tmp])
Darren Tuckera3020db2003-06-28 12:54:33 +10003325 fi
3326 ]
andre2ff7b5d2000-06-03 14:57:40 +00003327)
3328AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00003329 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003330 [
3331 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003332 AC_DEFINE(DISABLE_PUTUTXLINE, 1,
3333 [Define if you don't want to use pututxline()
3334 etc. to write [uw]tmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003335 fi
3336 ]
andre2ff7b5d2000-06-03 14:57:40 +00003337)
3338AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00003339 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11003340 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003341 if test "x$withval" = "xno" ; then
Damien Miller709528a2001-01-31 09:57:55 +11003342 AC_DEFINE(DISABLE_LASTLOG)
Tim Rice35cc69d2005-03-17 16:44:25 -08003343 elif test -n "$withval" && test "x${withval}" != "xyes"; then
Damien Miller709528a2001-01-31 09:57:55 +11003344 conf_lastlog_location=$withval
3345 fi
3346 ]
3347)
andre2ff7b5d2000-06-03 14:57:40 +00003348
3349dnl lastlog, [uw]tmpx? detection
3350dnl NOTE: set the paths in the platform section to avoid the
3351dnl need for command-line parameters
3352dnl lastlog and [uw]tmp are subject to a file search if all else fails
3353
3354dnl lastlog detection
3355dnl NOTE: the code itself will detect if lastlog is a directory
3356AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
3357AC_TRY_COMPILE([
3358#include <sys/types.h>
3359#include <utmp.h>
3360#ifdef HAVE_LASTLOG_H
3361# include <lastlog.h>
3362#endif
Damien Miller2994e082000-06-04 15:51:47 +10003363#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003364# include <paths.h>
3365#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003366#ifdef HAVE_LOGIN_H
3367# include <login.h>
3368#endif
andre2ff7b5d2000-06-03 14:57:40 +00003369 ],
3370 [ char *lastlog = LASTLOG_FILE; ],
3371 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10003372 [
3373 AC_MSG_RESULT(no)
3374 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
3375 AC_TRY_COMPILE([
3376#include <sys/types.h>
3377#include <utmp.h>
3378#ifdef HAVE_LASTLOG_H
3379# include <lastlog.h>
3380#endif
3381#ifdef HAVE_PATHS_H
3382# include <paths.h>
3383#endif
3384 ],
3385 [ char *lastlog = _PATH_LASTLOG; ],
3386 [ AC_MSG_RESULT(yes) ],
3387 [
andree441aa32000-06-12 22:34:38 +00003388 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10003389 system_lastlog_path=no
3390 ])
3391 ]
andre2ff7b5d2000-06-03 14:57:40 +00003392)
Damien Miller2994e082000-06-04 15:51:47 +10003393
andre2ff7b5d2000-06-03 14:57:40 +00003394if test -z "$conf_lastlog_location"; then
3395 if test x"$system_lastlog_path" = x"no" ; then
3396 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10003397 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00003398 conf_lastlog_location=$f
3399 fi
3400 done
3401 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00003402 AC_MSG_WARN([** Cannot find lastlog **])
3403 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00003404 fi
3405 fi
3406fi
3407
3408if test -n "$conf_lastlog_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003409 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location",
3410 [Define if you want to specify the path to your lastlog file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003411fi
andre2ff7b5d2000-06-03 14:57:40 +00003412
3413dnl utmp detection
3414AC_MSG_CHECKING([if your system defines UTMP_FILE])
3415AC_TRY_COMPILE([
3416#include <sys/types.h>
3417#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10003418#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003419# include <paths.h>
3420#endif
3421 ],
3422 [ char *utmp = UTMP_FILE; ],
3423 [ AC_MSG_RESULT(yes) ],
3424 [ AC_MSG_RESULT(no)
3425 system_utmp_path=no ]
3426)
3427if test -z "$conf_utmp_location"; then
3428 if test x"$system_utmp_path" = x"no" ; then
3429 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
3430 if test -f $f ; then
3431 conf_utmp_location=$f
3432 fi
3433 done
3434 if test -z "$conf_utmp_location"; then
3435 AC_DEFINE(DISABLE_UTMP)
3436 fi
3437 fi
3438fi
3439if test -n "$conf_utmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003440 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location",
3441 [Define if you want to specify the path to your utmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003442fi
andre2ff7b5d2000-06-03 14:57:40 +00003443
3444dnl wtmp detection
3445AC_MSG_CHECKING([if your system defines WTMP_FILE])
3446AC_TRY_COMPILE([
3447#include <sys/types.h>
3448#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10003449#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003450# include <paths.h>
3451#endif
3452 ],
3453 [ char *wtmp = WTMP_FILE; ],
3454 [ AC_MSG_RESULT(yes) ],
3455 [ AC_MSG_RESULT(no)
3456 system_wtmp_path=no ]
3457)
3458if test -z "$conf_wtmp_location"; then
3459 if test x"$system_wtmp_path" = x"no" ; then
3460 for f in /usr/adm/wtmp /var/log/wtmp; do
3461 if test -f $f ; then
3462 conf_wtmp_location=$f
3463 fi
3464 done
3465 if test -z "$conf_wtmp_location"; then
3466 AC_DEFINE(DISABLE_WTMP)
3467 fi
3468 fi
3469fi
3470if test -n "$conf_wtmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003471 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location",
3472 [Define if you want to specify the path to your wtmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003473fi
andre2ff7b5d2000-06-03 14:57:40 +00003474
3475
3476dnl utmpx detection - I don't know any system so perverse as to require
3477dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
3478dnl there, though.
3479AC_MSG_CHECKING([if your system defines UTMPX_FILE])
3480AC_TRY_COMPILE([
3481#include <sys/types.h>
3482#include <utmp.h>
3483#ifdef HAVE_UTMPX_H
3484#include <utmpx.h>
3485#endif
Damien Miller2994e082000-06-04 15:51:47 +10003486#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003487# include <paths.h>
3488#endif
3489 ],
3490 [ char *utmpx = UTMPX_FILE; ],
3491 [ AC_MSG_RESULT(yes) ],
3492 [ AC_MSG_RESULT(no)
3493 system_utmpx_path=no ]
3494)
3495if test -z "$conf_utmpx_location"; then
3496 if test x"$system_utmpx_path" = x"no" ; then
3497 AC_DEFINE(DISABLE_UTMPX)
3498 fi
3499else
Tim Rice7df8d392005-09-19 09:33:39 -07003500 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location",
3501 [Define if you want to specify the path to your utmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003502fi
andre2ff7b5d2000-06-03 14:57:40 +00003503
3504dnl wtmpx detection
3505AC_MSG_CHECKING([if your system defines WTMPX_FILE])
3506AC_TRY_COMPILE([
3507#include <sys/types.h>
3508#include <utmp.h>
3509#ifdef HAVE_UTMPX_H
3510#include <utmpx.h>
3511#endif
Damien Miller2994e082000-06-04 15:51:47 +10003512#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003513# include <paths.h>
3514#endif
3515 ],
3516 [ char *wtmpx = WTMPX_FILE; ],
3517 [ AC_MSG_RESULT(yes) ],
3518 [ AC_MSG_RESULT(no)
3519 system_wtmpx_path=no ]
3520)
3521if test -z "$conf_wtmpx_location"; then
3522 if test x"$system_wtmpx_path" = x"no" ; then
3523 AC_DEFINE(DISABLE_WTMPX)
3524 fi
3525else
Tim Rice7df8d392005-09-19 09:33:39 -07003526 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location",
3527 [Define if you want to specify the path to your wtmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003528fi
andre2ff7b5d2000-06-03 14:57:40 +00003529
Damien Miller4018c192000-04-30 09:30:44 +10003530
Damien Miller29ea30d2000-03-17 10:54:15 +11003531if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10003532 LDFLAGS="$LDFLAGS $blibflags$blibpath"
3533 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11003534fi
3535
Tim Rice4cec93f2002-02-26 08:40:48 -08003536dnl remove pam and dl because they are in $LIBPAM
3537if test "$PAM_MSG" = yes ; then
Tim Rice7d2d1f12002-02-26 22:05:11 -08003538 LIBS=`echo $LIBS | sed 's/-lpam //'`
3539fi
3540if test "$ac_cv_lib_pam_pam_set_item" = yes ; then
3541 LIBS=`echo $LIBS | sed 's/-ldl //'`
Tim Rice4cec93f2002-02-26 08:40:48 -08003542fi
3543
Darren Tucker7da23cb2005-08-03 00:20:15 +10003544dnl Adding -Werror to CFLAGS early prevents configure tests from running.
3545dnl Add now.
3546CFLAGS="$CFLAGS $werror_flags"
3547
Damien Millerbac2d8a2000-09-05 16:13:06 +11003548AC_EXEEXT
Darren Tucker72c025d2005-01-18 12:05:18 +11003549AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openbsd-compat/Makefile \
3550 scard/Makefile ssh_prng_cmds survey.sh])
Tim Rice13aae5e2001-10-21 17:53:58 -07003551AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10003552
Damien Miller7b22d652000-06-18 14:07:04 +10003553# Print summary of options
3554
Damien Miller7b22d652000-06-18 14:07:04 +10003555# Someone please show me a better way :)
3556A=`eval echo ${prefix}` ; A=`eval echo ${A}`
3557B=`eval echo ${bindir}` ; B=`eval echo ${B}`
3558C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
3559D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00003560E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00003561F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10003562G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10003563H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
3564I=`eval echo ${user_path}` ; I=`eval echo ${I}`
3565J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10003566
3567echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00003568echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10003569echo " User binaries: $B"
3570echo " System binaries: $C"
3571echo " Configuration files: $D"
3572echo " Askpass program: $E"
3573echo " Manual pages: $F"
3574echo " PID file: $G"
3575echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10003576if test "x$external_path_file" = "x/etc/login.conf" ; then
3577echo " At runtime, sshd will use the path defined in $external_path_file"
3578echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07003579else
Damien Millerf58c6722002-05-13 13:15:42 +10003580echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07003581 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003582echo " (If PATH is set in $external_path_file it will be used instead. If"
3583echo " used, ensure the path to scp is present, otherwise scp will not work.)"
3584 fi
Tim Rice43a1c132002-04-17 21:19:14 -07003585fi
Damien Millera18bbd32002-05-13 10:48:57 +10003586if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10003587echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10003588fi
Damien Millerf58c6722002-05-13 13:15:42 +10003589echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10003590echo " PAM support: $PAM_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003591echo " KerberosV support: $KRB5_MSG"
3592echo " Smartcard support: $SCARD_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003593echo " S/KEY support: $SKEY_MSG"
3594echo " TCP Wrappers support: $TCPW_MSG"
3595echo " MD5 password support: $MD5_MSG"
Darren Tucker16bcc1c2004-11-07 20:14:34 +11003596echo " libedit support: $LIBEDIT_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10003597echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10003598echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
3599echo " BSD Auth support: $BSD_AUTH_MSG"
3600echo " Random number source: $RAND_MSG"
Damien Miller6c21c512002-01-22 21:57:53 +11003601if test ! -z "$USE_RAND_HELPER" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10003602echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
Damien Miller60396b02001-02-18 17:01:00 +11003603fi
3604
Damien Miller7b22d652000-06-18 14:07:04 +10003605echo ""
3606
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00003607echo " Host: ${host}"
3608echo " Compiler: ${CC}"
3609echo " Compiler flags: ${CFLAGS}"
3610echo "Preprocessor flags: ${CPPFLAGS}"
3611echo " Linker flags: ${LDFLAGS}"
Tim Rice4cec93f2002-02-26 08:40:48 -08003612echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}"
Damien Miller7b22d652000-06-18 14:07:04 +10003613
3614echo ""
3615
Tim Rice6f1f7582004-05-30 21:38:51 -07003616if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
Darren Tuckercf59d312004-08-29 21:18:09 +10003617 echo "SVR4 style packages are supported with \"make package\""
3618 echo ""
Tim Rice6f1f7582004-05-30 21:38:51 -07003619fi
3620
Damien Miller82cf0ce2000-12-20 13:34:48 +11003621if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11003622 echo "PAM is enabled. You may need to install a PAM control file "
3623 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11003624 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11003625 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11003626 echo ""
3627fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003628
Damien Miller6c21c512002-01-22 21:57:53 +11003629if test ! -z "$RAND_HELPER_CMDHASH" ; then
3630 echo "WARNING: you are using the builtin random number collection "
3631 echo "service. Please read WARNING.RNG and request that your OS "
3632 echo "vendor includes kernel-based random number collection in "
3633 echo "future versions of your OS."
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003634 echo ""
3635fi
Damien Miller60396b02001-02-18 17:01:00 +11003636
Damien Millerb4097182004-05-23 14:09:40 +10003637if test ! -z "$NO_PEERCHECK" ; then
3638 echo "WARNING: the operating system that you are using does not "
3639 echo "appear to support either the getpeereid() API nor the "
3640 echo "SO_PEERCRED getsockopt() option. These facilities are used to "
3641 echo "enforce security checks to prevent unauthorised connections to "
3642 echo "ssh-agent. Their absence increases the risk that a malicious "
3643 echo "user can connect to your agent. "
3644 echo ""
3645fi
3646
Darren Tuckerd9f88912005-02-20 21:01:48 +11003647if test "$AUDIT_MODULE" = "bsm" ; then
3648 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
3649 echo "See the Solaris section in README.platform for details."
3650fi