1 # $Id: configure.ac,v 1.250 2005/03/07 09:21:37 tim 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)
18 AC_CONFIG_SRCDIR([ssh.c])
20 AC_CONFIG_HEADER(config.h)
25 # Checks for programs.
31 AC_PATH_PROG(CAT, cat)
32 AC_PATH_PROG(KILL, kill)
33 AC_PATH_PROGS(PERL, perl5 perl)
34 AC_PATH_PROG(SED, sed)
36 AC_PATH_PROG(ENT, ent)
38 AC_PATH_PROG(TEST_MINUS_S_SH, bash)
39 AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
40 AC_PATH_PROG(TEST_MINUS_S_SH, sh)
42 AC_SUBST(TEST_SHELL,sh)
45 AC_PATH_PROG(PATH_GROUPADD_PROG, groupadd, groupadd,
46 [/usr/sbin${PATH_SEPARATOR}/etc])
47 AC_PATH_PROG(PATH_USERADD_PROG, useradd, useradd,
48 [/usr/sbin${PATH_SEPARATOR}/etc])
49 AC_CHECK_PROG(MAKE_PACKAGE_SUPPORTED, pkgmk, yes, no)
54 if test -z "$AR" ; then
55 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
58 # Use LOGIN_PROGRAM from environment if possible
59 if test ! -z "$LOGIN_PROGRAM" ; then
60 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM")
63 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
64 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
65 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
69 AC_PATH_PROG(PATH_PASSWD_PROG, passwd)
70 if test ! -z "$PATH_PASSWD_PROG" ; then
71 AC_DEFINE_UNQUOTED(_PATH_PASSWD_PROG, "$PATH_PASSWD_PROG")
74 if test -z "$LD" ; then
80 if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
81 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wno-uninitialized"
85 [ --without-rpath Disable auto-added -R linker paths],
87 if test "x$withval" = "xno" ; then
90 if test "x$withval" = "xyes" ; then
96 # Check for some target-specific stuff
99 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
100 if (test -z "$blibpath"); then
101 blibpath="/usr/lib:/lib"
103 saved_LDFLAGS="$LDFLAGS"
104 for tryflags in -blibpath: -Wl,-blibpath: -Wl,-rpath, ;do
105 if (test -z "$blibflags"); then
106 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
107 AC_TRY_LINK([], [], [blibflags=$tryflags])
110 if (test -z "$blibflags"); then
111 AC_MSG_RESULT(not found)
112 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
114 AC_MSG_RESULT($blibflags)
116 LDFLAGS="$saved_LDFLAGS"
117 dnl Check for authenticate. Might be in libs.a on older AIXes
118 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)],
119 [AC_CHECK_LIB(s,authenticate,
120 [ AC_DEFINE(WITH_AIXAUTHENTICATE)
124 dnl Check for various auth function declarations in headers.
125 AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
126 passwdexpired], , , [#include <usersec.h>])
127 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
128 AC_CHECK_DECLS(loginfailed,
129 [AC_MSG_CHECKING(if loginfailed takes 4 arguments)
131 [#include <usersec.h>],
132 [(void)loginfailed("user","host","tty",0);],
134 AC_DEFINE(AIX_LOGINFAILED_4ARG)],
138 [#include <usersec.h>]
140 AC_CHECK_FUNCS(setauthdb)
141 check_for_aix_broken_getaddrinfo=1
142 AC_DEFINE(BROKEN_REALPATH)
143 AC_DEFINE(SETEUID_BREAKS_SETUID)
144 AC_DEFINE(BROKEN_SETREUID)
145 AC_DEFINE(BROKEN_SETREGID)
146 dnl AIX handles lastlog as part of its login message
147 AC_DEFINE(DISABLE_LASTLOG)
148 AC_DEFINE(LOGIN_NEEDS_UTMPX)
149 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
152 check_for_libcrypt_later=1
153 LIBS="$LIBS /usr/lib/textmode.o"
154 AC_DEFINE(HAVE_CYGWIN)
156 AC_DEFINE(DISABLE_SHADOW)
157 AC_DEFINE(IP_TOS_IS_BROKEN)
158 AC_DEFINE(NO_X11_UNIX_SOCKETS)
159 AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT)
160 AC_DEFINE(DISABLE_FD_PASSING)
163 AC_DEFINE(IP_TOS_IS_BROKEN)
164 AC_DEFINE(SETEUID_BREAKS_SETUID)
165 AC_DEFINE(BROKEN_SETREUID)
166 AC_DEFINE(BROKEN_SETREGID)
169 AC_MSG_CHECKING(if we have working getaddrinfo)
170 AC_TRY_RUN([#include <mach-o/dyld.h>
171 main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
175 }], [AC_MSG_RESULT(working)],
176 [AC_MSG_RESULT(buggy)
177 AC_DEFINE(BROKEN_GETADDRINFO)],
178 [AC_MSG_RESULT(assume it is working)])
179 AC_DEFINE(SETEUID_BREAKS_SETUID)
180 AC_DEFINE(BROKEN_SETREUID)
181 AC_DEFINE(BROKEN_SETREGID)
182 AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1)
185 if test -z "$GCC"; then
188 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
189 IPADDR_IN_DISPLAY=yes
190 AC_DEFINE(HAVE_SECUREWARE)
192 AC_DEFINE(LOGIN_NO_ENDOPT)
193 AC_DEFINE(LOGIN_NEEDS_UTMPX)
194 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
195 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
196 LIBS="$LIBS -lsec -lsecpw"
197 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
198 disable_ptmx_check=yes
201 if test -z "$GCC"; then
204 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
205 IPADDR_IN_DISPLAY=yes
207 AC_DEFINE(LOGIN_NO_ENDOPT)
208 AC_DEFINE(LOGIN_NEEDS_UTMPX)
209 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
210 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
212 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
215 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
216 IPADDR_IN_DISPLAY=yes
217 AC_DEFINE(PAM_SUN_CODEBASE)
219 AC_DEFINE(LOGIN_NO_ENDOPT)
220 AC_DEFINE(LOGIN_NEEDS_UTMPX)
221 AC_DEFINE(DISABLE_UTMP)
222 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
223 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
224 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
225 check_for_hpux_broken_getaddrinfo=1
226 check_for_conflicting_getspnam=1
228 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
231 PATH="$PATH:/usr/etc"
232 AC_DEFINE(BROKEN_INET_NTOA)
233 AC_DEFINE(SETEUID_BREAKS_SETUID)
234 AC_DEFINE(BROKEN_SETREUID)
235 AC_DEFINE(BROKEN_SETREGID)
236 AC_DEFINE(WITH_ABBREV_NO_TTY)
237 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
240 PATH="$PATH:/usr/etc"
241 AC_DEFINE(WITH_IRIX_ARRAY)
242 AC_DEFINE(WITH_IRIX_PROJECT)
243 AC_DEFINE(WITH_IRIX_AUDIT)
244 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS)])
245 AC_DEFINE(BROKEN_INET_NTOA)
246 AC_DEFINE(SETEUID_BREAKS_SETUID)
247 AC_DEFINE(BROKEN_SETREUID)
248 AC_DEFINE(BROKEN_SETREGID)
249 AC_DEFINE(BROKEN_UPDWTMPX)
250 AC_DEFINE(WITH_ABBREV_NO_TTY)
251 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
255 check_for_libcrypt_later=1
256 check_for_openpty_ctty_bug=1
257 AC_DEFINE(DONT_TRY_OTHER_AF)
258 AC_DEFINE(PAM_TTY_KLUDGE)
259 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!")
260 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
261 AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM)
262 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
263 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
264 inet6_default_4in6=yes
267 AC_DEFINE(BROKEN_CMSG_TYPE)
271 mips-sony-bsd|mips-sony-newsos4)
272 AC_DEFINE(HAVE_NEWS4)
276 check_for_libcrypt_before=1
277 if test "x$withval" != "xno" ; then
282 check_for_libcrypt_later=1
285 AC_DEFINE(SETEUID_BREAKS_SETUID)
286 AC_DEFINE(BROKEN_SETREUID)
287 AC_DEFINE(BROKEN_SETREGID)
290 conf_lastlog_location="/usr/adm/lastlog"
291 conf_utmp_location=/etc/utmp
292 conf_wtmp_location=/usr/adm/wtmp
295 AC_DEFINE(BROKEN_REALPATH)
297 AC_DEFINE(BROKEN_SAVED_UIDS)
300 if test "x$withval" != "xno" ; then
303 AC_DEFINE(PAM_SUN_CODEBASE)
304 AC_DEFINE(LOGIN_NEEDS_UTMPX)
305 AC_DEFINE(LOGIN_NEEDS_TERM)
306 AC_DEFINE(PAM_TTY_KLUDGE)
307 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID)
308 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
309 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
310 AC_DEFINE(SSHD_ACQUIRES_CTTY)
311 external_path_file=/etc/default/login
312 # hardwire lastlog location (can't detect it on some versions)
313 conf_lastlog_location="/var/adm/lastlog"
314 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
315 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
316 if test "$sol2ver" -ge 8; then
318 AC_DEFINE(DISABLE_UTMP)
319 AC_DEFINE(DISABLE_WTMP)
325 CPPFLAGS="$CPPFLAGS -DSUNOS4"
326 AC_CHECK_FUNCS(getpwanam)
327 AC_DEFINE(PAM_SUN_CODEBASE)
328 conf_utmp_location=/etc/utmp
329 conf_wtmp_location=/var/adm/wtmp
330 conf_lastlog_location=/var/adm/lastlog
336 AC_DEFINE(SSHD_ACQUIRES_CTTY)
337 AC_DEFINE(SETEUID_BREAKS_SETUID)
338 AC_DEFINE(BROKEN_SETREUID)
339 AC_DEFINE(BROKEN_SETREGID)
342 # /usr/ucblib MUST NOT be searched on ReliantUNIX
343 AC_CHECK_LIB(dl, dlsym, ,)
344 # -lresolv needs to be at then end of LIBS or DNS lookups break
345 AC_CHECK_LIB(res_query, resolv, [ LIBS="$LIBS -lresolv" ])
346 IPADDR_IN_DISPLAY=yes
348 AC_DEFINE(IP_TOS_IS_BROKEN)
349 AC_DEFINE(SETEUID_BREAKS_SETUID)
350 AC_DEFINE(BROKEN_SETREUID)
351 AC_DEFINE(BROKEN_SETREGID)
352 AC_DEFINE(SSHD_ACQUIRES_CTTY)
353 external_path_file=/etc/default/login
354 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
355 # Attention: always take care to bind libsocket and libnsl before libc,
356 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
358 # UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
361 AC_DEFINE(SETEUID_BREAKS_SETUID)
362 AC_DEFINE(BROKEN_SETREUID)
363 AC_DEFINE(BROKEN_SETREGID)
365 # UnixWare 7.x, OpenUNIX 8
368 AC_DEFINE(SETEUID_BREAKS_SETUID)
369 AC_DEFINE(BROKEN_SETREUID)
370 AC_DEFINE(BROKEN_SETREGID)
374 # SCO UNIX and OEM versions of SCO UNIX
376 AC_MSG_ERROR("This Platform is no longer supported.")
380 if test -z "$GCC"; then
381 CFLAGS="$CFLAGS -belf"
383 LIBS="$LIBS -lprot -lx -ltinfo -lm"
386 AC_DEFINE(HAVE_SECUREWARE)
387 AC_DEFINE(DISABLE_SHADOW)
388 AC_DEFINE(DISABLE_FD_PASSING)
389 AC_DEFINE(SETEUID_BREAKS_SETUID)
390 AC_DEFINE(BROKEN_SETREUID)
391 AC_DEFINE(BROKEN_SETREGID)
392 AC_DEFINE(WITH_ABBREV_NO_TTY)
393 AC_DEFINE(BROKEN_UPDWTMPX)
394 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd])
395 AC_CHECK_FUNCS(getluid setluid)
400 AC_DEFINE(NO_SSH_LASTLOG)
401 AC_DEFINE(SETEUID_BREAKS_SETUID)
402 AC_DEFINE(BROKEN_SETREUID)
403 AC_DEFINE(BROKEN_SETREGID)
405 AC_DEFINE(DISABLE_FD_PASSING)
407 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
411 AC_DEFINE(SETEUID_BREAKS_SETUID)
412 AC_DEFINE(BROKEN_SETREUID)
413 AC_DEFINE(BROKEN_SETREGID)
414 AC_DEFINE(WITH_ABBREV_NO_TTY)
416 AC_DEFINE(DISABLE_FD_PASSING)
418 LIBS="$LIBS -lgen -lacid -ldb"
422 AC_DEFINE(SETEUID_BREAKS_SETUID)
423 AC_DEFINE(BROKEN_SETREUID)
424 AC_DEFINE(BROKEN_SETREGID)
426 AC_DEFINE(DISABLE_FD_PASSING)
427 AC_DEFINE(NO_SSH_LASTLOG)
428 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
429 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
433 AC_MSG_CHECKING(for Digital Unix SIA)
436 [ --with-osfsia Enable Digital Unix SIA],
438 if test "x$withval" = "xno" ; then
439 AC_MSG_RESULT(disabled)
444 if test -z "$no_osfsia" ; then
445 if test -f /etc/sia/matrix.conf; then
447 AC_DEFINE(HAVE_OSF_SIA)
448 AC_DEFINE(DISABLE_LOGIN)
449 AC_DEFINE(DISABLE_FD_PASSING)
450 LIBS="$LIBS -lsecurity -ldb -lm -laud"
453 AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin")
456 AC_DEFINE(BROKEN_GETADDRINFO)
457 AC_DEFINE(SETEUID_BREAKS_SETUID)
458 AC_DEFINE(BROKEN_SETREUID)
459 AC_DEFINE(BROKEN_SETREGID)
464 AC_DEFINE(NO_X11_UNIX_SOCKETS)
465 AC_DEFINE(MISSING_NFDBITS)
466 AC_DEFINE(MISSING_HOWMANY)
467 AC_DEFINE(MISSING_FD_MASK)
471 # Allow user to specify flags
473 [ --with-cflags Specify additional flags to pass to compiler],
475 if test "x$withval" != "xno" ; then
476 CFLAGS="$CFLAGS $withval"
480 AC_ARG_WITH(cppflags,
481 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
483 if test "x$withval" != "xno"; then
484 CPPFLAGS="$CPPFLAGS $withval"
489 [ --with-ldflags Specify additional flags to pass to linker],
491 if test "x$withval" != "xno" ; then
492 LDFLAGS="$LDFLAGS $withval"
497 [ --with-libs Specify additional libraries to link with],
499 if test "x$withval" != "xno" ; then
500 LIBS="$LIBS $withval"
505 AC_MSG_CHECKING(compiler and flags for sanity)
511 [ AC_MSG_RESULT(yes) ],
514 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
516 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
519 # Checks for header files.
520 AC_CHECK_HEADERS(bstring.h crypt.h dirent.h endian.h features.h \
521 floatingpoint.h getopt.h glob.h ia.h lastlog.h limits.h login.h \
522 login_cap.h maillock.h ndir.h netdb.h netgroup.h \
523 netinet/in_systm.h pam/pam_appl.h paths.h pty.h readpassphrase.h \
524 rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
525 strings.h sys/dir.h sys/strtio.h sys/audit.h sys/bitypes.h \
526 sys/bsdtty.h sys/cdefs.h sys/mman.h sys/ndir.h sys/prctl.h \
527 sys/pstat.h sys/select.h sys/stat.h sys/stream.h \
528 sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h sys/un.h \
529 time.h tmpdir.h ttyent.h usersec.h util.h utime.h utmp.h utmpx.h vis.h)
531 # sys/ptms.h requires sys/stream.h to be included first on Solaris
532 AC_CHECK_HEADERS(sys/ptms.h, [], [], [
533 #ifdef HAVE_SYS_STREAM_H
534 # include <sys/stream.h>
538 # Checks for libraries.
539 AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
540 AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
542 dnl IRIX and Solaris 2.5.1 have dirname() in libgen
543 AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
544 AC_CHECK_LIB(gen, dirname,[
545 AC_CACHE_CHECK([for broken dirname],
546 ac_cv_have_broken_dirname, [
554 int main(int argc, char **argv) {
557 strncpy(buf,"/etc", 32);
559 if (!s || strncmp(s, "/", 32) != 0) {
566 [ ac_cv_have_broken_dirname="no" ],
567 [ ac_cv_have_broken_dirname="yes" ]
571 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
573 AC_DEFINE(HAVE_DIRNAME)
574 AC_CHECK_HEADERS(libgen.h)
579 AC_CHECK_FUNC(getspnam, ,
580 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
581 AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME))
585 [ --with-zlib=PATH Use zlib in PATH],
587 if test "x$withval" = "xno" ; then
588 AC_MSG_ERROR([*** zlib is required ***])
590 if test -d "$withval/lib"; then
591 if test -n "${need_dash_r}"; then
592 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
594 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
597 if test -n "${need_dash_r}"; then
598 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
600 LDFLAGS="-L${withval} ${LDFLAGS}"
603 if test -d "$withval/include"; then
604 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
606 CPPFLAGS="-I${withval} ${CPPFLAGS}"
611 AC_CHECK_LIB(z, deflate, ,
613 saved_CPPFLAGS="$CPPFLAGS"
614 saved_LDFLAGS="$LDFLAGS"
616 dnl Check default zlib install dir
617 if test -n "${need_dash_r}"; then
618 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
620 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
622 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
624 AC_TRY_LINK_FUNC(deflate, AC_DEFINE(HAVE_LIBZ),
626 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
631 AC_CHECK_HEADER([zlib.h], ,AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***]))
633 AC_ARG_WITH(zlib-version-check,
634 [ --without-zlib-version-check Disable zlib version check],
635 [ if test "x$withval" = "xno" ; then
636 zlib_check_nonfatal=1
641 AC_MSG_CHECKING(for zlib 1.1.4 or greater)
642 AC_RUN_IFELSE([AC_LANG_SOURCE([[
647 if (sscanf(ZLIB_VERSION, "%d.%d.%d", &a, &b, &c) != 3)
649 v = a*1000000 + b*1000 + c;
657 if test -z "$zlib_check_nonfatal" ; then
658 AC_MSG_ERROR([*** zlib too old - check config.log ***
659 Your reported zlib version has known security problems. It's possible your
660 vendor has fixed these problems without changing the version number. If you
661 are sure this is the case, you can disable the check by running
662 "./configure --without-zlib-version-check".
663 If you are in doubt, upgrade zlib to version 1.1.4 or greater.])
665 AC_MSG_WARN([zlib version may have security problems])
668 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
672 AC_CHECK_FUNC(strcasecmp,
673 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
675 AC_CHECK_FUNC(utimes,
676 [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
677 LIBS="$LIBS -lc89"]) ]
680 dnl Checks for libutil functions
681 AC_CHECK_HEADERS(libutil.h)
682 AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN)])
683 AC_CHECK_FUNCS(logout updwtmp logwtmp)
687 # Check for ALTDIRFUNC glob() extension
688 AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
689 AC_EGREP_CPP(FOUNDIT,
692 #ifdef GLOB_ALTDIRFUNC
697 AC_DEFINE(GLOB_HAS_ALTDIRFUNC)
705 # Check for g.gl_matchc glob() extension
706 AC_MSG_CHECKING(for gl_matchc field in glob_t)
707 AC_EGREP_CPP(FOUNDIT,
710 int main(void){glob_t g; g.gl_matchc = 1;}
713 AC_DEFINE(GLOB_HAS_GL_MATCHC)
721 AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
724 #include <sys/types.h>
726 int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
728 [AC_MSG_RESULT(yes)],
731 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
734 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
735 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
739 AC_MSG_CHECKING([for /proc/pid/fd directory])
740 if test -d "/proc/$$/fd" ; then
741 AC_DEFINE(HAVE_PROC_PID)
747 # Check whether user wants S/Key support
750 [ --with-skey[[=PATH]] Enable S/Key support (optionally in PATH)],
752 if test "x$withval" != "xno" ; then
754 if test "x$withval" != "xyes" ; then
755 CPPFLAGS="$CPPFLAGS -I${withval}/include"
756 LDFLAGS="$LDFLAGS -L${withval}/lib"
763 AC_MSG_CHECKING([for s/key support])
768 int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
770 [AC_MSG_RESULT(yes)],
773 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
775 AC_MSG_CHECKING(if skeychallenge takes 4 arguments)
779 [(void)skeychallenge(NULL,"name","",0);],
781 AC_DEFINE(SKEYCHALLENGE_4ARG)],
788 # Check whether user wants TCP wrappers support
790 AC_ARG_WITH(tcp-wrappers,
791 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support (optionally in PATH)],
793 if test "x$withval" != "xno" ; then
795 saved_LDFLAGS="$LDFLAGS"
796 saved_CPPFLAGS="$CPPFLAGS"
797 if test -n "${withval}" -a "${withval}" != "yes"; then
798 if test -d "${withval}/lib"; then
799 if test -n "${need_dash_r}"; then
800 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
802 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
805 if test -n "${need_dash_r}"; then
806 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
808 LDFLAGS="-L${withval} ${LDFLAGS}"
811 if test -d "${withval}/include"; then
812 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
814 CPPFLAGS="-I${withval} ${CPPFLAGS}"
818 LIBS="$LIBWRAP $LIBS"
819 AC_MSG_CHECKING(for libwrap)
822 #include <sys/types.h>
823 #include <sys/socket.h>
824 #include <netinet/in.h>
826 int deny_severity = 0, allow_severity = 0;
836 AC_MSG_ERROR([*** libwrap missing])
844 # Check whether user wants libedit support
847 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
848 [ if test "x$withval" != "xno" ; then
849 AC_CHECK_LIB(edit, el_init,
850 [ AC_DEFINE(USE_LIBEDIT, [], [Use libedit for sftp])
851 LIBEDIT="-ledit -lcurses"
862 [ --with-audit=module Enable EXPERIMENTAL audit support (modules=debug,bsm)],
864 AC_MSG_CHECKING(for supported audit module)
869 dnl Checks for headers, libs and functions
870 AC_CHECK_HEADERS(bsm/audit.h, [],
871 [AC_MSG_ERROR(BSM enabled and bsm/audit.h not found)])
872 AC_CHECK_LIB(bsm, getaudit, [],
873 [AC_MSG_ERROR(BSM enabled and required library not found)])
874 AC_CHECK_FUNCS(getaudit, [],
875 [AC_MSG_ERROR(BSM enabled and required function not found)])
877 AC_CHECK_FUNCS(getaudit_addr)
878 AC_DEFINE(USE_BSM_AUDIT, [], [Use BSM audit module])
883 AC_DEFINE(SSH_AUDIT_EVENTS, [], Use audit debugging module)
886 AC_MSG_ERROR([Unknown audit module $withval])
891 dnl Checks for library functions. Please keep in alphabetical order
893 arc4random __b64_ntop b64_ntop __b64_pton b64_pton bcopy \
894 bindresvport_sa clock closefrom dirfd fchdir fchmod fchown \
895 freeaddrinfo futimes getaddrinfo getcwd getgrouplist getnameinfo \
896 getopt getpeereid _getpty getrlimit getttyent glob inet_aton \
897 inet_ntoa inet_ntop innetgr login_getcapbool md5_crypt memmove \
898 mkdtemp mmap ngetaddrinfo nsleep ogetaddrinfo openlog_r openpty \
899 pstat prctl readpassphrase realpath recvmsg rresvport_af sendmsg \
900 setdtablesize setegid setenv seteuid setgroups setlogin setpcred \
901 setproctitle setregid setreuid setrlimit \
902 setsid setvbuf sigaction sigvec snprintf socketpair strerror \
903 strlcat strlcpy strmode strnvis strtoul sysconf tcgetpgrp \
904 truncate unsetenv updwtmpx utimes vhangup vsnprintf waitpid \
907 # IRIX has a const char return value for gai_strerror()
908 AC_CHECK_FUNCS(gai_strerror,[
909 AC_DEFINE(HAVE_GAI_STRERROR)
911 #include <sys/types.h>
912 #include <sys/socket.h>
915 const char *gai_strerror(int);],[
918 str = gai_strerror(0);],[
919 AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1,
920 [Define if gai_strerror() returns const char *])])])
922 AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP))
924 dnl Make sure prototypes are defined for these before using them.
925 AC_CHECK_DECL(strsep, [AC_CHECK_FUNCS(strsep)])
926 AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
928 dnl tcsendbreak might be a macro
929 AC_CHECK_DECL(tcsendbreak,
930 [AC_DEFINE(HAVE_TCSENDBREAK)],
931 [AC_CHECK_FUNCS(tcsendbreak)],
932 [#include <termios.h>]
935 AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>])
937 AC_CHECK_FUNCS(setresuid, [
938 dnl Some platorms have setresuid that isn't implemented, test for this
939 AC_MSG_CHECKING(if setresuid seems to work)
944 int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
946 [AC_MSG_RESULT(yes)],
947 [AC_DEFINE(BROKEN_SETRESUID)
948 AC_MSG_RESULT(not implemented)],
949 [AC_MSG_WARN([cross compiling: not checking setresuid])]
953 AC_CHECK_FUNCS(setresgid, [
954 dnl Some platorms have setresgid that isn't implemented, test for this
955 AC_MSG_CHECKING(if setresgid seems to work)
960 int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
962 [AC_MSG_RESULT(yes)],
963 [AC_DEFINE(BROKEN_SETRESGID)
964 AC_MSG_RESULT(not implemented)],
965 [AC_MSG_WARN([cross compiling: not checking setresuid])]
969 dnl Checks for time functions
970 AC_CHECK_FUNCS(gettimeofday time)
971 dnl Checks for utmp functions
972 AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
973 AC_CHECK_FUNCS(utmpname)
974 dnl Checks for utmpx functions
975 AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
976 AC_CHECK_FUNCS(setutxent utmpxname)
978 AC_CHECK_FUNC(daemon,
979 [AC_DEFINE(HAVE_DAEMON)],
980 [AC_CHECK_LIB(bsd, daemon, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
983 AC_CHECK_FUNC(getpagesize,
984 [AC_DEFINE(HAVE_GETPAGESIZE)],
985 [AC_CHECK_LIB(ucb, getpagesize, [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
988 # Check for broken snprintf
989 if test "x$ac_cv_func_snprintf" = "xyes" ; then
990 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
994 int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
996 [AC_MSG_RESULT(yes)],
999 AC_DEFINE(BROKEN_SNPRINTF)
1000 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
1002 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
1006 # Check for missing getpeereid (or equiv) support
1008 if test "x$ac_cv_func_getpeereid" != "xyes" ; then
1009 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
1011 [#include <sys/types.h>
1012 #include <sys/socket.h>],
1013 [int i = SO_PEERCRED;],
1014 [AC_MSG_RESULT(yes)],
1020 dnl see whether mkstemp() requires XXXXXX
1021 if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
1022 AC_MSG_CHECKING([for (overly) strict mkstemp])
1026 main() { char template[]="conftest.mkstemp-test";
1027 if (mkstemp(template) == -1)
1029 unlink(template); exit(0);
1037 AC_DEFINE(HAVE_STRICT_MKSTEMP)
1041 AC_DEFINE(HAVE_STRICT_MKSTEMP)
1046 dnl make sure that openpty does not reacquire controlling terminal
1047 if test ! -z "$check_for_openpty_ctty_bug"; then
1048 AC_MSG_CHECKING(if openpty correctly handles controlling tty)
1052 #include <sys/fcntl.h>
1053 #include <sys/types.h>
1054 #include <sys/wait.h>
1060 int fd, ptyfd, ttyfd, status;
1063 if (pid < 0) { /* failed */
1065 } else if (pid > 0) { /* parent */
1066 waitpid(pid, &status, 0);
1067 if (WIFEXITED(status))
1068 exit(WEXITSTATUS(status));
1071 } else { /* child */
1072 close(0); close(1); close(2);
1074 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
1075 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
1077 exit(3); /* Acquired ctty: broken */
1079 exit(0); /* Did not acquire ctty: OK */
1088 AC_DEFINE(SSHD_ACQUIRES_CTTY)
1093 if test "x$ac_cv_func_getaddrinfo" = "xyes" -a "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
1094 AC_MSG_CHECKING(if getaddrinfo seems to work)
1098 #include <sys/socket.h>
1101 #include <netinet/in.h>
1103 #define TEST_PORT "2222"
1109 struct addrinfo *gai_ai, *ai, hints;
1110 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1112 memset(&hints, 0, sizeof(hints));
1113 hints.ai_family = PF_UNSPEC;
1114 hints.ai_socktype = SOCK_STREAM;
1115 hints.ai_flags = AI_PASSIVE;
1117 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1119 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1123 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1124 if (ai->ai_family != AF_INET6)
1127 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1128 sizeof(ntop), strport, sizeof(strport),
1129 NI_NUMERICHOST|NI_NUMERICSERV);
1132 if (err == EAI_SYSTEM)
1133 perror("getnameinfo EAI_SYSTEM");
1135 fprintf(stderr, "getnameinfo failed: %s\n",
1140 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1143 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1156 AC_DEFINE(BROKEN_GETADDRINFO)
1161 if test "x$ac_cv_func_getaddrinfo" = "xyes" -a "x$check_for_aix_broken_getaddrinfo" = "x1"; then
1162 AC_MSG_CHECKING(if getaddrinfo seems to work)
1166 #include <sys/socket.h>
1169 #include <netinet/in.h>
1171 #define TEST_PORT "2222"
1177 struct addrinfo *gai_ai, *ai, hints;
1178 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1180 memset(&hints, 0, sizeof(hints));
1181 hints.ai_family = PF_UNSPEC;
1182 hints.ai_socktype = SOCK_STREAM;
1183 hints.ai_flags = AI_PASSIVE;
1185 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1187 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1191 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1192 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1195 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1196 sizeof(ntop), strport, sizeof(strport),
1197 NI_NUMERICHOST|NI_NUMERICSERV);
1199 if (ai->ai_family == AF_INET && err != 0) {
1200 perror("getnameinfo");
1209 AC_DEFINE(AIX_GETNAMEINFO_HACK, [],
1210 [Define if you have a getaddrinfo that fails for the all-zeros IPv6 address])
1214 AC_DEFINE(BROKEN_GETADDRINFO)
1219 if test "x$check_for_conflicting_getspnam" = "x1"; then
1220 AC_MSG_CHECKING(for conflicting getspnam in shadow.h)
1224 int main(void) {exit(0);}
1231 AC_DEFINE(GETSPNAM_CONFLICTING_DEFS, 1,
1232 [Conflicting defs for getspnam])
1239 # Check for PAM libs
1242 [ --with-pam Enable PAM support ],
1244 if test "x$withval" != "xno" ; then
1245 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
1246 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
1247 AC_MSG_ERROR([PAM headers not found])
1250 AC_CHECK_LIB(dl, dlopen, , )
1251 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
1252 AC_CHECK_FUNCS(pam_getenvlist)
1253 AC_CHECK_FUNCS(pam_putenv)
1258 if test $ac_cv_lib_dl_dlopen = yes; then
1268 # Check for older PAM
1269 if test "x$PAM_MSG" = "xyes" ; then
1270 # Check PAM strerror arguments (old PAM)
1271 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
1275 #if defined(HAVE_SECURITY_PAM_APPL_H)
1276 #include <security/pam_appl.h>
1277 #elif defined (HAVE_PAM_PAM_APPL_H)
1278 #include <pam/pam_appl.h>
1281 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
1282 [AC_MSG_RESULT(no)],
1284 AC_DEFINE(HAVE_OLD_PAM)
1286 PAM_MSG="yes (old library)"
1291 # Search for OpenSSL
1292 saved_CPPFLAGS="$CPPFLAGS"
1293 saved_LDFLAGS="$LDFLAGS"
1294 AC_ARG_WITH(ssl-dir,
1295 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
1297 if test "x$withval" != "xno" ; then
1300 ./*|../*) withval="`pwd`/$withval"
1302 if test -d "$withval/lib"; then
1303 if test -n "${need_dash_r}"; then
1304 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1306 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1309 if test -n "${need_dash_r}"; then
1310 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
1312 LDFLAGS="-L${withval} ${LDFLAGS}"
1315 if test -d "$withval/include"; then
1316 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
1318 CPPFLAGS="-I${withval} ${CPPFLAGS}"
1323 LIBS="-lcrypto $LIBS"
1324 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
1326 dnl Check default openssl install dir
1327 if test -n "${need_dash_r}"; then
1328 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
1330 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
1332 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
1333 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
1335 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
1341 # Determine OpenSSL header version
1342 AC_MSG_CHECKING([OpenSSL header version])
1347 #include <openssl/opensslv.h>
1348 #define DATA "conftest.sslincver"
1353 fd = fopen(DATA,"w");
1357 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
1364 ssl_header_ver=`cat conftest.sslincver`
1365 AC_MSG_RESULT($ssl_header_ver)
1368 AC_MSG_RESULT(not found)
1369 AC_MSG_ERROR(OpenSSL version header not found.)
1372 AC_MSG_WARN([cross compiling: not checking])
1376 # Determine OpenSSL library version
1377 AC_MSG_CHECKING([OpenSSL library version])
1382 #include <openssl/opensslv.h>
1383 #include <openssl/crypto.h>
1384 #define DATA "conftest.ssllibver"
1389 fd = fopen(DATA,"w");
1393 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
1400 ssl_library_ver=`cat conftest.ssllibver`
1401 AC_MSG_RESULT($ssl_library_ver)
1404 AC_MSG_RESULT(not found)
1405 AC_MSG_ERROR(OpenSSL library not found.)
1408 AC_MSG_WARN([cross compiling: not checking])
1412 # Sanity check OpenSSL headers
1413 AC_MSG_CHECKING([whether OpenSSL's headers match the library])
1417 #include <openssl/opensslv.h>
1418 int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
1425 AC_MSG_ERROR([Your OpenSSL headers do not match your library.
1426 Check config.log for details.
1427 Also see contrib/findssl.sh for help identifying header/library mismatches.])
1430 AC_MSG_WARN([cross compiling: not checking])
1434 # Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
1435 # because the system crypt() is more featureful.
1436 if test "x$check_for_libcrypt_before" = "x1"; then
1437 AC_CHECK_LIB(crypt, crypt)
1440 # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
1441 # version in OpenSSL.
1442 if test "x$check_for_libcrypt_later" = "x1"; then
1443 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
1447 ### Configure cryptographic random number support
1449 # Check wheter OpenSSL seeds itself
1450 AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
1454 #include <openssl/rand.h>
1455 int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
1458 OPENSSL_SEEDS_ITSELF=yes
1463 # Default to use of the rand helper if OpenSSL doesn't
1468 AC_MSG_WARN([cross compiling: assuming yes])
1469 # This is safe, since all recent OpenSSL versions will
1470 # complain at runtime if not seeded correctly.
1471 OPENSSL_SEEDS_ITSELF=yes
1476 # Do we want to force the use of the rand helper?
1477 AC_ARG_WITH(rand-helper,
1478 [ --with-rand-helper Use subprocess to gather strong randomness ],
1480 if test "x$withval" = "xno" ; then
1481 # Force use of OpenSSL's internal RNG, even if
1482 # the previous test showed it to be unseeded.
1483 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
1484 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
1485 OPENSSL_SEEDS_ITSELF=yes
1494 # Which randomness source do we use?
1495 if test ! -z "$OPENSSL_SEEDS_ITSELF" -a -z "$USE_RAND_HELPER" ; then
1497 AC_DEFINE(OPENSSL_PRNG_ONLY)
1498 RAND_MSG="OpenSSL internal ONLY"
1499 INSTALL_SSH_RAND_HELPER=""
1500 elif test ! -z "$USE_RAND_HELPER" ; then
1501 # install rand helper
1502 RAND_MSG="ssh-rand-helper"
1503 INSTALL_SSH_RAND_HELPER="yes"
1505 AC_SUBST(INSTALL_SSH_RAND_HELPER)
1507 ### Configuration of ssh-rand-helper
1510 AC_ARG_WITH(prngd-port,
1511 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
1520 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
1523 if test ! -z "$withval" ; then
1524 PRNGD_PORT="$withval"
1525 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT)
1530 # PRNGD Unix domain socket
1531 AC_ARG_WITH(prngd-socket,
1532 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
1536 withval="/var/run/egd-pool"
1544 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
1548 if test ! -z "$withval" ; then
1549 if test ! -z "$PRNGD_PORT" ; then
1550 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
1552 if test ! -r "$withval" ; then
1553 AC_MSG_WARN(Entropy socket is not readable)
1555 PRNGD_SOCKET="$withval"
1556 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
1560 # Check for existing socket only if we don't have a random device already
1561 if test "$USE_RAND_HELPER" = yes ; then
1562 AC_MSG_CHECKING(for PRNGD/EGD socket)
1563 # Insert other locations here
1564 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
1565 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
1566 PRNGD_SOCKET="$sock"
1567 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
1571 if test ! -z "$PRNGD_SOCKET" ; then
1572 AC_MSG_RESULT($PRNGD_SOCKET)
1574 AC_MSG_RESULT(not found)
1580 # Change default command timeout for hashing entropy source
1582 AC_ARG_WITH(entropy-timeout,
1583 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
1585 if test "x$withval" != "xno" ; then
1586 entropy_timeout=$withval
1590 AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1592 SSH_PRIVSEP_USER=sshd
1593 AC_ARG_WITH(privsep-user,
1594 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
1596 if test -n "$withval"; then
1597 SSH_PRIVSEP_USER=$withval
1601 AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER")
1602 AC_SUBST(SSH_PRIVSEP_USER)
1604 # We do this little dance with the search path to insure
1605 # that programs that we select for use by installed programs
1606 # (which may be run by the super-user) come from trusted
1607 # locations before they come from the user's private area.
1608 # This should help avoid accidentally configuring some
1609 # random version of a program in someone's personal bin.
1613 test -h /bin 2> /dev/null && PATH=/usr/bin
1614 test -d /sbin && PATH=$PATH:/sbin
1615 test -d /usr/sbin && PATH=$PATH:/usr/sbin
1616 PATH=$PATH:/etc:$OPATH
1618 # These programs are used by the command hashing source to gather entropy
1619 OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
1620 OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
1621 OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
1622 OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
1623 OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
1624 OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
1625 OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
1626 OSSH_PATH_ENTROPY_PROG(PROG_W, w)
1627 OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
1628 OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
1629 OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
1630 OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
1631 OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
1632 OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
1633 OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
1634 OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
1638 # Where does ssh-rand-helper get its randomness from?
1639 INSTALL_SSH_PRNG_CMDS=""
1640 if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
1641 if test ! -z "$PRNGD_PORT" ; then
1642 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
1643 elif test ! -z "$PRNGD_SOCKET" ; then
1644 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
1646 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
1647 RAND_HELPER_CMDHASH=yes
1648 INSTALL_SSH_PRNG_CMDS="yes"
1651 AC_SUBST(INSTALL_SSH_PRNG_CMDS)
1654 # Cheap hack to ensure NEWS-OS libraries are arranged right.
1655 if test ! -z "$SONY" ; then
1656 LIBS="$LIBS -liberty";
1659 # Checks for data types
1660 AC_CHECK_SIZEOF(char, 1)
1661 AC_CHECK_SIZEOF(short int, 2)
1662 AC_CHECK_SIZEOF(int, 4)
1663 AC_CHECK_SIZEOF(long int, 4)
1664 AC_CHECK_SIZEOF(long long int, 8)
1666 # Sanity check long long for some platforms (AIX)
1667 if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
1668 ac_cv_sizeof_long_long_int=0
1671 # More checks for data types
1672 AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
1674 [ #include <sys/types.h> ],
1676 [ ac_cv_have_u_int="yes" ],
1677 [ ac_cv_have_u_int="no" ]
1680 if test "x$ac_cv_have_u_int" = "xyes" ; then
1681 AC_DEFINE(HAVE_U_INT)
1685 AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
1687 [ #include <sys/types.h> ],
1688 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
1689 [ ac_cv_have_intxx_t="yes" ],
1690 [ ac_cv_have_intxx_t="no" ]
1693 if test "x$ac_cv_have_intxx_t" = "xyes" ; then
1694 AC_DEFINE(HAVE_INTXX_T)
1698 if (test -z "$have_intxx_t" && \
1699 test "x$ac_cv_header_stdint_h" = "xyes")
1701 AC_MSG_CHECKING([for intXX_t types in stdint.h])
1703 [ #include <stdint.h> ],
1704 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
1706 AC_DEFINE(HAVE_INTXX_T)
1709 [ AC_MSG_RESULT(no) ]
1713 AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
1716 #include <sys/types.h>
1717 #ifdef HAVE_STDINT_H
1718 # include <stdint.h>
1720 #include <sys/socket.h>
1721 #ifdef HAVE_SYS_BITYPES_H
1722 # include <sys/bitypes.h>
1725 [ int64_t a; a = 1;],
1726 [ ac_cv_have_int64_t="yes" ],
1727 [ ac_cv_have_int64_t="no" ]
1730 if test "x$ac_cv_have_int64_t" = "xyes" ; then
1731 AC_DEFINE(HAVE_INT64_T)
1734 AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
1736 [ #include <sys/types.h> ],
1737 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
1738 [ ac_cv_have_u_intxx_t="yes" ],
1739 [ ac_cv_have_u_intxx_t="no" ]
1742 if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
1743 AC_DEFINE(HAVE_U_INTXX_T)
1747 if test -z "$have_u_intxx_t" ; then
1748 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
1750 [ #include <sys/socket.h> ],
1751 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
1753 AC_DEFINE(HAVE_U_INTXX_T)
1756 [ AC_MSG_RESULT(no) ]
1760 AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
1762 [ #include <sys/types.h> ],
1763 [ u_int64_t a; a = 1;],
1764 [ ac_cv_have_u_int64_t="yes" ],
1765 [ ac_cv_have_u_int64_t="no" ]
1768 if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
1769 AC_DEFINE(HAVE_U_INT64_T)
1773 if test -z "$have_u_int64_t" ; then
1774 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
1776 [ #include <sys/bitypes.h> ],
1777 [ u_int64_t a; a = 1],
1779 AC_DEFINE(HAVE_U_INT64_T)
1782 [ AC_MSG_RESULT(no) ]
1786 if test -z "$have_u_intxx_t" ; then
1787 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
1790 #include <sys/types.h>
1792 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
1793 [ ac_cv_have_uintxx_t="yes" ],
1794 [ ac_cv_have_uintxx_t="no" ]
1797 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
1798 AC_DEFINE(HAVE_UINTXX_T)
1802 if test -z "$have_uintxx_t" ; then
1803 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
1805 [ #include <stdint.h> ],
1806 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
1808 AC_DEFINE(HAVE_UINTXX_T)
1811 [ AC_MSG_RESULT(no) ]
1815 if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
1816 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
1818 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
1821 #include <sys/bitypes.h>
1824 int8_t a; int16_t b; int32_t c;
1825 u_int8_t e; u_int16_t f; u_int32_t g;
1826 a = b = c = e = f = g = 1;
1829 AC_DEFINE(HAVE_U_INTXX_T)
1830 AC_DEFINE(HAVE_INTXX_T)
1838 AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
1841 #include <sys/types.h>
1843 [ u_char foo; foo = 125; ],
1844 [ ac_cv_have_u_char="yes" ],
1845 [ ac_cv_have_u_char="no" ]
1848 if test "x$ac_cv_have_u_char" = "xyes" ; then
1849 AC_DEFINE(HAVE_U_CHAR)
1854 AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
1856 AC_CHECK_TYPES(in_addr_t,,,
1857 [#include <sys/types.h>
1858 #include <netinet/in.h>])
1860 AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
1863 #include <sys/types.h>
1865 [ size_t foo; foo = 1235; ],
1866 [ ac_cv_have_size_t="yes" ],
1867 [ ac_cv_have_size_t="no" ]
1870 if test "x$ac_cv_have_size_t" = "xyes" ; then
1871 AC_DEFINE(HAVE_SIZE_T)
1874 AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
1877 #include <sys/types.h>
1879 [ ssize_t foo; foo = 1235; ],
1880 [ ac_cv_have_ssize_t="yes" ],
1881 [ ac_cv_have_ssize_t="no" ]
1884 if test "x$ac_cv_have_ssize_t" = "xyes" ; then
1885 AC_DEFINE(HAVE_SSIZE_T)
1888 AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
1893 [ clock_t foo; foo = 1235; ],
1894 [ ac_cv_have_clock_t="yes" ],
1895 [ ac_cv_have_clock_t="no" ]
1898 if test "x$ac_cv_have_clock_t" = "xyes" ; then
1899 AC_DEFINE(HAVE_CLOCK_T)
1902 AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
1905 #include <sys/types.h>
1906 #include <sys/socket.h>
1908 [ sa_family_t foo; foo = 1235; ],
1909 [ ac_cv_have_sa_family_t="yes" ],
1912 #include <sys/types.h>
1913 #include <sys/socket.h>
1914 #include <netinet/in.h>
1916 [ sa_family_t foo; foo = 1235; ],
1917 [ ac_cv_have_sa_family_t="yes" ],
1919 [ ac_cv_have_sa_family_t="no" ]
1923 if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
1924 AC_DEFINE(HAVE_SA_FAMILY_T)
1927 AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
1930 #include <sys/types.h>
1932 [ pid_t foo; foo = 1235; ],
1933 [ ac_cv_have_pid_t="yes" ],
1934 [ ac_cv_have_pid_t="no" ]
1937 if test "x$ac_cv_have_pid_t" = "xyes" ; then
1938 AC_DEFINE(HAVE_PID_T)
1941 AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
1944 #include <sys/types.h>
1946 [ mode_t foo; foo = 1235; ],
1947 [ ac_cv_have_mode_t="yes" ],
1948 [ ac_cv_have_mode_t="no" ]
1951 if test "x$ac_cv_have_mode_t" = "xyes" ; then
1952 AC_DEFINE(HAVE_MODE_T)
1956 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
1959 #include <sys/types.h>
1960 #include <sys/socket.h>
1962 [ struct sockaddr_storage s; ],
1963 [ ac_cv_have_struct_sockaddr_storage="yes" ],
1964 [ ac_cv_have_struct_sockaddr_storage="no" ]
1967 if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
1968 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)
1971 AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
1974 #include <sys/types.h>
1975 #include <netinet/in.h>
1977 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
1978 [ ac_cv_have_struct_sockaddr_in6="yes" ],
1979 [ ac_cv_have_struct_sockaddr_in6="no" ]
1982 if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
1983 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)
1986 AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
1989 #include <sys/types.h>
1990 #include <netinet/in.h>
1992 [ struct in6_addr s; s.s6_addr[0] = 0; ],
1993 [ ac_cv_have_struct_in6_addr="yes" ],
1994 [ ac_cv_have_struct_in6_addr="no" ]
1997 if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
1998 AC_DEFINE(HAVE_STRUCT_IN6_ADDR)
2001 AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
2004 #include <sys/types.h>
2005 #include <sys/socket.h>
2008 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
2009 [ ac_cv_have_struct_addrinfo="yes" ],
2010 [ ac_cv_have_struct_addrinfo="no" ]
2013 if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
2014 AC_DEFINE(HAVE_STRUCT_ADDRINFO)
2017 AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
2019 [ #include <sys/time.h> ],
2020 [ struct timeval tv; tv.tv_sec = 1;],
2021 [ ac_cv_have_struct_timeval="yes" ],
2022 [ ac_cv_have_struct_timeval="no" ]
2025 if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
2026 AC_DEFINE(HAVE_STRUCT_TIMEVAL)
2027 have_struct_timeval=1
2030 AC_CHECK_TYPES(struct timespec)
2032 # We need int64_t or else certian parts of the compile will fail.
2033 if test "x$ac_cv_have_int64_t" = "xno" -a \
2034 "x$ac_cv_sizeof_long_int" != "x8" -a \
2035 "x$ac_cv_sizeof_long_long_int" = "x0" ; then
2036 echo "OpenSSH requires int64_t support. Contact your vendor or install"
2037 echo "an alternative compiler (I.E., GCC) before continuing."
2041 dnl test snprintf (broken on SCO w/gcc)
2046 #ifdef HAVE_SNPRINTF
2050 char expected_out[50];
2052 #if (SIZEOF_LONG_INT == 8)
2053 long int num = 0x7fffffffffffffff;
2055 long long num = 0x7fffffffffffffffll;
2057 strcpy(expected_out, "9223372036854775807");
2058 snprintf(buf, mazsize, "%lld", num);
2059 if(strcmp(buf, expected_out) != 0)
2066 ]])], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],
2067 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
2071 dnl Checks for structure members
2072 OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
2073 OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
2074 OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
2075 OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
2076 OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
2077 OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
2078 OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
2079 OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
2080 OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
2081 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
2082 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
2083 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
2084 OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
2085 OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
2086 OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
2087 OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
2088 OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
2090 AC_CHECK_MEMBERS([struct stat.st_blksize])
2092 AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
2093 ac_cv_have_ss_family_in_struct_ss, [
2096 #include <sys/types.h>
2097 #include <sys/socket.h>
2099 [ struct sockaddr_storage s; s.ss_family = 1; ],
2100 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
2101 [ ac_cv_have_ss_family_in_struct_ss="no" ],
2104 if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
2105 AC_DEFINE(HAVE_SS_FAMILY_IN_SS)
2108 AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
2109 ac_cv_have___ss_family_in_struct_ss, [
2112 #include <sys/types.h>
2113 #include <sys/socket.h>
2115 [ struct sockaddr_storage s; s.__ss_family = 1; ],
2116 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
2117 [ ac_cv_have___ss_family_in_struct_ss="no" ]
2120 if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
2121 AC_DEFINE(HAVE___SS_FAMILY_IN_SS)
2124 AC_CACHE_CHECK([for pw_class field in struct passwd],
2125 ac_cv_have_pw_class_in_struct_passwd, [
2130 [ struct passwd p; p.pw_class = 0; ],
2131 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
2132 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
2135 if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
2136 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD)
2139 AC_CACHE_CHECK([for pw_expire field in struct passwd],
2140 ac_cv_have_pw_expire_in_struct_passwd, [
2145 [ struct passwd p; p.pw_expire = 0; ],
2146 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
2147 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
2150 if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
2151 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD)
2154 AC_CACHE_CHECK([for pw_change field in struct passwd],
2155 ac_cv_have_pw_change_in_struct_passwd, [
2160 [ struct passwd p; p.pw_change = 0; ],
2161 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
2162 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
2165 if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
2166 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD)
2169 dnl make sure we're using the real structure members and not defines
2170 AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
2171 ac_cv_have_accrights_in_msghdr, [
2174 #include <sys/types.h>
2175 #include <sys/socket.h>
2176 #include <sys/uio.h>
2178 #ifdef msg_accrights
2179 #error "msg_accrights is a macro"
2183 m.msg_accrights = 0;
2187 [ ac_cv_have_accrights_in_msghdr="yes" ],
2188 [ ac_cv_have_accrights_in_msghdr="no" ]
2191 if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
2192 AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR)
2195 AC_CACHE_CHECK([for msg_control field in struct msghdr],
2196 ac_cv_have_control_in_msghdr, [
2199 #include <sys/types.h>
2200 #include <sys/socket.h>
2201 #include <sys/uio.h>
2204 #error "msg_control is a macro"
2212 [ ac_cv_have_control_in_msghdr="yes" ],
2213 [ ac_cv_have_control_in_msghdr="no" ]
2216 if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
2217 AC_DEFINE(HAVE_CONTROL_IN_MSGHDR)
2220 AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
2222 [ extern char *__progname; printf("%s", __progname); ],
2223 [ ac_cv_libc_defines___progname="yes" ],
2224 [ ac_cv_libc_defines___progname="no" ]
2227 if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
2228 AC_DEFINE(HAVE___PROGNAME)
2231 AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
2235 [ printf("%s", __FUNCTION__); ],
2236 [ ac_cv_cc_implements___FUNCTION__="yes" ],
2237 [ ac_cv_cc_implements___FUNCTION__="no" ]
2240 if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
2241 AC_DEFINE(HAVE___FUNCTION__)
2244 AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
2248 [ printf("%s", __func__); ],
2249 [ ac_cv_cc_implements___func__="yes" ],
2250 [ ac_cv_cc_implements___func__="no" ]
2253 if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
2254 AC_DEFINE(HAVE___func__)
2257 AC_CACHE_CHECK([whether getopt has optreset support],
2258 ac_cv_have_getopt_optreset, [
2263 [ extern int optreset; optreset = 0; ],
2264 [ ac_cv_have_getopt_optreset="yes" ],
2265 [ ac_cv_have_getopt_optreset="no" ]
2268 if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
2269 AC_DEFINE(HAVE_GETOPT_OPTRESET)
2272 AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
2274 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
2275 [ ac_cv_libc_defines_sys_errlist="yes" ],
2276 [ ac_cv_libc_defines_sys_errlist="no" ]
2279 if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
2280 AC_DEFINE(HAVE_SYS_ERRLIST)
2284 AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
2286 [ extern int sys_nerr; printf("%i", sys_nerr);],
2287 [ ac_cv_libc_defines_sys_nerr="yes" ],
2288 [ ac_cv_libc_defines_sys_nerr="no" ]
2291 if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
2292 AC_DEFINE(HAVE_SYS_NERR)
2296 # Check whether user wants sectok support
2298 [ --with-sectok Enable smartcard support using libsectok],
2300 if test "x$withval" != "xno" ; then
2301 if test "x$withval" != "xyes" ; then
2302 CPPFLAGS="$CPPFLAGS -I${withval}"
2303 LDFLAGS="$LDFLAGS -L${withval}"
2304 if test ! -z "$need_dash_r" ; then
2305 LDFLAGS="$LDFLAGS -R${withval}"
2307 if test ! -z "$blibpath" ; then
2308 blibpath="$blibpath:${withval}"
2311 AC_CHECK_HEADERS(sectok.h)
2312 if test "$ac_cv_header_sectok_h" != yes; then
2313 AC_MSG_ERROR(Can't find sectok.h)
2315 AC_CHECK_LIB(sectok, sectok_open)
2316 if test "$ac_cv_lib_sectok_sectok_open" != yes; then
2317 AC_MSG_ERROR(Can't find libsectok)
2319 AC_DEFINE(SMARTCARD)
2320 AC_DEFINE(USE_SECTOK)
2321 SCARD_MSG="yes, using sectok"
2326 # Check whether user wants OpenSC support
2328 AC_HELP_STRING([--with-opensc=PFX],
2329 [Enable smartcard support using OpenSC]),
2330 opensc_config_prefix="$withval", opensc_config_prefix="")
2331 if test x$opensc_config_prefix != x ; then
2332 OPENSC_CONFIG=$opensc_config_prefix/bin/opensc-config
2333 AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no)
2334 if test "$OPENSC_CONFIG" != "no"; then
2335 LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags`
2336 LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs`
2337 CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS"
2338 LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS"
2339 AC_DEFINE(SMARTCARD)
2340 AC_DEFINE(USE_OPENSC)
2341 SCARD_MSG="yes, using OpenSC"
2345 # Check libraries needed by DNS fingerprint support
2346 AC_SEARCH_LIBS(getrrsetbyname, resolv,
2347 [AC_DEFINE(HAVE_GETRRSETBYNAME)],
2349 # Needed by our getrrsetbyname()
2350 AC_SEARCH_LIBS(res_query, resolv)
2351 AC_SEARCH_LIBS(dn_expand, resolv)
2352 AC_MSG_CHECKING(if res_query will link)
2353 AC_TRY_LINK_FUNC(res_query, AC_MSG_RESULT(yes),
2356 LIBS="$LIBS -lresolv"
2357 AC_MSG_CHECKING(for res_query in -lresolv)
2362 res_query (0, 0, 0, 0, 0);
2366 [LIBS="$LIBS -lresolv"
2367 AC_MSG_RESULT(yes)],
2371 AC_CHECK_FUNCS(_getshort _getlong)
2372 AC_CHECK_MEMBER(HEADER.ad,
2373 [AC_DEFINE(HAVE_HEADER_AD)],,
2374 [#include <arpa/nameser.h>])
2377 # Check whether user wants Kerberos 5 support
2379 AC_ARG_WITH(kerberos5,
2380 [ --with-kerberos5=PATH Enable Kerberos 5 support],
2381 [ if test "x$withval" != "xno" ; then
2382 if test "x$withval" = "xyes" ; then
2383 KRB5ROOT="/usr/local"
2391 AC_MSG_CHECKING(for krb5-config)
2392 if test -x $KRB5ROOT/bin/krb5-config ; then
2393 KRB5CONF=$KRB5ROOT/bin/krb5-config
2394 AC_MSG_RESULT($KRB5CONF)
2396 AC_MSG_CHECKING(for gssapi support)
2397 if $KRB5CONF | grep gssapi >/dev/null ; then
2405 K5CFLAGS="`$KRB5CONF --cflags $k5confopts`"
2406 K5LIBS="`$KRB5CONF --libs $k5confopts`"
2407 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
2408 AC_MSG_CHECKING(whether we are using Heimdal)
2409 AC_TRY_COMPILE([ #include <krb5.h> ],
2410 [ char *tmp = heimdal_version; ],
2411 [ AC_MSG_RESULT(yes)
2412 AC_DEFINE(HEIMDAL) ],
2417 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
2418 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
2419 AC_MSG_CHECKING(whether we are using Heimdal)
2420 AC_TRY_COMPILE([ #include <krb5.h> ],
2421 [ char *tmp = heimdal_version; ],
2422 [ AC_MSG_RESULT(yes)
2424 K5LIBS="-lkrb5 -ldes"
2425 K5LIBS="$K5LIBS -lcom_err -lasn1"
2426 AC_CHECK_LIB(roken, net_write,
2427 [K5LIBS="$K5LIBS -lroken"])
2430 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
2433 AC_SEARCH_LIBS(dn_expand, resolv)
2435 AC_CHECK_LIB(gssapi,gss_init_sec_context,
2437 K5LIBS="-lgssapi $K5LIBS" ],
2438 [ AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context,
2440 K5LIBS="-lgssapi_krb5 $K5LIBS" ],
2441 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
2446 AC_CHECK_HEADER(gssapi.h, ,
2447 [ unset ac_cv_header_gssapi_h
2448 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
2449 AC_CHECK_HEADERS(gssapi.h, ,
2450 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
2456 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
2457 AC_CHECK_HEADER(gssapi_krb5.h, ,
2458 [ CPPFLAGS="$oldCPP" ])
2461 if test ! -z "$need_dash_r" ; then
2462 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
2464 if test ! -z "$blibpath" ; then
2465 blibpath="$blibpath:${KRB5ROOT}/lib"
2469 AC_CHECK_HEADERS(gssapi.h gssapi/gssapi.h)
2470 AC_CHECK_HEADERS(gssapi_krb5.h gssapi/gssapi_krb5.h)
2471 AC_CHECK_HEADERS(gssapi_generic.h gssapi/gssapi_generic.h)
2473 LIBS="$LIBS $K5LIBS"
2474 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS))
2475 AC_SEARCH_LIBS(krb5_init_ets, $K5LIBS, AC_DEFINE(KRB5_INIT_ETS))
2479 # Looking for programs, paths and files
2481 PRIVSEP_PATH=/var/empty
2482 AC_ARG_WITH(privsep-path,
2483 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
2485 if test "x$withval" != "$no" ; then
2486 PRIVSEP_PATH=$withval
2490 AC_SUBST(PRIVSEP_PATH)
2493 [ --with-xauth=PATH Specify path to xauth program ],
2495 if test "x$withval" != "xno" ; then
2501 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
2502 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
2503 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
2504 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
2505 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
2506 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
2507 xauth_path="/usr/openwin/bin/xauth"
2513 AC_ARG_ENABLE(strip,
2514 [ --disable-strip Disable calling strip(1) on install],
2516 if test "x$enableval" = "xno" ; then
2523 if test -z "$xauth_path" ; then
2524 XAUTH_PATH="undefined"
2525 AC_SUBST(XAUTH_PATH)
2527 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
2528 XAUTH_PATH=$xauth_path
2529 AC_SUBST(XAUTH_PATH)
2532 # Check for mail directory (last resort if we cannot get it from headers)
2533 if test ! -z "$MAIL" ; then
2534 maildir=`dirname $MAIL`
2535 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir")
2538 if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
2539 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
2540 disable_ptmx_check=yes
2542 if test -z "$no_dev_ptmx" ; then
2543 if test "x$disable_ptmx_check" != "xyes" ; then
2544 AC_CHECK_FILE("/dev/ptmx",
2546 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
2553 if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
2554 AC_CHECK_FILE("/dev/ptc",
2556 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
2561 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
2564 # Options from here on. Some of these are preset by platform above
2565 AC_ARG_WITH(mantype,
2566 [ --with-mantype=man|cat|doc Set man page type],
2573 AC_MSG_ERROR(invalid man type: $withval)
2578 if test -z "$MANTYPE"; then
2579 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
2580 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
2581 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
2583 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
2590 if test "$MANTYPE" = "doc"; then
2597 # Check whether to enable MD5 passwords
2599 AC_ARG_WITH(md5-passwords,
2600 [ --with-md5-passwords Enable use of MD5 passwords],
2602 if test "x$withval" != "xno" ; then
2603 AC_DEFINE(HAVE_MD5_PASSWORDS)
2609 # Whether to disable shadow password support
2611 [ --without-shadow Disable shadow password support],
2613 if test "x$withval" = "xno" ; then
2614 AC_DEFINE(DISABLE_SHADOW)
2620 if test -z "$disable_shadow" ; then
2621 AC_MSG_CHECKING([if the systems has expire shadow information])
2624 #include <sys/types.h>
2627 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
2628 [ sp_expire_available=yes ], []
2631 if test "x$sp_expire_available" = "xyes" ; then
2633 AC_DEFINE(HAS_SHADOW_EXPIRE)
2639 # Use ip address instead of hostname in $DISPLAY
2640 if test ! -z "$IPADDR_IN_DISPLAY" ; then
2641 DISPLAY_HACK_MSG="yes"
2642 AC_DEFINE(IPADDR_IN_DISPLAY)
2644 DISPLAY_HACK_MSG="no"
2645 AC_ARG_WITH(ipaddr-display,
2646 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
2648 if test "x$withval" != "xno" ; then
2649 AC_DEFINE(IPADDR_IN_DISPLAY)
2650 DISPLAY_HACK_MSG="yes"
2656 # check for /etc/default/login and use it if present.
2657 AC_ARG_ENABLE(etc-default-login,
2658 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
2659 [ if test "x$enableval" = "xno"; then
2660 AC_MSG_NOTICE([/etc/default/login handling disabled])
2661 etc_default_login=no
2663 etc_default_login=yes
2665 [ etc_default_login=yes ]
2668 if test "x$etc_default_login" != "xno"; then
2669 AC_CHECK_FILE("/etc/default/login",
2670 [ external_path_file=/etc/default/login ])
2671 if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
2673 AC_MSG_WARN([cross compiling: Disabling /etc/default/login test])
2674 elif test "x$external_path_file" = "x/etc/default/login"; then
2675 AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN)
2679 dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
2680 if test $ac_cv_func_login_getcapbool = "yes" -a \
2681 $ac_cv_header_login_cap_h = "yes" ; then
2682 external_path_file=/etc/login.conf
2685 # Whether to mess with the default path
2686 SERVER_PATH_MSG="(default)"
2687 AC_ARG_WITH(default-path,
2688 [ --with-default-path= Specify default \$PATH environment for server],
2690 if test "x$external_path_file" = "x/etc/login.conf" ; then
2692 --with-default-path=PATH has no effect on this system.
2693 Edit /etc/login.conf instead.])
2694 elif test "x$withval" != "xno" ; then
2695 if test ! -z "$external_path_file" ; then
2697 --with-default-path=PATH will only be used if PATH is not defined in
2698 $external_path_file .])
2700 user_path="$withval"
2701 SERVER_PATH_MSG="$withval"
2704 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
2705 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
2707 if test ! -z "$external_path_file" ; then
2709 If PATH is defined in $external_path_file, ensure the path to scp is included,
2710 otherwise scp will not work.])
2714 /* find out what STDPATH is */
2719 #ifndef _PATH_STDPATH
2720 # ifdef _PATH_USERPATH /* Irix */
2721 # define _PATH_STDPATH _PATH_USERPATH
2723 # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
2726 #include <sys/types.h>
2727 #include <sys/stat.h>
2729 #define DATA "conftest.stdpath"
2736 fd = fopen(DATA,"w");
2740 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
2745 ], [ user_path=`cat conftest.stdpath` ],
2746 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
2747 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
2749 # make sure $bindir is in USER_PATH so scp will work
2750 t_bindir=`eval echo ${bindir}`
2752 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
2755 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
2757 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
2758 if test $? -ne 0 ; then
2759 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
2760 if test $? -ne 0 ; then
2761 user_path=$user_path:$t_bindir
2762 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
2767 if test "x$external_path_file" != "x/etc/login.conf" ; then
2768 AC_DEFINE_UNQUOTED(USER_PATH, "$user_path")
2772 # Set superuser path separately to user path
2773 AC_ARG_WITH(superuser-path,
2774 [ --with-superuser-path= Specify different path for super-user],
2776 if test "x$withval" != "xno" ; then
2777 AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval")
2778 superuser_path=$withval
2784 AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
2785 IPV4_IN6_HACK_MSG="no"
2787 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
2789 if test "x$withval" != "xno" ; then
2791 AC_DEFINE(IPV4_IN_IPV6)
2792 IPV4_IN6_HACK_MSG="yes"
2797 if test "x$inet6_default_4in6" = "xyes"; then
2798 AC_MSG_RESULT([yes (default)])
2799 AC_DEFINE(IPV4_IN_IPV6)
2800 IPV4_IN6_HACK_MSG="yes"
2802 AC_MSG_RESULT([no (default)])
2807 # Whether to enable BSD auth support
2809 AC_ARG_WITH(bsd-auth,
2810 [ --with-bsd-auth Enable BSD auth support],
2812 if test "x$withval" != "xno" ; then
2819 # Where to place sshd.pid
2821 # make sure the directory exists
2822 if test ! -d $piddir ; then
2823 piddir=`eval echo ${sysconfdir}`
2825 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
2829 AC_ARG_WITH(pid-dir,
2830 [ --with-pid-dir=PATH Specify location of ssh.pid file],
2832 if test "x$withval" != "xno" ; then
2834 if test ! -d $piddir ; then
2835 AC_MSG_WARN([** no $piddir directory on this system **])
2841 AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir")
2844 dnl allow user to disable some login recording features
2845 AC_ARG_ENABLE(lastlog,
2846 [ --disable-lastlog disable use of lastlog even if detected [no]],
2848 if test "x$enableval" = "xno" ; then
2849 AC_DEFINE(DISABLE_LASTLOG)
2854 [ --disable-utmp disable use of utmp even if detected [no]],
2856 if test "x$enableval" = "xno" ; then
2857 AC_DEFINE(DISABLE_UTMP)
2861 AC_ARG_ENABLE(utmpx,
2862 [ --disable-utmpx disable use of utmpx even if detected [no]],
2864 if test "x$enableval" = "xno" ; then
2865 AC_DEFINE(DISABLE_UTMPX)
2870 [ --disable-wtmp disable use of wtmp even if detected [no]],
2872 if test "x$enableval" = "xno" ; then
2873 AC_DEFINE(DISABLE_WTMP)
2877 AC_ARG_ENABLE(wtmpx,
2878 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
2880 if test "x$enableval" = "xno" ; then
2881 AC_DEFINE(DISABLE_WTMPX)
2885 AC_ARG_ENABLE(libutil,
2886 [ --disable-libutil disable use of libutil (login() etc.) [no]],
2888 if test "x$enableval" = "xno" ; then
2889 AC_DEFINE(DISABLE_LOGIN)
2893 AC_ARG_ENABLE(pututline,
2894 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
2896 if test "x$enableval" = "xno" ; then
2897 AC_DEFINE(DISABLE_PUTUTLINE)
2901 AC_ARG_ENABLE(pututxline,
2902 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
2904 if test "x$enableval" = "xno" ; then
2905 AC_DEFINE(DISABLE_PUTUTXLINE)
2909 AC_ARG_WITH(lastlog,
2910 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
2912 if test "x$withval" = "xno" ; then
2913 AC_DEFINE(DISABLE_LASTLOG)
2915 conf_lastlog_location=$withval
2920 dnl lastlog, [uw]tmpx? detection
2921 dnl NOTE: set the paths in the platform section to avoid the
2922 dnl need for command-line parameters
2923 dnl lastlog and [uw]tmp are subject to a file search if all else fails
2925 dnl lastlog detection
2926 dnl NOTE: the code itself will detect if lastlog is a directory
2927 AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
2929 #include <sys/types.h>
2931 #ifdef HAVE_LASTLOG_H
2932 # include <lastlog.h>
2941 [ char *lastlog = LASTLOG_FILE; ],
2942 [ AC_MSG_RESULT(yes) ],
2945 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
2947 #include <sys/types.h>
2949 #ifdef HAVE_LASTLOG_H
2950 # include <lastlog.h>
2956 [ char *lastlog = _PATH_LASTLOG; ],
2957 [ AC_MSG_RESULT(yes) ],
2960 system_lastlog_path=no
2965 if test -z "$conf_lastlog_location"; then
2966 if test x"$system_lastlog_path" = x"no" ; then
2967 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
2968 if (test -d "$f" || test -f "$f") ; then
2969 conf_lastlog_location=$f
2972 if test -z "$conf_lastlog_location"; then
2973 AC_MSG_WARN([** Cannot find lastlog **])
2974 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
2979 if test -n "$conf_lastlog_location"; then
2980 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location")
2984 AC_MSG_CHECKING([if your system defines UTMP_FILE])
2986 #include <sys/types.h>
2992 [ char *utmp = UTMP_FILE; ],
2993 [ AC_MSG_RESULT(yes) ],
2995 system_utmp_path=no ]
2997 if test -z "$conf_utmp_location"; then
2998 if test x"$system_utmp_path" = x"no" ; then
2999 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
3000 if test -f $f ; then
3001 conf_utmp_location=$f
3004 if test -z "$conf_utmp_location"; then
3005 AC_DEFINE(DISABLE_UTMP)
3009 if test -n "$conf_utmp_location"; then
3010 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location")
3014 AC_MSG_CHECKING([if your system defines WTMP_FILE])
3016 #include <sys/types.h>
3022 [ char *wtmp = WTMP_FILE; ],
3023 [ AC_MSG_RESULT(yes) ],
3025 system_wtmp_path=no ]
3027 if test -z "$conf_wtmp_location"; then
3028 if test x"$system_wtmp_path" = x"no" ; then
3029 for f in /usr/adm/wtmp /var/log/wtmp; do
3030 if test -f $f ; then
3031 conf_wtmp_location=$f
3034 if test -z "$conf_wtmp_location"; then
3035 AC_DEFINE(DISABLE_WTMP)
3039 if test -n "$conf_wtmp_location"; then
3040 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location")
3044 dnl utmpx detection - I don't know any system so perverse as to require
3045 dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
3047 AC_MSG_CHECKING([if your system defines UTMPX_FILE])
3049 #include <sys/types.h>
3058 [ char *utmpx = UTMPX_FILE; ],
3059 [ AC_MSG_RESULT(yes) ],
3061 system_utmpx_path=no ]
3063 if test -z "$conf_utmpx_location"; then
3064 if test x"$system_utmpx_path" = x"no" ; then
3065 AC_DEFINE(DISABLE_UTMPX)
3068 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location")
3072 AC_MSG_CHECKING([if your system defines WTMPX_FILE])
3074 #include <sys/types.h>
3083 [ char *wtmpx = WTMPX_FILE; ],
3084 [ AC_MSG_RESULT(yes) ],
3086 system_wtmpx_path=no ]
3088 if test -z "$conf_wtmpx_location"; then
3089 if test x"$system_wtmpx_path" = x"no" ; then
3090 AC_DEFINE(DISABLE_WTMPX)
3093 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location")
3097 if test ! -z "$blibpath" ; then
3098 LDFLAGS="$LDFLAGS $blibflags$blibpath"
3099 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
3102 dnl remove pam and dl because they are in $LIBPAM
3103 if test "$PAM_MSG" = yes ; then
3104 LIBS=`echo $LIBS | sed 's/-lpam //'`
3106 if test "$ac_cv_lib_pam_pam_set_item" = yes ; then
3107 LIBS=`echo $LIBS | sed 's/-ldl //'`
3111 AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openbsd-compat/Makefile \
3112 scard/Makefile ssh_prng_cmds survey.sh])
3115 # Print summary of options
3117 # Someone please show me a better way :)
3118 A=`eval echo ${prefix}` ; A=`eval echo ${A}`
3119 B=`eval echo ${bindir}` ; B=`eval echo ${B}`
3120 C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
3121 D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
3122 E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
3123 F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
3124 G=`eval echo ${piddir}` ; G=`eval echo ${G}`
3125 H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
3126 I=`eval echo ${user_path}` ; I=`eval echo ${I}`
3127 J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
3130 echo "OpenSSH has been configured with the following options:"
3131 echo " User binaries: $B"
3132 echo " System binaries: $C"
3133 echo " Configuration files: $D"
3134 echo " Askpass program: $E"
3135 echo " Manual pages: $F"
3136 echo " PID file: $G"
3137 echo " Privilege separation chroot path: $H"
3138 if test "x$external_path_file" = "x/etc/login.conf" ; then
3139 echo " At runtime, sshd will use the path defined in $external_path_file"
3140 echo " Make sure the path to scp is present, otherwise scp will not work"
3142 echo " sshd default user PATH: $I"
3143 if test ! -z "$external_path_file"; then
3144 echo " (If PATH is set in $external_path_file it will be used instead. If"
3145 echo " used, ensure the path to scp is present, otherwise scp will not work.)"
3148 if test ! -z "$superuser_path" ; then
3149 echo " sshd superuser user PATH: $J"
3151 echo " Manpage format: $MANTYPE"
3152 echo " PAM support: $PAM_MSG"
3153 echo " KerberosV support: $KRB5_MSG"
3154 echo " Smartcard support: $SCARD_MSG"
3155 echo " S/KEY support: $SKEY_MSG"
3156 echo " TCP Wrappers support: $TCPW_MSG"
3157 echo " MD5 password support: $MD5_MSG"
3158 echo " libedit support: $LIBEDIT_MSG"
3159 echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
3160 echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
3161 echo " BSD Auth support: $BSD_AUTH_MSG"
3162 echo " Random number source: $RAND_MSG"
3163 if test ! -z "$USE_RAND_HELPER" ; then
3164 echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
3169 echo " Host: ${host}"
3170 echo " Compiler: ${CC}"
3171 echo " Compiler flags: ${CFLAGS}"
3172 echo "Preprocessor flags: ${CPPFLAGS}"
3173 echo " Linker flags: ${LDFLAGS}"
3174 echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}"
3178 if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
3179 echo "SVR4 style packages are supported with \"make package\""
3183 if test "x$PAM_MSG" = "xyes" ; then
3184 echo "PAM is enabled. You may need to install a PAM control file "
3185 echo "for sshd, otherwise password authentication may fail. "
3186 echo "Example PAM control files can be found in the contrib/ "
3191 if test ! -z "$RAND_HELPER_CMDHASH" ; then
3192 echo "WARNING: you are using the builtin random number collection "
3193 echo "service. Please read WARNING.RNG and request that your OS "
3194 echo "vendor includes kernel-based random number collection in "
3195 echo "future versions of your OS."
3199 if test ! -z "$NO_PEERCHECK" ; then
3200 echo "WARNING: the operating system that you are using does not "
3201 echo "appear to support either the getpeereid() API nor the "
3202 echo "SO_PEERCRED getsockopt() option. These facilities are used to "
3203 echo "enforce security checks to prevent unauthorised connections to "
3204 echo "ssh-agent. Their absence increases the risk that a malicious "
3205 echo "user can connect to your agent. "
3209 if test "$AUDIT_MODULE" = "bsm" ; then
3210 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
3211 echo "See the Solaris section in README.platform for details."