1 # $Id: configure.ac,v 1.347 2006/07/12 09:02:57 dtucker Exp $
3 # Copyright (c) 1999-2004 Damien Miller
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.
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.
17 AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18 AC_REVISION($Revision: 1.347 $)
19 AC_CONFIG_SRCDIR([ssh.c])
21 AC_CONFIG_HEADER(config.h)
26 # Checks for programs.
33 AC_PATH_PROG(CAT, cat)
34 AC_PATH_PROG(KILL, kill)
35 AC_PATH_PROGS(PERL, perl5 perl)
36 AC_PATH_PROG(SED, sed)
38 AC_PATH_PROG(ENT, ent)
40 AC_PATH_PROG(TEST_MINUS_S_SH, bash)
41 AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
42 AC_PATH_PROG(TEST_MINUS_S_SH, sh)
44 AC_SUBST(TEST_SHELL,sh)
47 AC_PATH_PROG(PATH_GROUPADD_PROG, groupadd, groupadd,
48 [/usr/sbin${PATH_SEPARATOR}/etc])
49 AC_PATH_PROG(PATH_USERADD_PROG, useradd, useradd,
50 [/usr/sbin${PATH_SEPARATOR}/etc])
51 AC_CHECK_PROG(MAKE_PACKAGE_SUPPORTED, pkgmk, yes, no)
52 if test -x /sbin/sh; then
53 AC_SUBST(STARTUP_SCRIPT_SHELL,/sbin/sh)
55 AC_SUBST(STARTUP_SCRIPT_SHELL,/bin/sh)
61 if test -z "$AR" ; then
62 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
65 # Use LOGIN_PROGRAM from environment if possible
66 if test ! -z "$LOGIN_PROGRAM" ; then
67 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM",
68 [If your header files don't define LOGIN_PROGRAM,
69 then use this (detected) from environment and PATH])
72 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
73 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
74 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
78 AC_PATH_PROG(PATH_PASSWD_PROG, passwd)
79 if test ! -z "$PATH_PASSWD_PROG" ; then
80 AC_DEFINE_UNQUOTED(_PATH_PASSWD_PROG, "$PATH_PASSWD_PROG",
81 [Full path of your "passwd" program])
84 if test -z "$LD" ; then
91 AC_CHECK_DECL(LLONG_MAX, have_llong_max=1, , [#include <limits.h>])
93 if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
94 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wuninitialized"
95 GCC_VER=`$CC -v 2>&1 | $AWK '/gcc version /{print $3}'`
98 2.8* | 2.9*) CFLAGS="$CFLAGS -Wsign-compare" ;;
100 3.*) CFLAGS="$CFLAGS -Wsign-compare" ;;
101 4.*) CFLAGS="$CFLAGS -Wsign-compare -Wno-pointer-sign" ;;
105 if test -z "$have_llong_max"; then
106 # retry LLONG_MAX with -std=gnu99, needed on some Linuxes
107 unset ac_cv_have_decl_LLONG_MAX
108 saved_CFLAGS="$CFLAGS"
109 CFLAGS="$CFLAGS -std=gnu99"
110 AC_CHECK_DECL(LLONG_MAX,
112 [CFLAGS="$saved_CFLAGS"],
113 [#include <limits.h>]
119 [ --without-rpath Disable auto-added -R linker paths],
121 if test "x$withval" = "xno" ; then
124 if test "x$withval" = "xyes" ; then
130 # Check for some target-specific stuff
133 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
134 if (test -z "$blibpath"); then
135 blibpath="/usr/lib:/lib"
137 saved_LDFLAGS="$LDFLAGS"
138 if test "$GCC" = "yes"; then
139 flags="-Wl,-blibpath: -Wl,-rpath, -blibpath:"
141 flags="-blibpath: -Wl,-blibpath: -Wl,-rpath,"
143 for tryflags in $flags ;do
144 if (test -z "$blibflags"); then
145 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
146 AC_TRY_LINK([], [], [blibflags=$tryflags])
149 if (test -z "$blibflags"); then
150 AC_MSG_RESULT(not found)
151 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
153 AC_MSG_RESULT($blibflags)
155 LDFLAGS="$saved_LDFLAGS"
156 dnl Check for authenticate. Might be in libs.a on older AIXes
157 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE, 1,
158 [Define if you want to enable AIX4's authenticate function])],
159 [AC_CHECK_LIB(s,authenticate,
160 [ AC_DEFINE(WITH_AIXAUTHENTICATE)
164 dnl Check for various auth function declarations in headers.
165 AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
166 passwdexpired, setauthdb], , , [#include <usersec.h>])
167 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
168 AC_CHECK_DECLS(loginfailed,
169 [AC_MSG_CHECKING(if loginfailed takes 4 arguments)
171 [#include <usersec.h>],
172 [(void)loginfailed("user","host","tty",0);],
174 AC_DEFINE(AIX_LOGINFAILED_4ARG, 1,
175 [Define if your AIX loginfailed() function
176 takes 4 arguments (AIX >= 5.2)])],
180 [#include <usersec.h>]
182 AC_CHECK_FUNCS(setauthdb)
183 check_for_aix_broken_getaddrinfo=1
184 AC_DEFINE(BROKEN_REALPATH, 1, [Define if you have a broken realpath.])
185 AC_DEFINE(SETEUID_BREAKS_SETUID, 1,
186 [Define if your platform breaks doing a seteuid before a setuid])
187 AC_DEFINE(BROKEN_SETREUID, 1, [Define if your setreuid() is broken])
188 AC_DEFINE(BROKEN_SETREGID, 1, [Define if your setregid() is broken])
189 dnl AIX handles lastlog as part of its login message
190 AC_DEFINE(DISABLE_LASTLOG, 1, [Define if you don't want to use lastlog])
191 AC_DEFINE(LOGIN_NEEDS_UTMPX, 1,
192 [Some systems need a utmpx entry for /bin/login to work])
193 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV,
194 [Define to a Set Process Title type if your system is
195 supported by bsd-setproctitle.c])
196 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
197 [AIX 5.2 and 5.3 (and presumably newer) require this])
198 AC_DEFINE(PTY_ZEROREAD, 1, [read(1) can return 0 for a non-closed fd])
201 check_for_libcrypt_later=1
202 LIBS="$LIBS /usr/lib/textmode.o"
203 AC_DEFINE(HAVE_CYGWIN, 1, [Define if you are on Cygwin])
204 AC_DEFINE(USE_PIPES, 1, [Use PIPES instead of a socketpair()])
205 AC_DEFINE(DISABLE_SHADOW, 1,
206 [Define if you want to disable shadow passwords])
207 AC_DEFINE(IP_TOS_IS_BROKEN, 1,
208 [Define if your system choked on IP TOS setting])
209 AC_DEFINE(NO_X11_UNIX_SOCKETS, 1,
210 [Define if X11 doesn't support AF_UNIX sockets on that system])
211 AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT, 1,
212 [Define if the concept of ports only accessible to
213 superusers isn't known])
214 AC_DEFINE(DISABLE_FD_PASSING, 1,
215 [Define if your platform needs to skip post auth
216 file descriptor passing])
219 AC_DEFINE(IP_TOS_IS_BROKEN)
220 AC_DEFINE(SETEUID_BREAKS_SETUID)
221 AC_DEFINE(BROKEN_SETREUID)
222 AC_DEFINE(BROKEN_SETREGID)
225 AC_MSG_CHECKING(if we have working getaddrinfo)
226 AC_TRY_RUN([#include <mach-o/dyld.h>
227 main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
231 }], [AC_MSG_RESULT(working)],
232 [AC_MSG_RESULT(buggy)
233 AC_DEFINE(BROKEN_GETADDRINFO, 1, [getaddrinfo is broken (if present)])],
234 [AC_MSG_RESULT(assume it is working)])
235 AC_DEFINE(SETEUID_BREAKS_SETUID)
236 AC_DEFINE(BROKEN_SETREUID)
237 AC_DEFINE(BROKEN_SETREGID)
238 AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1,
239 [Define if your resolver libs need this for getrrsetbyname])
240 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
241 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
242 [Use tunnel device compatibility to OpenBSD])
243 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
244 [Prepend the address family to IP tunnel traffic])
247 # first we define all of the options common to all HP-UX releases
248 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
249 IPADDR_IN_DISPLAY=yes
251 AC_DEFINE(LOGIN_NO_ENDOPT, 1,
252 [Define if your login program cannot handle end of options ("--")])
253 AC_DEFINE(LOGIN_NEEDS_UTMPX)
254 AC_DEFINE(LOCKED_PASSWD_STRING, "*",
255 [String used in /etc/passwd to denote locked account])
256 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
257 MAIL="/var/mail/username"
259 AC_CHECK_LIB(xnet, t_error, ,
260 AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
262 # next, we define all of the options specific to major releases
265 if test -z "$GCC"; then
270 AC_DEFINE(PAM_SUN_CODEBASE, 1,
271 [Define if you are using Solaris-derived PAM which
272 passes pam_messages to the conversation function
273 with an extra level of indirection])
274 AC_DEFINE(DISABLE_UTMP, 1,
275 [Define if you don't want to use utmp])
276 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
277 check_for_hpux_broken_getaddrinfo=1
278 check_for_conflicting_getspnam=1
282 # lastly, we define options specific to minor releases
285 AC_DEFINE(HAVE_SECUREWARE, 1,
286 [Define if you have SecureWare-based
287 protected password database])
288 disable_ptmx_check=yes
294 PATH="$PATH:/usr/etc"
295 AC_DEFINE(BROKEN_INET_NTOA, 1,
296 [Define if you system's inet_ntoa is busted
297 (e.g. Irix gcc issue)])
298 AC_DEFINE(SETEUID_BREAKS_SETUID)
299 AC_DEFINE(BROKEN_SETREUID)
300 AC_DEFINE(BROKEN_SETREGID)
301 AC_DEFINE(WITH_ABBREV_NO_TTY, 1,
302 [Define if you shouldn't strip 'tty' from your
304 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
307 PATH="$PATH:/usr/etc"
308 AC_DEFINE(WITH_IRIX_ARRAY, 1,
309 [Define if you have/want arrays
310 (cluster-wide session managment, not C arrays)])
311 AC_DEFINE(WITH_IRIX_PROJECT, 1,
312 [Define if you want IRIX project management])
313 AC_DEFINE(WITH_IRIX_AUDIT, 1,
314 [Define if you want IRIX audit trails])
315 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS, 1,
316 [Define if you want IRIX kernel jobs])])
317 AC_DEFINE(BROKEN_INET_NTOA)
318 AC_DEFINE(SETEUID_BREAKS_SETUID)
319 AC_DEFINE(BROKEN_SETREUID)
320 AC_DEFINE(BROKEN_SETREGID)
321 AC_DEFINE(BROKEN_UPDWTMPX, 1, [updwtmpx is broken (if present)])
322 AC_DEFINE(WITH_ABBREV_NO_TTY)
323 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
327 check_for_libcrypt_later=1
328 check_for_openpty_ctty_bug=1
329 AC_DEFINE(DONT_TRY_OTHER_AF, 1, [Workaround more Linux IPv6 quirks])
330 AC_DEFINE(PAM_TTY_KLUDGE, 1,
331 [Work around problematic Linux PAM modules handling of PAM_TTY])
332 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!",
333 [String used in /etc/passwd to denote locked account])
334 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
335 AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM,
336 [Define to whatever link() returns for "not supported"
337 if it doesn't return EOPNOTSUPP.])
338 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
340 inet6_default_4in6=yes
343 AC_DEFINE(BROKEN_CMSG_TYPE, 1,
344 [Define if cmsg_type is not passed correctly])
347 # tun(4) forwarding compat code
348 AC_CHECK_HEADERS(linux/if_tun.h)
349 if test "x$ac_cv_header_linux_if_tun_h" = "xyes" ; then
350 AC_DEFINE(SSH_TUN_LINUX, 1,
351 [Open tunnel devices the Linux tun/tap way])
352 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
353 [Use tunnel device compatibility to OpenBSD])
354 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
355 [Prepend the address family to IP tunnel traffic])
358 mips-sony-bsd|mips-sony-newsos4)
359 AC_DEFINE(NEED_SETPGRP, 1, [Need setpgrp to acquire controlling tty])
363 check_for_libcrypt_before=1
364 if test "x$withval" != "xno" ; then
367 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
368 AC_CHECK_HEADER([net/if_tap.h], ,
369 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
370 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
371 [Prepend the address family to IP tunnel traffic])
374 check_for_libcrypt_later=1
375 AC_DEFINE(LOCKED_PASSWD_PREFIX, "*LOCKED*", [Account locked with pw(1)])
376 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
377 AC_CHECK_HEADER([net/if_tap.h], ,
378 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
381 AC_DEFINE(SETEUID_BREAKS_SETUID)
382 AC_DEFINE(BROKEN_SETREUID)
383 AC_DEFINE(BROKEN_SETREGID)
386 conf_lastlog_location="/usr/adm/lastlog"
387 conf_utmp_location=/etc/utmp
388 conf_wtmp_location=/usr/adm/wtmp
390 AC_DEFINE(HAVE_NEXT, 1, [Define if you are on NeXT])
391 AC_DEFINE(BROKEN_REALPATH)
393 AC_DEFINE(BROKEN_SAVED_UIDS, 1, [Needed for NeXT])
396 AC_DEFINE(HAVE_ATTRIBUTE__SENTINEL__, 1, [OpenBSD's gcc has sentinel])
397 AC_DEFINE(HAVE_ATTRIBUTE__BOUNDED__, 1, [OpenBSD's gcc has bounded])
398 AC_DEFINE(SSH_TUN_OPENBSD, 1, [Open tunnel devices the OpenBSD way])
401 if test "x$withval" != "xno" ; then
404 AC_DEFINE(PAM_SUN_CODEBASE)
405 AC_DEFINE(LOGIN_NEEDS_UTMPX)
406 AC_DEFINE(LOGIN_NEEDS_TERM, 1,
407 [Some versions of /bin/login need the TERM supplied
409 AC_DEFINE(PAM_TTY_KLUDGE)
410 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
411 [Define if pam_chauthtok wants real uid set
412 to the unpriv'ed user])
413 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
414 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
415 AC_DEFINE(SSHD_ACQUIRES_CTTY, 1,
416 [Define if sshd somehow reacquires a controlling TTY
418 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd
419 in case the name is longer than 8 chars])
420 external_path_file=/etc/default/login
421 # hardwire lastlog location (can't detect it on some versions)
422 conf_lastlog_location="/var/adm/lastlog"
423 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
424 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
425 if test "$sol2ver" -ge 8; then
427 AC_DEFINE(DISABLE_UTMP)
428 AC_DEFINE(DISABLE_WTMP, 1,
429 [Define if you don't want to use wtmp])
435 CPPFLAGS="$CPPFLAGS -DSUNOS4"
436 AC_CHECK_FUNCS(getpwanam)
437 AC_DEFINE(PAM_SUN_CODEBASE)
438 conf_utmp_location=/etc/utmp
439 conf_wtmp_location=/var/adm/wtmp
440 conf_lastlog_location=/var/adm/lastlog
446 AC_DEFINE(SSHD_ACQUIRES_CTTY)
447 AC_DEFINE(SETEUID_BREAKS_SETUID)
448 AC_DEFINE(BROKEN_SETREUID)
449 AC_DEFINE(BROKEN_SETREGID)
452 # /usr/ucblib MUST NOT be searched on ReliantUNIX
453 AC_CHECK_LIB(dl, dlsym, ,)
454 # -lresolv needs to be at the end of LIBS or DNS lookups break
455 AC_CHECK_LIB(resolv, res_query, [ LIBS="$LIBS -lresolv" ])
456 IPADDR_IN_DISPLAY=yes
458 AC_DEFINE(IP_TOS_IS_BROKEN)
459 AC_DEFINE(SETEUID_BREAKS_SETUID)
460 AC_DEFINE(BROKEN_SETREUID)
461 AC_DEFINE(BROKEN_SETREGID)
462 AC_DEFINE(SSHD_ACQUIRES_CTTY)
463 external_path_file=/etc/default/login
464 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
465 # Attention: always take care to bind libsocket and libnsl before libc,
466 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
468 # UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
470 CFLAGS="$CFLAGS -Dva_list=_VA_LIST"
472 AC_DEFINE(SETEUID_BREAKS_SETUID)
473 AC_DEFINE(BROKEN_SETREUID)
474 AC_DEFINE(BROKEN_SETREGID)
475 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd])
476 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
478 # UnixWare 7.x, OpenUNIX 8
480 check_for_libcrypt_later=1
481 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
483 AC_DEFINE(SETEUID_BREAKS_SETUID)
484 AC_DEFINE(BROKEN_SETREUID)
485 AC_DEFINE(BROKEN_SETREGID)
486 AC_DEFINE(PASSWD_NEEDS_USERNAME)
488 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
489 TEST_SHELL=/u95/bin/sh
490 AC_DEFINE(BROKEN_LIBIAF, 1,
491 [ia_uinfo routines not supported by OS yet])
493 *) AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
499 # SCO UNIX and OEM versions of SCO UNIX
501 AC_MSG_ERROR("This Platform is no longer supported.")
505 if test -z "$GCC"; then
506 CFLAGS="$CFLAGS -belf"
508 LIBS="$LIBS -lprot -lx -ltinfo -lm"
511 AC_DEFINE(HAVE_SECUREWARE)
512 AC_DEFINE(DISABLE_SHADOW)
513 AC_DEFINE(DISABLE_FD_PASSING)
514 AC_DEFINE(SETEUID_BREAKS_SETUID)
515 AC_DEFINE(BROKEN_SETREUID)
516 AC_DEFINE(BROKEN_SETREGID)
517 AC_DEFINE(WITH_ABBREV_NO_TTY)
518 AC_DEFINE(BROKEN_UPDWTMPX)
519 AC_DEFINE(PASSWD_NEEDS_USERNAME)
520 AC_CHECK_FUNCS(getluid setluid)
525 AC_DEFINE(NO_SSH_LASTLOG, 1,
526 [Define if you don't want to use lastlog in session.c])
527 AC_DEFINE(SETEUID_BREAKS_SETUID)
528 AC_DEFINE(BROKEN_SETREUID)
529 AC_DEFINE(BROKEN_SETREGID)
531 AC_DEFINE(DISABLE_FD_PASSING)
533 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
537 AC_DEFINE(SETEUID_BREAKS_SETUID)
538 AC_DEFINE(BROKEN_SETREUID)
539 AC_DEFINE(BROKEN_SETREGID)
540 AC_DEFINE(WITH_ABBREV_NO_TTY)
542 AC_DEFINE(DISABLE_FD_PASSING)
544 LIBS="$LIBS -lgen -lacid -ldb"
548 AC_DEFINE(SETEUID_BREAKS_SETUID)
549 AC_DEFINE(BROKEN_SETREUID)
550 AC_DEFINE(BROKEN_SETREGID)
552 AC_DEFINE(DISABLE_FD_PASSING)
553 AC_DEFINE(NO_SSH_LASTLOG)
554 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
555 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
559 AC_MSG_CHECKING(for Digital Unix SIA)
562 [ --with-osfsia Enable Digital Unix SIA],
564 if test "x$withval" = "xno" ; then
565 AC_MSG_RESULT(disabled)
570 if test -z "$no_osfsia" ; then
571 if test -f /etc/sia/matrix.conf; then
573 AC_DEFINE(HAVE_OSF_SIA, 1,
574 [Define if you have Digital Unix Security
575 Integration Architecture])
576 AC_DEFINE(DISABLE_LOGIN, 1,
577 [Define if you don't want to use your
578 system's login() call])
579 AC_DEFINE(DISABLE_FD_PASSING)
580 LIBS="$LIBS -lsecurity -ldb -lm -laud"
583 AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin",
584 [String used in /etc/passwd to denote locked account])
587 AC_DEFINE(BROKEN_GETADDRINFO)
588 AC_DEFINE(SETEUID_BREAKS_SETUID)
589 AC_DEFINE(BROKEN_SETREUID)
590 AC_DEFINE(BROKEN_SETREGID)
595 AC_DEFINE(NO_X11_UNIX_SOCKETS)
596 AC_DEFINE(MISSING_NFDBITS, 1, [Define on *nto-qnx systems])
597 AC_DEFINE(MISSING_HOWMANY, 1, [Define on *nto-qnx systems])
598 AC_DEFINE(MISSING_FD_MASK, 1, [Define on *nto-qnx systems])
599 AC_DEFINE(DISABLE_LASTLOG)
600 AC_DEFINE(SSHD_ACQUIRES_CTTY)
601 enable_etc_default_login=no # has incompatible /etc/default/login
605 AC_DEFINE(BROKEN_GETGROUPS, 1, [getgroups(0,NULL) will return -1])
606 AC_DEFINE(BROKEN_MMAP, 1, [Ultrix mmap can't map files])
607 AC_DEFINE(NEED_SETPGRP)
608 AC_DEFINE(HAVE_SYS_SYSLOG_H, 1, [Force use of sys/syslog.h on Ultrix])
612 CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
613 AC_DEFINE(MISSING_HOWMANY)
614 AC_DEFINE(BROKEN_SETVBUF, 1, [LynxOS has broken setvbuf() implementation])
618 # Allow user to specify flags
620 [ --with-cflags Specify additional flags to pass to compiler],
622 if test -n "$withval" && test "x$withval" != "xno" && \
623 test "x${withval}" != "xyes"; then
624 CFLAGS="$CFLAGS $withval"
628 AC_ARG_WITH(cppflags,
629 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
631 if test -n "$withval" && test "x$withval" != "xno" && \
632 test "x${withval}" != "xyes"; then
633 CPPFLAGS="$CPPFLAGS $withval"
638 [ --with-ldflags Specify additional flags to pass to linker],
640 if test -n "$withval" && test "x$withval" != "xno" && \
641 test "x${withval}" != "xyes"; then
642 LDFLAGS="$LDFLAGS $withval"
647 [ --with-libs Specify additional libraries to link with],
649 if test -n "$withval" && test "x$withval" != "xno" && \
650 test "x${withval}" != "xyes"; then
651 LIBS="$LIBS $withval"
656 [ --with-Werror Build main code with -Werror],
658 if test -n "$withval" && test "x$withval" != "xno"; then
659 werror_flags="-Werror"
660 if test "x${withval}" != "xyes"; then
661 werror_flags="$withval"
667 AC_MSG_CHECKING(compiler and flags for sanity)
673 [ AC_MSG_RESULT(yes) ],
676 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
678 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
681 dnl Checks for header files.
707 security/pam_appl.h \
744 # lastlog.h requires sys/time.h to be included first on Solaris
745 AC_CHECK_HEADERS(lastlog.h, [], [], [
746 #ifdef HAVE_SYS_TIME_H
747 # include <sys/time.h>
751 # sys/ptms.h requires sys/stream.h to be included first on Solaris
752 AC_CHECK_HEADERS(sys/ptms.h, [], [], [
753 #ifdef HAVE_SYS_STREAM_H
754 # include <sys/stream.h>
758 # login_cap.h requires sys/types.h on NetBSD
759 AC_CHECK_HEADERS(login_cap.h, [], [], [
760 #include <sys/types.h>
763 # Checks for libraries.
764 AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
765 AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
767 dnl IRIX and Solaris 2.5.1 have dirname() in libgen
768 AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
769 AC_CHECK_LIB(gen, dirname,[
770 AC_CACHE_CHECK([for broken dirname],
771 ac_cv_have_broken_dirname, [
779 int main(int argc, char **argv) {
782 strncpy(buf,"/etc", 32);
784 if (!s || strncmp(s, "/", 32) != 0) {
791 [ ac_cv_have_broken_dirname="no" ],
792 [ ac_cv_have_broken_dirname="yes" ],
793 [ ac_cv_have_broken_dirname="no" ],
797 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
799 AC_DEFINE(HAVE_DIRNAME)
800 AC_CHECK_HEADERS(libgen.h)
805 AC_CHECK_FUNC(getspnam, ,
806 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
807 AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME, 1,
808 [Define if you have the basename function.]))
812 [ --with-zlib=PATH Use zlib in PATH],
813 [ if test "x$withval" = "xno" ; then
814 AC_MSG_ERROR([*** zlib is required ***])
815 elif test "x$withval" != "xyes"; then
816 if test -d "$withval/lib"; then
817 if test -n "${need_dash_r}"; then
818 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
820 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
823 if test -n "${need_dash_r}"; then
824 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
826 LDFLAGS="-L${withval} ${LDFLAGS}"
829 if test -d "$withval/include"; then
830 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
832 CPPFLAGS="-I${withval} ${CPPFLAGS}"
837 AC_CHECK_LIB(z, deflate, ,
839 saved_CPPFLAGS="$CPPFLAGS"
840 saved_LDFLAGS="$LDFLAGS"
842 dnl Check default zlib install dir
843 if test -n "${need_dash_r}"; then
844 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
846 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
848 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
850 AC_TRY_LINK_FUNC(deflate, AC_DEFINE(HAVE_LIBZ),
852 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
857 AC_CHECK_HEADER([zlib.h], ,AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***]))
859 AC_ARG_WITH(zlib-version-check,
860 [ --without-zlib-version-check Disable zlib version check],
861 [ if test "x$withval" = "xno" ; then
862 zlib_check_nonfatal=1
867 AC_MSG_CHECKING(for possibly buggy zlib)
868 AC_RUN_IFELSE([AC_LANG_SOURCE([[
873 int a=0, b=0, c=0, d=0, n, v;
874 n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
875 if (n != 3 && n != 4)
877 v = a*1000000 + b*10000 + c*100 + d;
878 fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
881 if (a == 1 && b == 1 && c >= 4)
884 /* 1.2.3 and up are OK */
893 if test -z "$zlib_check_nonfatal" ; then
894 AC_MSG_ERROR([*** zlib too old - check config.log ***
895 Your reported zlib version has known security problems. It's possible your
896 vendor has fixed these problems without changing the version number. If you
897 are sure this is the case, you can disable the check by running
898 "./configure --without-zlib-version-check".
899 If you are in doubt, upgrade zlib to version 1.2.3 or greater.
900 See http://www.gzip.org/zlib/ for details.])
902 AC_MSG_WARN([zlib version may have security problems])
905 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
909 AC_CHECK_FUNC(strcasecmp,
910 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
912 AC_CHECK_FUNCS(utimes,
913 [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
914 LIBS="$LIBS -lc89"]) ]
917 dnl Checks for libutil functions
918 AC_CHECK_HEADERS(libutil.h)
919 AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN, 1,
920 [Define if your libraries define login()])])
921 AC_CHECK_FUNCS(logout updwtmp logwtmp)
925 # Check for ALTDIRFUNC glob() extension
926 AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
927 AC_EGREP_CPP(FOUNDIT,
930 #ifdef GLOB_ALTDIRFUNC
935 AC_DEFINE(GLOB_HAS_ALTDIRFUNC, 1,
936 [Define if your system glob() function has
937 the GLOB_ALTDIRFUNC extension])
945 # Check for g.gl_matchc glob() extension
946 AC_MSG_CHECKING(for gl_matchc field in glob_t)
948 [ #include <glob.h> ],
949 [glob_t g; g.gl_matchc = 1;],
951 AC_DEFINE(GLOB_HAS_GL_MATCHC, 1,
952 [Define if your system glob() function has
953 gl_matchc options in glob_t])
961 AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
964 #include <sys/types.h>
966 int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
968 [AC_MSG_RESULT(yes)],
971 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
972 [Define if your struct dirent expects you to
973 allocate extra space for d_name])
976 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
977 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
981 AC_MSG_CHECKING([for /proc/pid/fd directory])
982 if test -d "/proc/$$/fd" ; then
983 AC_DEFINE(HAVE_PROC_PID, 1, [Define if you have /proc/$pid/fd])
989 # Check whether user wants S/Key support
992 [ --with-skey[[=PATH]] Enable S/Key support (optionally in PATH)],
994 if test "x$withval" != "xno" ; then
996 if test "x$withval" != "xyes" ; then
997 CPPFLAGS="$CPPFLAGS -I${withval}/include"
998 LDFLAGS="$LDFLAGS -L${withval}/lib"
1001 AC_DEFINE(SKEY, 1, [Define if you want S/Key support])
1005 AC_MSG_CHECKING([for s/key support])
1010 int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
1012 [AC_MSG_RESULT(yes)],
1015 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
1017 AC_MSG_CHECKING(if skeychallenge takes 4 arguments)
1021 [(void)skeychallenge(NULL,"name","",0);],
1023 AC_DEFINE(SKEYCHALLENGE_4ARG, 1,
1024 [Define if your skeychallenge()
1025 function takes 4 arguments (NetBSD)])],
1032 # Check whether user wants TCP wrappers support
1034 AC_ARG_WITH(tcp-wrappers,
1035 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support (optionally in PATH)],
1037 if test "x$withval" != "xno" ; then
1039 saved_LDFLAGS="$LDFLAGS"
1040 saved_CPPFLAGS="$CPPFLAGS"
1041 if test -n "${withval}" && \
1042 test "x${withval}" != "xyes"; then
1043 if test -d "${withval}/lib"; then
1044 if test -n "${need_dash_r}"; then
1045 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1047 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1050 if test -n "${need_dash_r}"; then
1051 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
1053 LDFLAGS="-L${withval} ${LDFLAGS}"
1056 if test -d "${withval}/include"; then
1057 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
1059 CPPFLAGS="-I${withval} ${CPPFLAGS}"
1063 LIBS="$LIBWRAP $LIBS"
1064 AC_MSG_CHECKING(for libwrap)
1067 #include <sys/types.h>
1068 #include <sys/socket.h>
1069 #include <netinet/in.h>
1071 int deny_severity = 0, allow_severity = 0;
1076 AC_DEFINE(LIBWRAP, 1,
1078 TCP Wrappers support])
1083 AC_MSG_ERROR([*** libwrap missing])
1091 # Check whether user wants libedit support
1093 AC_ARG_WITH(libedit,
1094 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
1095 [ if test "x$withval" != "xno" ; then
1096 if test "x$withval" != "xyes"; then
1097 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1098 if test -n "${need_dash_r}"; then
1099 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1101 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1104 AC_CHECK_LIB(edit, el_init,
1105 [ AC_DEFINE(USE_LIBEDIT, 1, [Use libedit for sftp])
1106 LIBEDIT="-ledit -lcurses"
1110 [ AC_MSG_ERROR(libedit not found) ],
1113 AC_MSG_CHECKING(if libedit version is compatible)
1116 #include <histedit.h>
1120 el_init("", NULL, NULL, NULL);
1124 [ AC_MSG_RESULT(yes) ],
1126 AC_MSG_ERROR(libedit version is not compatible) ]
1133 [ --with-audit=module Enable EXPERIMENTAL audit support (modules=debug,bsm)],
1135 AC_MSG_CHECKING(for supported audit module)
1140 dnl Checks for headers, libs and functions
1141 AC_CHECK_HEADERS(bsm/audit.h, [],
1142 [AC_MSG_ERROR(BSM enabled and bsm/audit.h not found)])
1143 AC_CHECK_LIB(bsm, getaudit, [],
1144 [AC_MSG_ERROR(BSM enabled and required library not found)])
1145 AC_CHECK_FUNCS(getaudit, [],
1146 [AC_MSG_ERROR(BSM enabled and required function not found)])
1147 # These are optional
1148 AC_CHECK_FUNCS(getaudit_addr)
1149 AC_DEFINE(USE_BSM_AUDIT, 1, [Use BSM audit module])
1153 AC_MSG_RESULT(debug)
1154 AC_DEFINE(SSH_AUDIT_EVENTS, 1, Use audit debugging module)
1160 AC_MSG_ERROR([Unknown audit module $withval])
1165 dnl Checks for library functions. Please keep in alphabetical order
1250 # IRIX has a const char return value for gai_strerror()
1251 AC_CHECK_FUNCS(gai_strerror,[
1252 AC_DEFINE(HAVE_GAI_STRERROR)
1254 #include <sys/types.h>
1255 #include <sys/socket.h>
1258 const char *gai_strerror(int);],[
1261 str = gai_strerror(0);],[
1262 AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1,
1263 [Define if gai_strerror() returns const char *])])])
1265 AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP, 1,
1266 [Some systems put nanosleep outside of libc]))
1268 dnl Make sure prototypes are defined for these before using them.
1269 AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
1270 AC_CHECK_DECL(strsep,
1271 [AC_CHECK_FUNCS(strsep)],
1274 #ifdef HAVE_STRING_H
1275 # include <string.h>
1279 dnl tcsendbreak might be a macro
1280 AC_CHECK_DECL(tcsendbreak,
1281 [AC_DEFINE(HAVE_TCSENDBREAK)],
1282 [AC_CHECK_FUNCS(tcsendbreak)],
1283 [#include <termios.h>]
1286 AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>])
1288 AC_CHECK_DECLS(SHUT_RD, , ,
1290 #include <sys/types.h>
1291 #include <sys/socket.h>
1294 AC_CHECK_DECLS(O_NONBLOCK, , ,
1296 #include <sys/types.h>
1297 #ifdef HAVE_SYS_STAT_H
1298 # include <sys/stat.h>
1305 AC_CHECK_FUNCS(setresuid, [
1306 dnl Some platorms have setresuid that isn't implemented, test for this
1307 AC_MSG_CHECKING(if setresuid seems to work)
1312 int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
1314 [AC_MSG_RESULT(yes)],
1315 [AC_DEFINE(BROKEN_SETRESUID, 1,
1316 [Define if your setresuid() is broken])
1317 AC_MSG_RESULT(not implemented)],
1318 [AC_MSG_WARN([cross compiling: not checking setresuid])]
1322 AC_CHECK_FUNCS(setresgid, [
1323 dnl Some platorms have setresgid that isn't implemented, test for this
1324 AC_MSG_CHECKING(if setresgid seems to work)
1329 int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
1331 [AC_MSG_RESULT(yes)],
1332 [AC_DEFINE(BROKEN_SETRESGID, 1,
1333 [Define if your setresgid() is broken])
1334 AC_MSG_RESULT(not implemented)],
1335 [AC_MSG_WARN([cross compiling: not checking setresuid])]
1339 dnl Checks for time functions
1340 AC_CHECK_FUNCS(gettimeofday time)
1341 dnl Checks for utmp functions
1342 AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
1343 AC_CHECK_FUNCS(utmpname)
1344 dnl Checks for utmpx functions
1345 AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
1346 AC_CHECK_FUNCS(setutxent utmpxname)
1348 AC_CHECK_FUNC(daemon,
1349 [AC_DEFINE(HAVE_DAEMON, 1, [Define if your libraries define daemon()])],
1350 [AC_CHECK_LIB(bsd, daemon,
1351 [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
1354 AC_CHECK_FUNC(getpagesize,
1355 [AC_DEFINE(HAVE_GETPAGESIZE, 1,
1356 [Define if your libraries define getpagesize()])],
1357 [AC_CHECK_LIB(ucb, getpagesize,
1358 [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
1361 # Check for broken snprintf
1362 if test "x$ac_cv_func_snprintf" = "xyes" ; then
1363 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
1367 int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
1369 [AC_MSG_RESULT(yes)],
1372 AC_DEFINE(BROKEN_SNPRINTF, 1,
1373 [Define if your snprintf is busted])
1374 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
1376 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
1380 # If we don't have a working asprintf, then we strongly depend on vsnprintf
1381 # returning the right thing on overflow: the number of characters it tried to
1382 # create (as per SUSv3)
1383 if test "x$ac_cv_func_asprintf" != "xyes" && \
1384 test "x$ac_cv_func_vsnprintf" = "xyes" ; then
1385 AC_MSG_CHECKING([whether vsnprintf returns correct values on overflow])
1388 #include <sys/types.h>
1392 int x_snprintf(char *str,size_t count,const char *fmt,...)
1394 size_t ret; va_list ap;
1395 va_start(ap, fmt); ret = vsnprintf(str, count, fmt, ap); va_end(ap);
1401 exit(x_snprintf(x, 1, "%s %d", "hello", 12345) == 11 ? 0 : 1);
1403 [AC_MSG_RESULT(yes)],
1406 AC_DEFINE(BROKEN_SNPRINTF, 1,
1407 [Define if your snprintf is busted])
1408 AC_MSG_WARN([****** Your vsnprintf() function is broken, complain to your vendor])
1410 [ AC_MSG_WARN([cross compiling: Assuming working vsnprintf()]) ]
1414 # On systems where [v]snprintf is broken, but is declared in stdio,
1415 # check that the fmt argument is const char * or just char *.
1416 # This is only useful for when BROKEN_SNPRINTF
1417 AC_MSG_CHECKING([whether snprintf can declare const char *fmt])
1418 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
1419 int snprintf(char *a, size_t b, const char *c, ...) { return 0; }
1420 int main(void) { snprintf(0, 0, 0); }
1423 AC_DEFINE(SNPRINTF_CONST, [const],
1424 [Define as const if snprintf() can declare const char *fmt])],
1426 AC_DEFINE(SNPRINTF_CONST, [/* not const */])])
1428 # Check for missing getpeereid (or equiv) support
1430 if test "x$ac_cv_func_getpeereid" != "xyes" ; then
1431 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
1433 [#include <sys/types.h>
1434 #include <sys/socket.h>],
1435 [int i = SO_PEERCRED;],
1436 [ AC_MSG_RESULT(yes)
1437 AC_DEFINE(HAVE_SO_PEERCRED, 1, [Have PEERCRED socket option])
1444 dnl see whether mkstemp() requires XXXXXX
1445 if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
1446 AC_MSG_CHECKING([for (overly) strict mkstemp])
1450 main() { char template[]="conftest.mkstemp-test";
1451 if (mkstemp(template) == -1)
1453 unlink(template); exit(0);
1461 AC_DEFINE(HAVE_STRICT_MKSTEMP, 1, [Silly mkstemp()])
1465 AC_DEFINE(HAVE_STRICT_MKSTEMP)
1470 dnl make sure that openpty does not reacquire controlling terminal
1471 if test ! -z "$check_for_openpty_ctty_bug"; then
1472 AC_MSG_CHECKING(if openpty correctly handles controlling tty)
1476 #include <sys/fcntl.h>
1477 #include <sys/types.h>
1478 #include <sys/wait.h>
1484 int fd, ptyfd, ttyfd, status;
1487 if (pid < 0) { /* failed */
1489 } else if (pid > 0) { /* parent */
1490 waitpid(pid, &status, 0);
1491 if (WIFEXITED(status))
1492 exit(WEXITSTATUS(status));
1495 } else { /* child */
1496 close(0); close(1); close(2);
1498 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
1499 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
1501 exit(3); /* Acquired ctty: broken */
1503 exit(0); /* Did not acquire ctty: OK */
1512 AC_DEFINE(SSHD_ACQUIRES_CTTY)
1515 AC_MSG_RESULT(cross-compiling, assuming yes)
1520 if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1521 test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
1522 AC_MSG_CHECKING(if getaddrinfo seems to work)
1526 #include <sys/socket.h>
1529 #include <netinet/in.h>
1531 #define TEST_PORT "2222"
1537 struct addrinfo *gai_ai, *ai, hints;
1538 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1540 memset(&hints, 0, sizeof(hints));
1541 hints.ai_family = PF_UNSPEC;
1542 hints.ai_socktype = SOCK_STREAM;
1543 hints.ai_flags = AI_PASSIVE;
1545 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1547 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1551 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1552 if (ai->ai_family != AF_INET6)
1555 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1556 sizeof(ntop), strport, sizeof(strport),
1557 NI_NUMERICHOST|NI_NUMERICSERV);
1560 if (err == EAI_SYSTEM)
1561 perror("getnameinfo EAI_SYSTEM");
1563 fprintf(stderr, "getnameinfo failed: %s\n",
1568 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1571 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1584 AC_DEFINE(BROKEN_GETADDRINFO)
1587 AC_MSG_RESULT(cross-compiling, assuming yes)
1592 if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1593 test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
1594 AC_MSG_CHECKING(if getaddrinfo seems to work)
1598 #include <sys/socket.h>
1601 #include <netinet/in.h>
1603 #define TEST_PORT "2222"
1609 struct addrinfo *gai_ai, *ai, hints;
1610 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1612 memset(&hints, 0, sizeof(hints));
1613 hints.ai_family = PF_UNSPEC;
1614 hints.ai_socktype = SOCK_STREAM;
1615 hints.ai_flags = AI_PASSIVE;
1617 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1619 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1623 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1624 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1627 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1628 sizeof(ntop), strport, sizeof(strport),
1629 NI_NUMERICHOST|NI_NUMERICSERV);
1631 if (ai->ai_family == AF_INET && err != 0) {
1632 perror("getnameinfo");
1641 AC_DEFINE(AIX_GETNAMEINFO_HACK, 1,
1642 [Define if you have a getaddrinfo that fails
1643 for the all-zeros IPv6 address])
1647 AC_DEFINE(BROKEN_GETADDRINFO)
1650 AC_MSG_RESULT(cross-compiling, assuming no)
1655 if test "x$check_for_conflicting_getspnam" = "x1"; then
1656 AC_MSG_CHECKING(for conflicting getspnam in shadow.h)
1660 int main(void) {exit(0);}
1667 AC_DEFINE(GETSPNAM_CONFLICTING_DEFS, 1,
1668 [Conflicting defs for getspnam])
1675 # Check for PAM libs
1678 [ --with-pam Enable PAM support ],
1680 if test "x$withval" != "xno" ; then
1681 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
1682 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
1683 AC_MSG_ERROR([PAM headers not found])
1686 AC_CHECK_LIB(dl, dlopen, , )
1687 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
1688 AC_CHECK_FUNCS(pam_getenvlist)
1689 AC_CHECK_FUNCS(pam_putenv)
1693 AC_DEFINE(USE_PAM, 1,
1694 [Define if you want to enable PAM support])
1695 if test $ac_cv_lib_dl_dlopen = yes; then
1705 # Check for older PAM
1706 if test "x$PAM_MSG" = "xyes" ; then
1707 # Check PAM strerror arguments (old PAM)
1708 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
1712 #if defined(HAVE_SECURITY_PAM_APPL_H)
1713 #include <security/pam_appl.h>
1714 #elif defined (HAVE_PAM_PAM_APPL_H)
1715 #include <pam/pam_appl.h>
1718 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
1719 [AC_MSG_RESULT(no)],
1721 AC_DEFINE(HAVE_OLD_PAM, 1,
1722 [Define if you have an old version of PAM
1723 which takes only one argument to pam_strerror])
1725 PAM_MSG="yes (old library)"
1730 # Search for OpenSSL
1731 saved_CPPFLAGS="$CPPFLAGS"
1732 saved_LDFLAGS="$LDFLAGS"
1733 AC_ARG_WITH(ssl-dir,
1734 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
1736 if test "x$withval" != "xno" ; then
1739 ./*|../*) withval="`pwd`/$withval"
1741 if test -d "$withval/lib"; then
1742 if test -n "${need_dash_r}"; then
1743 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1745 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1748 if test -n "${need_dash_r}"; then
1749 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
1751 LDFLAGS="-L${withval} ${LDFLAGS}"
1754 if test -d "$withval/include"; then
1755 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
1757 CPPFLAGS="-I${withval} ${CPPFLAGS}"
1762 LIBS="-lcrypto $LIBS"
1763 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL, 1,
1764 [Define if your ssl headers are included
1765 with #include <openssl/header.h>]),
1767 dnl Check default openssl install dir
1768 if test -n "${need_dash_r}"; then
1769 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
1771 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
1773 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
1774 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
1776 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
1782 # Determine OpenSSL header version
1783 AC_MSG_CHECKING([OpenSSL header version])
1788 #include <openssl/opensslv.h>
1789 #define DATA "conftest.sslincver"
1794 fd = fopen(DATA,"w");
1798 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
1805 ssl_header_ver=`cat conftest.sslincver`
1806 AC_MSG_RESULT($ssl_header_ver)
1809 AC_MSG_RESULT(not found)
1810 AC_MSG_ERROR(OpenSSL version header not found.)
1813 AC_MSG_WARN([cross compiling: not checking])
1817 # Determine OpenSSL library version
1818 AC_MSG_CHECKING([OpenSSL library version])
1823 #include <openssl/opensslv.h>
1824 #include <openssl/crypto.h>
1825 #define DATA "conftest.ssllibver"
1830 fd = fopen(DATA,"w");
1834 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
1841 ssl_library_ver=`cat conftest.ssllibver`
1842 AC_MSG_RESULT($ssl_library_ver)
1845 AC_MSG_RESULT(not found)
1846 AC_MSG_ERROR(OpenSSL library not found.)
1849 AC_MSG_WARN([cross compiling: not checking])
1853 # Sanity check OpenSSL headers
1854 AC_MSG_CHECKING([whether OpenSSL's headers match the library])
1858 #include <openssl/opensslv.h>
1859 int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
1866 AC_MSG_ERROR([Your OpenSSL headers do not match your library.
1867 Check config.log for details.
1868 Also see contrib/findssl.sh for help identifying header/library mismatches.])
1871 AC_MSG_WARN([cross compiling: not checking])
1875 AC_ARG_WITH(ssl-engine,
1876 [ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
1877 [ if test "x$withval" != "xno" ; then
1878 AC_MSG_CHECKING(for OpenSSL ENGINE support)
1880 [ #include <openssl/engine.h>],
1882 int main(void){ENGINE_load_builtin_engines();ENGINE_register_all_complete();}
1884 [ AC_MSG_RESULT(yes)
1885 AC_DEFINE(USE_OPENSSL_ENGINE, 1,
1886 [Enable OpenSSL engine support])
1888 [ AC_MSG_ERROR(OpenSSL ENGINE support not found)]
1893 # Check for OpenSSL without EVP_aes_{192,256}_cbc
1894 AC_MSG_CHECKING([whether OpenSSL has crippled AES support])
1898 #include <openssl/evp.h>
1899 int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);}
1906 AC_DEFINE(OPENSSL_LOBOTOMISED_AES, 1,
1907 [libcrypto is missing AES 192 and 256 bit functions])
1911 # Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
1912 # because the system crypt() is more featureful.
1913 if test "x$check_for_libcrypt_before" = "x1"; then
1914 AC_CHECK_LIB(crypt, crypt)
1917 # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
1918 # version in OpenSSL.
1919 if test "x$check_for_libcrypt_later" = "x1"; then
1920 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
1923 # Search for SHA256 support in libc and/or OpenSSL
1924 AC_CHECK_FUNCS(SHA256_Update EVP_sha256)
1926 AC_CHECK_LIB(iaf, ia_openinfo)
1928 ### Configure cryptographic random number support
1930 # Check wheter OpenSSL seeds itself
1931 AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
1935 #include <openssl/rand.h>
1936 int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
1939 OPENSSL_SEEDS_ITSELF=yes
1944 # Default to use of the rand helper if OpenSSL doesn't
1949 AC_MSG_WARN([cross compiling: assuming yes])
1950 # This is safe, since all recent OpenSSL versions will
1951 # complain at runtime if not seeded correctly.
1952 OPENSSL_SEEDS_ITSELF=yes
1957 # Do we want to force the use of the rand helper?
1958 AC_ARG_WITH(rand-helper,
1959 [ --with-rand-helper Use subprocess to gather strong randomness ],
1961 if test "x$withval" = "xno" ; then
1962 # Force use of OpenSSL's internal RNG, even if
1963 # the previous test showed it to be unseeded.
1964 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
1965 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
1966 OPENSSL_SEEDS_ITSELF=yes
1975 # Which randomness source do we use?
1976 if test ! -z "$OPENSSL_SEEDS_ITSELF" && test -z "$USE_RAND_HELPER" ; then
1978 AC_DEFINE(OPENSSL_PRNG_ONLY, 1,
1979 [Define if you want OpenSSL's internally seeded PRNG only])
1980 RAND_MSG="OpenSSL internal ONLY"
1981 INSTALL_SSH_RAND_HELPER=""
1982 elif test ! -z "$USE_RAND_HELPER" ; then
1983 # install rand helper
1984 RAND_MSG="ssh-rand-helper"
1985 INSTALL_SSH_RAND_HELPER="yes"
1987 AC_SUBST(INSTALL_SSH_RAND_HELPER)
1989 ### Configuration of ssh-rand-helper
1992 AC_ARG_WITH(prngd-port,
1993 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
2002 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
2005 if test ! -z "$withval" ; then
2006 PRNGD_PORT="$withval"
2007 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT,
2008 [Port number of PRNGD/EGD random number socket])
2013 # PRNGD Unix domain socket
2014 AC_ARG_WITH(prngd-socket,
2015 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
2019 withval="/var/run/egd-pool"
2027 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
2031 if test ! -z "$withval" ; then
2032 if test ! -z "$PRNGD_PORT" ; then
2033 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
2035 if test ! -r "$withval" ; then
2036 AC_MSG_WARN(Entropy socket is not readable)
2038 PRNGD_SOCKET="$withval"
2039 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET",
2040 [Location of PRNGD/EGD random number socket])
2044 # Check for existing socket only if we don't have a random device already
2045 if test "$USE_RAND_HELPER" = yes ; then
2046 AC_MSG_CHECKING(for PRNGD/EGD socket)
2047 # Insert other locations here
2048 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
2049 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
2050 PRNGD_SOCKET="$sock"
2051 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
2055 if test ! -z "$PRNGD_SOCKET" ; then
2056 AC_MSG_RESULT($PRNGD_SOCKET)
2058 AC_MSG_RESULT(not found)
2064 # Change default command timeout for hashing entropy source
2066 AC_ARG_WITH(entropy-timeout,
2067 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
2069 if test -n "$withval" && test "x$withval" != "xno" && \
2070 test "x${withval}" != "xyes"; then
2071 entropy_timeout=$withval
2075 AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout,
2076 [Builtin PRNG command timeout])
2078 SSH_PRIVSEP_USER=sshd
2079 AC_ARG_WITH(privsep-user,
2080 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
2082 if test -n "$withval" && test "x$withval" != "xno" && \
2083 test "x${withval}" != "xyes"; then
2084 SSH_PRIVSEP_USER=$withval
2088 AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER",
2089 [non-privileged user for privilege separation])
2090 AC_SUBST(SSH_PRIVSEP_USER)
2092 # We do this little dance with the search path to insure
2093 # that programs that we select for use by installed programs
2094 # (which may be run by the super-user) come from trusted
2095 # locations before they come from the user's private area.
2096 # This should help avoid accidentally configuring some
2097 # random version of a program in someone's personal bin.
2101 test -h /bin 2> /dev/null && PATH=/usr/bin
2102 test -d /sbin && PATH=$PATH:/sbin
2103 test -d /usr/sbin && PATH=$PATH:/usr/sbin
2104 PATH=$PATH:/etc:$OPATH
2106 # These programs are used by the command hashing source to gather entropy
2107 OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
2108 OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
2109 OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
2110 OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
2111 OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
2112 OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
2113 OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
2114 OSSH_PATH_ENTROPY_PROG(PROG_W, w)
2115 OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
2116 OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
2117 OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
2118 OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
2119 OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
2120 OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
2121 OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
2122 OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
2126 # Where does ssh-rand-helper get its randomness from?
2127 INSTALL_SSH_PRNG_CMDS=""
2128 if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
2129 if test ! -z "$PRNGD_PORT" ; then
2130 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
2131 elif test ! -z "$PRNGD_SOCKET" ; then
2132 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
2134 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
2135 RAND_HELPER_CMDHASH=yes
2136 INSTALL_SSH_PRNG_CMDS="yes"
2139 AC_SUBST(INSTALL_SSH_PRNG_CMDS)
2142 # Cheap hack to ensure NEWS-OS libraries are arranged right.
2143 if test ! -z "$SONY" ; then
2144 LIBS="$LIBS -liberty";
2147 # Check for long long datatypes
2148 AC_CHECK_TYPES([long long, unsigned long long, long double])
2150 # Check datatype sizes
2151 AC_CHECK_SIZEOF(char, 1)
2152 AC_CHECK_SIZEOF(short int, 2)
2153 AC_CHECK_SIZEOF(int, 4)
2154 AC_CHECK_SIZEOF(long int, 4)
2155 AC_CHECK_SIZEOF(long long int, 8)
2157 # Sanity check long long for some platforms (AIX)
2158 if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
2159 ac_cv_sizeof_long_long_int=0
2162 # compute LLONG_MIN and LLONG_MAX if we don't know them.
2163 if test -z "$have_llong_max"; then
2164 AC_MSG_CHECKING([for max value of long long])
2168 /* Why is this so damn hard? */
2172 #define __USE_ISOC99
2174 #define DATA "conftest.llminmax"
2175 #define my_abs(a) ((a) < 0 ? ((a) * -1) : (a))
2178 * printf in libc on some platforms (eg old Tru64) does not understand %lld so
2179 * we do this the hard way.
2182 fprint_ll(FILE *f, long long n)
2185 int l[sizeof(long long) * 8];
2188 if (fprintf(f, "-") < 0)
2190 for (i = 0; n != 0; i++) {
2191 l[i] = my_abs(n % 10);
2195 if (fprintf(f, "%d", l[--i]) < 0)
2198 if (fprintf(f, " ") < 0)
2205 long long i, llmin, llmax = 0;
2207 if((f = fopen(DATA,"w")) == NULL)
2210 #if defined(LLONG_MIN) && defined(LLONG_MAX)
2211 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
2215 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n");
2216 /* This will work on one's complement and two's complement */
2217 for (i = 1; i > llmax; i <<= 1, i++)
2219 llmin = llmax + 1LL; /* wrap */
2223 if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
2224 || llmax - 1 > llmax || llmin == llmax || llmin == 0
2225 || llmax == 0 || llmax < LONG_MAX || llmin > LONG_MIN) {
2226 fprintf(f, "unknown unknown\n");
2230 if (fprint_ll(f, llmin) < 0)
2232 if (fprint_ll(f, llmax) < 0)
2240 llong_min=`$AWK '{print $1}' conftest.llminmax`
2241 llong_max=`$AWK '{print $2}' conftest.llminmax`
2243 AC_MSG_RESULT($llong_max)
2244 AC_DEFINE_UNQUOTED(LLONG_MAX, [${llong_max}LL],
2245 [max value of long long calculated by configure])
2246 AC_MSG_CHECKING([for min value of long long])
2247 AC_MSG_RESULT($llong_min)
2248 AC_DEFINE_UNQUOTED(LLONG_MIN, [${llong_min}LL],
2249 [min value of long long calculated by configure])
2252 AC_MSG_RESULT(not found)
2255 AC_MSG_WARN([cross compiling: not checking])
2261 # More checks for data types
2262 AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
2264 [ #include <sys/types.h> ],
2266 [ ac_cv_have_u_int="yes" ],
2267 [ ac_cv_have_u_int="no" ]
2270 if test "x$ac_cv_have_u_int" = "xyes" ; then
2271 AC_DEFINE(HAVE_U_INT, 1, [define if you have u_int data type])
2275 AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
2277 [ #include <sys/types.h> ],
2278 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
2279 [ ac_cv_have_intxx_t="yes" ],
2280 [ ac_cv_have_intxx_t="no" ]
2283 if test "x$ac_cv_have_intxx_t" = "xyes" ; then
2284 AC_DEFINE(HAVE_INTXX_T, 1, [define if you have intxx_t data type])
2288 if (test -z "$have_intxx_t" && \
2289 test "x$ac_cv_header_stdint_h" = "xyes")
2291 AC_MSG_CHECKING([for intXX_t types in stdint.h])
2293 [ #include <stdint.h> ],
2294 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
2296 AC_DEFINE(HAVE_INTXX_T)
2299 [ AC_MSG_RESULT(no) ]
2303 AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
2306 #include <sys/types.h>
2307 #ifdef HAVE_STDINT_H
2308 # include <stdint.h>
2310 #include <sys/socket.h>
2311 #ifdef HAVE_SYS_BITYPES_H
2312 # include <sys/bitypes.h>
2315 [ int64_t a; a = 1;],
2316 [ ac_cv_have_int64_t="yes" ],
2317 [ ac_cv_have_int64_t="no" ]
2320 if test "x$ac_cv_have_int64_t" = "xyes" ; then
2321 AC_DEFINE(HAVE_INT64_T, 1, [define if you have int64_t data type])
2324 AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
2326 [ #include <sys/types.h> ],
2327 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
2328 [ ac_cv_have_u_intxx_t="yes" ],
2329 [ ac_cv_have_u_intxx_t="no" ]
2332 if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
2333 AC_DEFINE(HAVE_U_INTXX_T, 1, [define if you have u_intxx_t data type])
2337 if test -z "$have_u_intxx_t" ; then
2338 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
2340 [ #include <sys/socket.h> ],
2341 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
2343 AC_DEFINE(HAVE_U_INTXX_T)
2346 [ AC_MSG_RESULT(no) ]
2350 AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
2352 [ #include <sys/types.h> ],
2353 [ u_int64_t a; a = 1;],
2354 [ ac_cv_have_u_int64_t="yes" ],
2355 [ ac_cv_have_u_int64_t="no" ]
2358 if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
2359 AC_DEFINE(HAVE_U_INT64_T, 1, [define if you have u_int64_t data type])
2363 if test -z "$have_u_int64_t" ; then
2364 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
2366 [ #include <sys/bitypes.h> ],
2367 [ u_int64_t a; a = 1],
2369 AC_DEFINE(HAVE_U_INT64_T)
2372 [ AC_MSG_RESULT(no) ]
2376 if test -z "$have_u_intxx_t" ; then
2377 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
2380 #include <sys/types.h>
2382 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
2383 [ ac_cv_have_uintxx_t="yes" ],
2384 [ ac_cv_have_uintxx_t="no" ]
2387 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
2388 AC_DEFINE(HAVE_UINTXX_T, 1,
2389 [define if you have uintxx_t data type])
2393 if test -z "$have_uintxx_t" ; then
2394 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
2396 [ #include <stdint.h> ],
2397 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
2399 AC_DEFINE(HAVE_UINTXX_T)
2402 [ AC_MSG_RESULT(no) ]
2406 if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
2407 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
2409 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
2412 #include <sys/bitypes.h>
2415 int8_t a; int16_t b; int32_t c;
2416 u_int8_t e; u_int16_t f; u_int32_t g;
2417 a = b = c = e = f = g = 1;
2420 AC_DEFINE(HAVE_U_INTXX_T)
2421 AC_DEFINE(HAVE_INTXX_T)
2429 AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
2432 #include <sys/types.h>
2434 [ u_char foo; foo = 125; ],
2435 [ ac_cv_have_u_char="yes" ],
2436 [ ac_cv_have_u_char="no" ]
2439 if test "x$ac_cv_have_u_char" = "xyes" ; then
2440 AC_DEFINE(HAVE_U_CHAR, 1, [define if you have u_char data type])
2445 AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
2447 AC_CHECK_TYPES(in_addr_t,,,
2448 [#include <sys/types.h>
2449 #include <netinet/in.h>])
2451 AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
2454 #include <sys/types.h>
2456 [ size_t foo; foo = 1235; ],
2457 [ ac_cv_have_size_t="yes" ],
2458 [ ac_cv_have_size_t="no" ]
2461 if test "x$ac_cv_have_size_t" = "xyes" ; then
2462 AC_DEFINE(HAVE_SIZE_T, 1, [define if you have size_t data type])
2465 AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
2468 #include <sys/types.h>
2470 [ ssize_t foo; foo = 1235; ],
2471 [ ac_cv_have_ssize_t="yes" ],
2472 [ ac_cv_have_ssize_t="no" ]
2475 if test "x$ac_cv_have_ssize_t" = "xyes" ; then
2476 AC_DEFINE(HAVE_SSIZE_T, 1, [define if you have ssize_t data type])
2479 AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
2484 [ clock_t foo; foo = 1235; ],
2485 [ ac_cv_have_clock_t="yes" ],
2486 [ ac_cv_have_clock_t="no" ]
2489 if test "x$ac_cv_have_clock_t" = "xyes" ; then
2490 AC_DEFINE(HAVE_CLOCK_T, 1, [define if you have clock_t data type])
2493 AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
2496 #include <sys/types.h>
2497 #include <sys/socket.h>
2499 [ sa_family_t foo; foo = 1235; ],
2500 [ ac_cv_have_sa_family_t="yes" ],
2503 #include <sys/types.h>
2504 #include <sys/socket.h>
2505 #include <netinet/in.h>
2507 [ sa_family_t foo; foo = 1235; ],
2508 [ ac_cv_have_sa_family_t="yes" ],
2510 [ ac_cv_have_sa_family_t="no" ]
2514 if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
2515 AC_DEFINE(HAVE_SA_FAMILY_T, 1,
2516 [define if you have sa_family_t data type])
2519 AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
2522 #include <sys/types.h>
2524 [ pid_t foo; foo = 1235; ],
2525 [ ac_cv_have_pid_t="yes" ],
2526 [ ac_cv_have_pid_t="no" ]
2529 if test "x$ac_cv_have_pid_t" = "xyes" ; then
2530 AC_DEFINE(HAVE_PID_T, 1, [define if you have pid_t data type])
2533 AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
2536 #include <sys/types.h>
2538 [ mode_t foo; foo = 1235; ],
2539 [ ac_cv_have_mode_t="yes" ],
2540 [ ac_cv_have_mode_t="no" ]
2543 if test "x$ac_cv_have_mode_t" = "xyes" ; then
2544 AC_DEFINE(HAVE_MODE_T, 1, [define if you have mode_t data type])
2548 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
2551 #include <sys/types.h>
2552 #include <sys/socket.h>
2554 [ struct sockaddr_storage s; ],
2555 [ ac_cv_have_struct_sockaddr_storage="yes" ],
2556 [ ac_cv_have_struct_sockaddr_storage="no" ]
2559 if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
2560 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE, 1,
2561 [define if you have struct sockaddr_storage data type])
2564 AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
2567 #include <sys/types.h>
2568 #include <netinet/in.h>
2570 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
2571 [ ac_cv_have_struct_sockaddr_in6="yes" ],
2572 [ ac_cv_have_struct_sockaddr_in6="no" ]
2575 if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
2576 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6, 1,
2577 [define if you have struct sockaddr_in6 data type])
2580 AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
2583 #include <sys/types.h>
2584 #include <netinet/in.h>
2586 [ struct in6_addr s; s.s6_addr[0] = 0; ],
2587 [ ac_cv_have_struct_in6_addr="yes" ],
2588 [ ac_cv_have_struct_in6_addr="no" ]
2591 if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
2592 AC_DEFINE(HAVE_STRUCT_IN6_ADDR, 1,
2593 [define if you have struct in6_addr data type])
2596 AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
2599 #include <sys/types.h>
2600 #include <sys/socket.h>
2603 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
2604 [ ac_cv_have_struct_addrinfo="yes" ],
2605 [ ac_cv_have_struct_addrinfo="no" ]
2608 if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
2609 AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1,
2610 [define if you have struct addrinfo data type])
2613 AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
2615 [ #include <sys/time.h> ],
2616 [ struct timeval tv; tv.tv_sec = 1;],
2617 [ ac_cv_have_struct_timeval="yes" ],
2618 [ ac_cv_have_struct_timeval="no" ]
2621 if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
2622 AC_DEFINE(HAVE_STRUCT_TIMEVAL, 1, [define if you have struct timeval])
2623 have_struct_timeval=1
2626 AC_CHECK_TYPES(struct timespec)
2628 # We need int64_t or else certian parts of the compile will fail.
2629 if test "x$ac_cv_have_int64_t" = "xno" && \
2630 test "x$ac_cv_sizeof_long_int" != "x8" && \
2631 test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
2632 echo "OpenSSH requires int64_t support. Contact your vendor or install"
2633 echo "an alternative compiler (I.E., GCC) before continuing."
2637 dnl test snprintf (broken on SCO w/gcc)
2642 #ifdef HAVE_SNPRINTF
2646 char expected_out[50];
2648 #if (SIZEOF_LONG_INT == 8)
2649 long int num = 0x7fffffffffffffff;
2651 long long num = 0x7fffffffffffffffll;
2653 strcpy(expected_out, "9223372036854775807");
2654 snprintf(buf, mazsize, "%lld", num);
2655 if(strcmp(buf, expected_out) != 0)
2662 ]])], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],
2663 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
2667 dnl Checks for structure members
2668 OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
2669 OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
2670 OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
2671 OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
2672 OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
2673 OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
2674 OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
2675 OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
2676 OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
2677 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
2678 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
2679 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
2680 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
2681 OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
2682 OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
2683 OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
2684 OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
2686 AC_CHECK_MEMBERS([struct stat.st_blksize])
2687 AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE(__res_state, state,
2688 [Define if we don't have struct __res_state in resolv.h])],
2691 #if HAVE_SYS_TYPES_H
2692 # include <sys/types.h>
2694 #include <netinet/in.h>
2695 #include <arpa/nameser.h>
2699 AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
2700 ac_cv_have_ss_family_in_struct_ss, [
2703 #include <sys/types.h>
2704 #include <sys/socket.h>
2706 [ struct sockaddr_storage s; s.ss_family = 1; ],
2707 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
2708 [ ac_cv_have_ss_family_in_struct_ss="no" ],
2711 if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
2712 AC_DEFINE(HAVE_SS_FAMILY_IN_SS, 1, [Fields in struct sockaddr_storage])
2715 AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
2716 ac_cv_have___ss_family_in_struct_ss, [
2719 #include <sys/types.h>
2720 #include <sys/socket.h>
2722 [ struct sockaddr_storage s; s.__ss_family = 1; ],
2723 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
2724 [ ac_cv_have___ss_family_in_struct_ss="no" ]
2727 if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
2728 AC_DEFINE(HAVE___SS_FAMILY_IN_SS, 1,
2729 [Fields in struct sockaddr_storage])
2732 AC_CACHE_CHECK([for pw_class field in struct passwd],
2733 ac_cv_have_pw_class_in_struct_passwd, [
2738 [ struct passwd p; p.pw_class = 0; ],
2739 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
2740 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
2743 if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
2744 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD, 1,
2745 [Define if your password has a pw_class field])
2748 AC_CACHE_CHECK([for pw_expire field in struct passwd],
2749 ac_cv_have_pw_expire_in_struct_passwd, [
2754 [ struct passwd p; p.pw_expire = 0; ],
2755 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
2756 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
2759 if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
2760 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD, 1,
2761 [Define if your password has a pw_expire field])
2764 AC_CACHE_CHECK([for pw_change field in struct passwd],
2765 ac_cv_have_pw_change_in_struct_passwd, [
2770 [ struct passwd p; p.pw_change = 0; ],
2771 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
2772 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
2775 if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
2776 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD, 1,
2777 [Define if your password has a pw_change field])
2780 dnl make sure we're using the real structure members and not defines
2781 AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
2782 ac_cv_have_accrights_in_msghdr, [
2785 #include <sys/types.h>
2786 #include <sys/socket.h>
2787 #include <sys/uio.h>
2789 #ifdef msg_accrights
2790 #error "msg_accrights is a macro"
2794 m.msg_accrights = 0;
2798 [ ac_cv_have_accrights_in_msghdr="yes" ],
2799 [ ac_cv_have_accrights_in_msghdr="no" ]
2802 if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
2803 AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR, 1,
2804 [Define if your system uses access rights style
2805 file descriptor passing])
2808 AC_CACHE_CHECK([for msg_control field in struct msghdr],
2809 ac_cv_have_control_in_msghdr, [
2812 #include <sys/types.h>
2813 #include <sys/socket.h>
2814 #include <sys/uio.h>
2817 #error "msg_control is a macro"
2825 [ ac_cv_have_control_in_msghdr="yes" ],
2826 [ ac_cv_have_control_in_msghdr="no" ]
2829 if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
2830 AC_DEFINE(HAVE_CONTROL_IN_MSGHDR, 1,
2831 [Define if your system uses ancillary data style
2832 file descriptor passing])
2835 AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
2837 [ extern char *__progname; printf("%s", __progname); ],
2838 [ ac_cv_libc_defines___progname="yes" ],
2839 [ ac_cv_libc_defines___progname="no" ]
2842 if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
2843 AC_DEFINE(HAVE___PROGNAME, 1, [Define if libc defines __progname])
2846 AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
2850 [ printf("%s", __FUNCTION__); ],
2851 [ ac_cv_cc_implements___FUNCTION__="yes" ],
2852 [ ac_cv_cc_implements___FUNCTION__="no" ]
2855 if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
2856 AC_DEFINE(HAVE___FUNCTION__, 1,
2857 [Define if compiler implements __FUNCTION__])
2860 AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
2864 [ printf("%s", __func__); ],
2865 [ ac_cv_cc_implements___func__="yes" ],
2866 [ ac_cv_cc_implements___func__="no" ]
2869 if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
2870 AC_DEFINE(HAVE___func__, 1, [Define if compiler implements __func__])
2873 AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [
2875 [#include <stdarg.h>
2878 [ ac_cv_have_va_copy="yes" ],
2879 [ ac_cv_have_va_copy="no" ]
2882 if test "x$ac_cv_have_va_copy" = "xyes" ; then
2883 AC_DEFINE(HAVE_VA_COPY, 1, [Define if va_copy exists])
2886 AC_CACHE_CHECK([whether __va_copy exists], ac_cv_have___va_copy, [
2888 [#include <stdarg.h>
2891 [ ac_cv_have___va_copy="yes" ],
2892 [ ac_cv_have___va_copy="no" ]
2895 if test "x$ac_cv_have___va_copy" = "xyes" ; then
2896 AC_DEFINE(HAVE___VA_COPY, 1, [Define if __va_copy exists])
2899 AC_CACHE_CHECK([whether getopt has optreset support],
2900 ac_cv_have_getopt_optreset, [
2905 [ extern int optreset; optreset = 0; ],
2906 [ ac_cv_have_getopt_optreset="yes" ],
2907 [ ac_cv_have_getopt_optreset="no" ]
2910 if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
2911 AC_DEFINE(HAVE_GETOPT_OPTRESET, 1,
2912 [Define if your getopt(3) defines and uses optreset])
2915 AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
2917 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
2918 [ ac_cv_libc_defines_sys_errlist="yes" ],
2919 [ ac_cv_libc_defines_sys_errlist="no" ]
2922 if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
2923 AC_DEFINE(HAVE_SYS_ERRLIST, 1,
2924 [Define if your system defines sys_errlist[]])
2928 AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
2930 [ extern int sys_nerr; printf("%i", sys_nerr);],
2931 [ ac_cv_libc_defines_sys_nerr="yes" ],
2932 [ ac_cv_libc_defines_sys_nerr="no" ]
2935 if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
2936 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if your system defines sys_nerr])
2940 # Check whether user wants sectok support
2942 [ --with-sectok Enable smartcard support using libsectok],
2944 if test "x$withval" != "xno" ; then
2945 if test "x$withval" != "xyes" ; then
2946 CPPFLAGS="$CPPFLAGS -I${withval}"
2947 LDFLAGS="$LDFLAGS -L${withval}"
2948 if test ! -z "$need_dash_r" ; then
2949 LDFLAGS="$LDFLAGS -R${withval}"
2951 if test ! -z "$blibpath" ; then
2952 blibpath="$blibpath:${withval}"
2955 AC_CHECK_HEADERS(sectok.h)
2956 if test "$ac_cv_header_sectok_h" != yes; then
2957 AC_MSG_ERROR(Can't find sectok.h)
2959 AC_CHECK_LIB(sectok, sectok_open)
2960 if test "$ac_cv_lib_sectok_sectok_open" != yes; then
2961 AC_MSG_ERROR(Can't find libsectok)
2963 AC_DEFINE(SMARTCARD, 1,
2964 [Define if you want smartcard support])
2965 AC_DEFINE(USE_SECTOK, 1,
2966 [Define if you want smartcard support
2968 SCARD_MSG="yes, using sectok"
2973 # Check whether user wants OpenSC support
2976 [ --with-opensc[[=PFX]] Enable smartcard support using OpenSC (optionally in PATH)],
2978 if test "x$withval" != "xno" ; then
2979 if test "x$withval" != "xyes" ; then
2980 OPENSC_CONFIG=$withval/bin/opensc-config
2982 AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no)
2984 if test "$OPENSC_CONFIG" != "no"; then
2985 LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags`
2986 LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs`
2987 CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS"
2988 LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS"
2989 AC_DEFINE(SMARTCARD)
2990 AC_DEFINE(USE_OPENSC, 1,
2991 [Define if you want smartcard support
2993 SCARD_MSG="yes, using OpenSC"
2999 # Check libraries needed by DNS fingerprint support
3000 AC_SEARCH_LIBS(getrrsetbyname, resolv,
3001 [AC_DEFINE(HAVE_GETRRSETBYNAME, 1,
3002 [Define if getrrsetbyname() exists])],
3004 # Needed by our getrrsetbyname()
3005 AC_SEARCH_LIBS(res_query, resolv)
3006 AC_SEARCH_LIBS(dn_expand, resolv)
3007 AC_MSG_CHECKING(if res_query will link)
3008 AC_TRY_LINK_FUNC(res_query, AC_MSG_RESULT(yes),
3011 LIBS="$LIBS -lresolv"
3012 AC_MSG_CHECKING(for res_query in -lresolv)
3017 res_query (0, 0, 0, 0, 0);
3021 [LIBS="$LIBS -lresolv"
3022 AC_MSG_RESULT(yes)],
3026 AC_CHECK_FUNCS(_getshort _getlong)
3027 AC_CHECK_DECLS([_getshort, _getlong], , ,
3028 [#include <sys/types.h>
3029 #include <arpa/nameser.h>])
3030 AC_CHECK_MEMBER(HEADER.ad,
3031 [AC_DEFINE(HAVE_HEADER_AD, 1,
3032 [Define if HEADER.ad exists in arpa/nameser.h])],,
3033 [#include <arpa/nameser.h>])
3036 # Check whether user wants SELinux support
3039 AC_ARG_WITH(selinux,
3040 [ --with-selinux Enable SELinux support],
3041 [ if test "x$withval" != "xno" ; then
3042 AC_DEFINE(WITH_SELINUX,1,[Define if you want SELinux support.])
3044 AC_CHECK_HEADER([selinux/selinux.h], ,
3045 AC_MSG_ERROR(SELinux support requires selinux.h header))
3046 AC_CHECK_LIB(selinux, setexeccon, [ LIBSELINUX="-lselinux" ],
3047 AC_MSG_ERROR(SELinux support requires libselinux library))
3048 AC_CHECK_FUNCS(getseuserbyname get_default_context_with_level)
3051 AC_SUBST(LIBSELINUX)
3053 # Check whether user wants Kerberos 5 support
3055 AC_ARG_WITH(kerberos5,
3056 [ --with-kerberos5=PATH Enable Kerberos 5 support],
3057 [ if test "x$withval" != "xno" ; then
3058 if test "x$withval" = "xyes" ; then
3059 KRB5ROOT="/usr/local"
3064 AC_DEFINE(KRB5, 1, [Define if you want Kerberos 5 support])
3067 AC_MSG_CHECKING(for krb5-config)
3068 if test -x $KRB5ROOT/bin/krb5-config ; then
3069 KRB5CONF=$KRB5ROOT/bin/krb5-config
3070 AC_MSG_RESULT($KRB5CONF)
3072 AC_MSG_CHECKING(for gssapi support)
3073 if $KRB5CONF | grep gssapi >/dev/null ; then
3075 AC_DEFINE(GSSAPI, 1,
3076 [Define this if you want GSSAPI
3077 support in the version 2 protocol])
3083 K5CFLAGS="`$KRB5CONF --cflags $k5confopts`"
3084 K5LIBS="`$KRB5CONF --libs $k5confopts`"
3085 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
3086 AC_MSG_CHECKING(whether we are using Heimdal)
3087 AC_TRY_COMPILE([ #include <krb5.h> ],
3088 [ char *tmp = heimdal_version; ],
3089 [ AC_MSG_RESULT(yes)
3090 AC_DEFINE(HEIMDAL, 1,
3091 [Define this if you are using the
3092 Heimdal version of Kerberos V5]) ],
3097 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
3098 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
3099 AC_MSG_CHECKING(whether we are using Heimdal)
3100 AC_TRY_COMPILE([ #include <krb5.h> ],
3101 [ char *tmp = heimdal_version; ],
3102 [ AC_MSG_RESULT(yes)
3104 K5LIBS="-lkrb5 -ldes"
3105 K5LIBS="$K5LIBS -lcom_err -lasn1"
3106 AC_CHECK_LIB(roken, net_write,
3107 [K5LIBS="$K5LIBS -lroken"])
3110 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
3113 AC_SEARCH_LIBS(dn_expand, resolv)
3115 AC_CHECK_LIB(gssapi,gss_init_sec_context,
3117 K5LIBS="-lgssapi $K5LIBS" ],
3118 [ AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context,
3120 K5LIBS="-lgssapi_krb5 $K5LIBS" ],
3121 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
3126 AC_CHECK_HEADER(gssapi.h, ,
3127 [ unset ac_cv_header_gssapi_h
3128 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
3129 AC_CHECK_HEADERS(gssapi.h, ,
3130 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
3136 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
3137 AC_CHECK_HEADER(gssapi_krb5.h, ,
3138 [ CPPFLAGS="$oldCPP" ])
3141 if test ! -z "$need_dash_r" ; then
3142 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
3144 if test ! -z "$blibpath" ; then
3145 blibpath="$blibpath:${KRB5ROOT}/lib"
3148 AC_CHECK_HEADERS(gssapi.h gssapi/gssapi.h)
3149 AC_CHECK_HEADERS(gssapi_krb5.h gssapi/gssapi_krb5.h)
3150 AC_CHECK_HEADERS(gssapi_generic.h gssapi/gssapi_generic.h)
3152 LIBS="$LIBS $K5LIBS"
3153 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS, 1,
3154 [Define this if you want to use libkafs' AFS support]))
3159 # Looking for programs, paths and files
3161 PRIVSEP_PATH=/var/empty
3162 AC_ARG_WITH(privsep-path,
3163 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
3165 if test -n "$withval" && test "x$withval" != "xno" && \
3166 test "x${withval}" != "xyes"; then
3167 PRIVSEP_PATH=$withval
3171 AC_SUBST(PRIVSEP_PATH)
3174 [ --with-xauth=PATH Specify path to xauth program ],
3176 if test -n "$withval" && test "x$withval" != "xno" && \
3177 test "x${withval}" != "xyes"; then
3183 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
3184 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
3185 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
3186 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
3187 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
3188 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
3189 xauth_path="/usr/openwin/bin/xauth"
3195 AC_ARG_ENABLE(strip,
3196 [ --disable-strip Disable calling strip(1) on install],
3198 if test "x$enableval" = "xno" ; then
3205 if test -z "$xauth_path" ; then
3206 XAUTH_PATH="undefined"
3207 AC_SUBST(XAUTH_PATH)
3209 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path",
3210 [Define if xauth is found in your path])
3211 XAUTH_PATH=$xauth_path
3212 AC_SUBST(XAUTH_PATH)
3215 # Check for mail directory (last resort if we cannot get it from headers)
3216 if test ! -z "$MAIL" ; then
3217 maildir=`dirname $MAIL`
3218 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir",
3219 [Set this to your mail directory if you don't have maillock.h])
3222 if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
3223 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
3224 disable_ptmx_check=yes
3226 if test -z "$no_dev_ptmx" ; then
3227 if test "x$disable_ptmx_check" != "xyes" ; then
3228 AC_CHECK_FILE("/dev/ptmx",
3230 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX, 1,
3231 [Define if you have /dev/ptmx])
3238 if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
3239 AC_CHECK_FILE("/dev/ptc",
3241 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC, 1,
3242 [Define if you have /dev/ptc])
3247 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
3250 # Options from here on. Some of these are preset by platform above
3251 AC_ARG_WITH(mantype,
3252 [ --with-mantype=man|cat|doc Set man page type],
3259 AC_MSG_ERROR(invalid man type: $withval)
3264 if test -z "$MANTYPE"; then
3265 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
3266 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
3267 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
3269 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
3276 if test "$MANTYPE" = "doc"; then
3283 # Check whether to enable MD5 passwords
3285 AC_ARG_WITH(md5-passwords,
3286 [ --with-md5-passwords Enable use of MD5 passwords],
3288 if test "x$withval" != "xno" ; then
3289 AC_DEFINE(HAVE_MD5_PASSWORDS, 1,
3290 [Define if you want to allow MD5 passwords])
3296 # Whether to disable shadow password support
3298 [ --without-shadow Disable shadow password support],
3300 if test "x$withval" = "xno" ; then
3301 AC_DEFINE(DISABLE_SHADOW)
3307 if test -z "$disable_shadow" ; then
3308 AC_MSG_CHECKING([if the systems has expire shadow information])
3311 #include <sys/types.h>
3314 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
3315 [ sp_expire_available=yes ], []
3318 if test "x$sp_expire_available" = "xyes" ; then
3320 AC_DEFINE(HAS_SHADOW_EXPIRE, 1,
3321 [Define if you want to use shadow password expire field])
3327 # Use ip address instead of hostname in $DISPLAY
3328 if test ! -z "$IPADDR_IN_DISPLAY" ; then
3329 DISPLAY_HACK_MSG="yes"
3330 AC_DEFINE(IPADDR_IN_DISPLAY, 1,
3331 [Define if you need to use IP address
3332 instead of hostname in $DISPLAY])
3334 DISPLAY_HACK_MSG="no"
3335 AC_ARG_WITH(ipaddr-display,
3336 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
3338 if test "x$withval" != "xno" ; then
3339 AC_DEFINE(IPADDR_IN_DISPLAY)
3340 DISPLAY_HACK_MSG="yes"
3346 # check for /etc/default/login and use it if present.
3347 AC_ARG_ENABLE(etc-default-login,
3348 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
3349 [ if test "x$enableval" = "xno"; then
3350 AC_MSG_NOTICE([/etc/default/login handling disabled])
3351 etc_default_login=no
3353 etc_default_login=yes
3355 [ if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
3357 AC_MSG_WARN([cross compiling: not checking /etc/default/login])
3358 etc_default_login=no
3360 etc_default_login=yes
3364 if test "x$etc_default_login" != "xno"; then
3365 AC_CHECK_FILE("/etc/default/login",
3366 [ external_path_file=/etc/default/login ])
3367 if test "x$external_path_file" = "x/etc/default/login"; then
3368 AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN, 1,
3369 [Define if your system has /etc/default/login])
3373 dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
3374 if test $ac_cv_func_login_getcapbool = "yes" && \
3375 test $ac_cv_header_login_cap_h = "yes" ; then
3376 external_path_file=/etc/login.conf
3379 # Whether to mess with the default path
3380 SERVER_PATH_MSG="(default)"
3381 AC_ARG_WITH(default-path,
3382 [ --with-default-path= Specify default \$PATH environment for server],
3384 if test "x$external_path_file" = "x/etc/login.conf" ; then
3386 --with-default-path=PATH has no effect on this system.
3387 Edit /etc/login.conf instead.])
3388 elif test "x$withval" != "xno" ; then
3389 if test ! -z "$external_path_file" ; then
3391 --with-default-path=PATH will only be used if PATH is not defined in
3392 $external_path_file .])
3394 user_path="$withval"
3395 SERVER_PATH_MSG="$withval"
3398 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
3399 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
3401 if test ! -z "$external_path_file" ; then
3403 If PATH is defined in $external_path_file, ensure the path to scp is included,
3404 otherwise scp will not work.])
3408 /* find out what STDPATH is */
3413 #ifndef _PATH_STDPATH
3414 # ifdef _PATH_USERPATH /* Irix */
3415 # define _PATH_STDPATH _PATH_USERPATH
3417 # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
3420 #include <sys/types.h>
3421 #include <sys/stat.h>
3423 #define DATA "conftest.stdpath"
3430 fd = fopen(DATA,"w");
3434 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
3440 [ user_path=`cat conftest.stdpath` ],
3441 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
3442 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
3444 # make sure $bindir is in USER_PATH so scp will work
3445 t_bindir=`eval echo ${bindir}`
3447 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
3450 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
3452 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
3453 if test $? -ne 0 ; then
3454 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
3455 if test $? -ne 0 ; then
3456 user_path=$user_path:$t_bindir
3457 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
3462 if test "x$external_path_file" != "x/etc/login.conf" ; then
3463 AC_DEFINE_UNQUOTED(USER_PATH, "$user_path", [Specify default $PATH])
3467 # Set superuser path separately to user path
3468 AC_ARG_WITH(superuser-path,
3469 [ --with-superuser-path= Specify different path for super-user],
3471 if test -n "$withval" && test "x$withval" != "xno" && \
3472 test "x${withval}" != "xyes"; then
3473 AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval",
3474 [Define if you want a different $PATH
3476 superuser_path=$withval
3482 AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
3483 IPV4_IN6_HACK_MSG="no"
3485 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
3487 if test "x$withval" != "xno" ; then
3489 AC_DEFINE(IPV4_IN_IPV6, 1,
3490 [Detect IPv4 in IPv6 mapped addresses
3492 IPV4_IN6_HACK_MSG="yes"
3497 if test "x$inet6_default_4in6" = "xyes"; then
3498 AC_MSG_RESULT([yes (default)])
3499 AC_DEFINE(IPV4_IN_IPV6)
3500 IPV4_IN6_HACK_MSG="yes"
3502 AC_MSG_RESULT([no (default)])
3507 # Whether to enable BSD auth support
3509 AC_ARG_WITH(bsd-auth,
3510 [ --with-bsd-auth Enable BSD auth support],
3512 if test "x$withval" != "xno" ; then
3513 AC_DEFINE(BSD_AUTH, 1,
3514 [Define if you have BSD auth support])
3520 # Where to place sshd.pid
3522 # make sure the directory exists
3523 if test ! -d $piddir ; then
3524 piddir=`eval echo ${sysconfdir}`
3526 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
3530 AC_ARG_WITH(pid-dir,
3531 [ --with-pid-dir=PATH Specify location of ssh.pid file],
3533 if test -n "$withval" && test "x$withval" != "xno" && \
3534 test "x${withval}" != "xyes"; then
3536 if test ! -d $piddir ; then
3537 AC_MSG_WARN([** no $piddir directory on this system **])
3543 AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir", [Specify location of ssh.pid])
3546 dnl allow user to disable some login recording features
3547 AC_ARG_ENABLE(lastlog,
3548 [ --disable-lastlog disable use of lastlog even if detected [no]],
3550 if test "x$enableval" = "xno" ; then
3551 AC_DEFINE(DISABLE_LASTLOG)
3556 [ --disable-utmp disable use of utmp even if detected [no]],
3558 if test "x$enableval" = "xno" ; then
3559 AC_DEFINE(DISABLE_UTMP)
3563 AC_ARG_ENABLE(utmpx,
3564 [ --disable-utmpx disable use of utmpx even if detected [no]],
3566 if test "x$enableval" = "xno" ; then
3567 AC_DEFINE(DISABLE_UTMPX, 1,
3568 [Define if you don't want to use utmpx])
3573 [ --disable-wtmp disable use of wtmp even if detected [no]],
3575 if test "x$enableval" = "xno" ; then
3576 AC_DEFINE(DISABLE_WTMP)
3580 AC_ARG_ENABLE(wtmpx,
3581 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
3583 if test "x$enableval" = "xno" ; then
3584 AC_DEFINE(DISABLE_WTMPX, 1,
3585 [Define if you don't want to use wtmpx])
3589 AC_ARG_ENABLE(libutil,
3590 [ --disable-libutil disable use of libutil (login() etc.) [no]],
3592 if test "x$enableval" = "xno" ; then
3593 AC_DEFINE(DISABLE_LOGIN)
3597 AC_ARG_ENABLE(pututline,
3598 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
3600 if test "x$enableval" = "xno" ; then
3601 AC_DEFINE(DISABLE_PUTUTLINE, 1,
3602 [Define if you don't want to use pututline()
3603 etc. to write [uw]tmp])
3607 AC_ARG_ENABLE(pututxline,
3608 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
3610 if test "x$enableval" = "xno" ; then
3611 AC_DEFINE(DISABLE_PUTUTXLINE, 1,
3612 [Define if you don't want to use pututxline()
3613 etc. to write [uw]tmpx])
3617 AC_ARG_WITH(lastlog,
3618 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
3620 if test "x$withval" = "xno" ; then
3621 AC_DEFINE(DISABLE_LASTLOG)
3622 elif test -n "$withval" && test "x${withval}" != "xyes"; then
3623 conf_lastlog_location=$withval
3628 dnl lastlog, [uw]tmpx? detection
3629 dnl NOTE: set the paths in the platform section to avoid the
3630 dnl need for command-line parameters
3631 dnl lastlog and [uw]tmp are subject to a file search if all else fails
3633 dnl lastlog detection
3634 dnl NOTE: the code itself will detect if lastlog is a directory
3635 AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
3637 #include <sys/types.h>
3639 #ifdef HAVE_LASTLOG_H
3640 # include <lastlog.h>
3649 [ char *lastlog = LASTLOG_FILE; ],
3650 [ AC_MSG_RESULT(yes) ],
3653 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
3655 #include <sys/types.h>
3657 #ifdef HAVE_LASTLOG_H
3658 # include <lastlog.h>
3664 [ char *lastlog = _PATH_LASTLOG; ],
3665 [ AC_MSG_RESULT(yes) ],
3668 system_lastlog_path=no
3673 if test -z "$conf_lastlog_location"; then
3674 if test x"$system_lastlog_path" = x"no" ; then
3675 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
3676 if (test -d "$f" || test -f "$f") ; then
3677 conf_lastlog_location=$f
3680 if test -z "$conf_lastlog_location"; then
3681 AC_MSG_WARN([** Cannot find lastlog **])
3682 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
3687 if test -n "$conf_lastlog_location"; then
3688 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location",
3689 [Define if you want to specify the path to your lastlog file])
3693 AC_MSG_CHECKING([if your system defines UTMP_FILE])
3695 #include <sys/types.h>
3701 [ char *utmp = UTMP_FILE; ],
3702 [ AC_MSG_RESULT(yes) ],
3704 system_utmp_path=no ]
3706 if test -z "$conf_utmp_location"; then
3707 if test x"$system_utmp_path" = x"no" ; then
3708 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
3709 if test -f $f ; then
3710 conf_utmp_location=$f
3713 if test -z "$conf_utmp_location"; then
3714 AC_DEFINE(DISABLE_UTMP)
3718 if test -n "$conf_utmp_location"; then
3719 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location",
3720 [Define if you want to specify the path to your utmp file])
3724 AC_MSG_CHECKING([if your system defines WTMP_FILE])
3726 #include <sys/types.h>
3732 [ char *wtmp = WTMP_FILE; ],
3733 [ AC_MSG_RESULT(yes) ],
3735 system_wtmp_path=no ]
3737 if test -z "$conf_wtmp_location"; then
3738 if test x"$system_wtmp_path" = x"no" ; then
3739 for f in /usr/adm/wtmp /var/log/wtmp; do
3740 if test -f $f ; then
3741 conf_wtmp_location=$f
3744 if test -z "$conf_wtmp_location"; then
3745 AC_DEFINE(DISABLE_WTMP)
3749 if test -n "$conf_wtmp_location"; then
3750 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location",
3751 [Define if you want to specify the path to your wtmp file])
3755 dnl utmpx detection - I don't know any system so perverse as to require
3756 dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
3758 AC_MSG_CHECKING([if your system defines UTMPX_FILE])
3760 #include <sys/types.h>
3769 [ char *utmpx = UTMPX_FILE; ],
3770 [ AC_MSG_RESULT(yes) ],
3772 system_utmpx_path=no ]
3774 if test -z "$conf_utmpx_location"; then
3775 if test x"$system_utmpx_path" = x"no" ; then
3776 AC_DEFINE(DISABLE_UTMPX)
3779 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location",
3780 [Define if you want to specify the path to your utmpx file])
3784 AC_MSG_CHECKING([if your system defines WTMPX_FILE])
3786 #include <sys/types.h>
3795 [ char *wtmpx = WTMPX_FILE; ],
3796 [ AC_MSG_RESULT(yes) ],
3798 system_wtmpx_path=no ]
3800 if test -z "$conf_wtmpx_location"; then
3801 if test x"$system_wtmpx_path" = x"no" ; then
3802 AC_DEFINE(DISABLE_WTMPX)
3805 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location",
3806 [Define if you want to specify the path to your wtmpx file])
3810 if test ! -z "$blibpath" ; then
3811 LDFLAGS="$LDFLAGS $blibflags$blibpath"
3812 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
3815 dnl remove pam and dl because they are in $LIBPAM
3816 if test "$PAM_MSG" = yes ; then
3817 LIBS=`echo $LIBS | sed 's/-lpam //'`
3819 if test "$ac_cv_lib_pam_pam_set_item" = yes ; then
3820 LIBS=`echo $LIBS | sed 's/-ldl //'`
3823 dnl Adding -Werror to CFLAGS early prevents configure tests from running.
3825 CFLAGS="$CFLAGS $werror_flags"
3828 AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openbsd-compat/Makefile \
3829 openbsd-compat/regress/Makefile scard/Makefile ssh_prng_cmds survey.sh])
3832 # Print summary of options
3834 # Someone please show me a better way :)
3835 A=`eval echo ${prefix}` ; A=`eval echo ${A}`
3836 B=`eval echo ${bindir}` ; B=`eval echo ${B}`
3837 C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
3838 D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
3839 E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
3840 F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
3841 G=`eval echo ${piddir}` ; G=`eval echo ${G}`
3842 H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
3843 I=`eval echo ${user_path}` ; I=`eval echo ${I}`
3844 J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
3847 echo "OpenSSH has been configured with the following options:"
3848 echo " User binaries: $B"
3849 echo " System binaries: $C"
3850 echo " Configuration files: $D"
3851 echo " Askpass program: $E"
3852 echo " Manual pages: $F"
3853 echo " PID file: $G"
3854 echo " Privilege separation chroot path: $H"
3855 if test "x$external_path_file" = "x/etc/login.conf" ; then
3856 echo " At runtime, sshd will use the path defined in $external_path_file"
3857 echo " Make sure the path to scp is present, otherwise scp will not work"
3859 echo " sshd default user PATH: $I"
3860 if test ! -z "$external_path_file"; then
3861 echo " (If PATH is set in $external_path_file it will be used instead. If"
3862 echo " used, ensure the path to scp is present, otherwise scp will not work.)"
3865 if test ! -z "$superuser_path" ; then
3866 echo " sshd superuser user PATH: $J"
3868 echo " Manpage format: $MANTYPE"
3869 echo " PAM support: $PAM_MSG"
3870 echo " KerberosV support: $KRB5_MSG"
3871 echo " SELinux support: $SELINUX_MSG"
3872 echo " Smartcard support: $SCARD_MSG"
3873 echo " S/KEY support: $SKEY_MSG"
3874 echo " TCP Wrappers support: $TCPW_MSG"
3875 echo " MD5 password support: $MD5_MSG"
3876 echo " libedit support: $LIBEDIT_MSG"
3877 echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
3878 echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
3879 echo " BSD Auth support: $BSD_AUTH_MSG"
3880 echo " Random number source: $RAND_MSG"
3881 if test ! -z "$USE_RAND_HELPER" ; then
3882 echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
3887 echo " Host: ${host}"
3888 echo " Compiler: ${CC}"
3889 echo " Compiler flags: ${CFLAGS}"
3890 echo "Preprocessor flags: ${CPPFLAGS}"
3891 echo " Linker flags: ${LDFLAGS}"
3892 echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}"
3896 if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
3897 echo "SVR4 style packages are supported with \"make package\""
3901 if test "x$PAM_MSG" = "xyes" ; then
3902 echo "PAM is enabled. You may need to install a PAM control file "
3903 echo "for sshd, otherwise password authentication may fail. "
3904 echo "Example PAM control files can be found in the contrib/ "
3909 if test ! -z "$RAND_HELPER_CMDHASH" ; then
3910 echo "WARNING: you are using the builtin random number collection "
3911 echo "service. Please read WARNING.RNG and request that your OS "
3912 echo "vendor includes kernel-based random number collection in "
3913 echo "future versions of your OS."
3917 if test ! -z "$NO_PEERCHECK" ; then
3918 echo "WARNING: the operating system that you are using does not "
3919 echo "appear to support either the getpeereid() API nor the "
3920 echo "SO_PEERCRED getsockopt() option. These facilities are used to "
3921 echo "enforce security checks to prevent unauthorised connections to "
3922 echo "ssh-agent. Their absence increases the risk that a malicious "
3923 echo "user can connect to your agent. "
3927 if test "$AUDIT_MODULE" = "bsm" ; then
3928 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
3929 echo "See the Solaris section in README.platform for details."