]> andersk Git - openssh.git/blame - configure.ac
- (dtucker) [configure.ac] Bug #588, #615: Move other libgen tests to after
[openssh.git] / configure.ac
CommitLineData
eb5d7ff6 1# $Id$
0b202697 2
98a7c37b 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c])
5881cd60 5
6AC_CONFIG_HEADER(config.h)
b14b2ae7 7AC_PROG_CC
a7effaac 8AC_CANONICAL_HOST
cf0c5df5 9AC_C_BIGENDIAN
5881cd60 10
a0391976 11# Checks for programs.
4bbf95fa 12AC_PROG_AWK
4cca272e 13AC_PROG_CPP
5881cd60 14AC_PROG_RANLIB
cf8dd513 15AC_PROG_INSTALL
bee0a37e 16AC_PATH_PROG(AR, ar)
13dd877b 17AC_PATH_PROGS(PERL, perl5 perl)
c3690df3 18AC_PATH_PROG(SED, sed)
a0f84251 19AC_SUBST(PERL)
ad85db64 20AC_PATH_PROG(ENT, ent)
21AC_SUBST(ENT)
6958bd37 22AC_PATH_PROG(TEST_MINUS_S_SH, bash)
23AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
24AC_PATH_PROG(TEST_MINUS_S_SH, sh)
6193497b 25AC_PATH_PROG(SH, sh)
f498ed15 26
948fd8b9 27# System features
28AC_SYS_LARGEFILE
29
c193d002 30if test -z "$AR" ; then
31 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
32fi
33
2e73a022 34# Use LOGIN_PROGRAM from environment if possible
35if test ! -z "$LOGIN_PROGRAM" ; then
36 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM")
37else
38 # Search for login
39 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
40 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
41 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
42 fi
43fi
44
d423d822 45if test -z "$LD" ; then
46 LD=$CC
47fi
48AC_SUBST(LD)
49
d423d822 50AC_C_INLINE
5ed2bb5b 51if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
52 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wno-uninitialized"
d423d822 53fi
54
a0391976 55# Check for some target-specific stuff
a7effaac 56case "$host" in
9d6b1b96 57*-*-aix*)
0c2fb82f 58 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
84afc958 59 LDFLAGS="$LDFLAGS -L/usr/local/lib"
68ece370 60 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
61 if (test -z "$blibpath"); then
62 blibpath="/usr/lib:/lib:/usr/local/lib"
63 fi
64 saved_LDFLAGS="$LDFLAGS"
65 for tryflags in -blibpath: -Wl,-blibpath: -Wl,-rpath, ;do
66 if (test -z "$blibflags"); then
67 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
68 AC_TRY_LINK([], [], [blibflags=$tryflags])
69 fi
70 done
71 if (test -z "$blibflags"); then
72 AC_MSG_RESULT(not found)
73 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
74 else
75 AC_MSG_RESULT($blibflags)
bd499f9e 76 fi
68ece370 77 LDFLAGS="$saved_LDFLAGS"
e351e493 78 dnl Check for authenticate. Might be in libs.a on older AIXes
79 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)],
0764e748 80 [AC_CHECK_LIB(s,authenticate,
e351e493 81 [ AC_DEFINE(WITH_AIXAUTHENTICATE)
0764e748 82 LIBS="$LIBS -ls"
83 ])
84 ])
e351e493 85 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
86 AC_CHECK_DECL(loginfailed,
87 [AC_MSG_CHECKING(if loginfailed takes 4 arguments)
88 AC_TRY_COMPILE(
f58c0e01 89 [#include <usersec.h>],
e351e493 90 [(void)loginfailed("user","host","tty",0);],
91 [AC_MSG_RESULT(yes)
92 AC_DEFINE(AIX_LOGINFAILED_4ARG)],
f58c0e01 93 [AC_MSG_RESULT(no)]
e351e493 94 )],
95 [],
96 [#include <usersec.h>]
97 )
2aa3a16c 98 AC_CHECK_FUNCS(setauthdb)
4c8ef3fb 99 AC_DEFINE(BROKEN_GETADDRINFO)
1352689f 100 AC_DEFINE(BROKEN_REALPATH)
3b8dff69 101 AC_DEFINE(SETEUID_BREAKS_SETUID)
102 AC_DEFINE(BROKEN_SETREUID)
103 AC_DEFINE(BROKEN_SETREGID)
a3cef3ca 104 dnl AIX handles lastlog as part of its login message
105 AC_DEFINE(DISABLE_LASTLOG)
58177c0a 106 AC_DEFINE(LOGIN_NEEDS_UTMPX)
3a2b2b44 107 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
9d6b1b96 108 ;;
3c62e7eb 109*-*-cygwin*)
a52997bd 110 check_for_libcrypt_later=1
ffb8d130 111 LIBS="$LIBS /usr/lib/textmode.o"
3c62e7eb 112 AC_DEFINE(HAVE_CYGWIN)
7043a38d 113 AC_DEFINE(USE_PIPES)
3c62e7eb 114 AC_DEFINE(DISABLE_SHADOW)
3c62e7eb 115 AC_DEFINE(IP_TOS_IS_BROKEN)
3d114925 116 AC_DEFINE(NO_X11_UNIX_SOCKETS)
e6f15ed1 117 AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT)
94d8258b 118 AC_DEFINE(DISABLE_FD_PASSING)
246446cd 119 AC_DEFINE(SETGROUPS_NOOP)
3c62e7eb 120 ;;
d6fdb079 121*-*-dgux*)
122 AC_DEFINE(IP_TOS_IS_BROKEN)
123 ;;
39c98ef7 124*-*-darwin*)
33e2e066 125 AC_MSG_CHECKING(if we have working getaddrinfo)
126 AC_TRY_RUN([#include <mach-o/dyld.h>
127main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
128 exit(0);
129 else
130 exit(1);
131}], [AC_MSG_RESULT(working)],
132 [AC_MSG_RESULT(buggy)
133 AC_DEFINE(BROKEN_GETADDRINFO)],
134 [AC_MSG_RESULT(assume it is working)])
39c98ef7 135 ;;
6e879cb4 136*-*-hpux10.26)
137 if test -z "$GCC"; then
138 CFLAGS="$CFLAGS -Ae"
139 fi
140 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
141 IPADDR_IN_DISPLAY=yes
142 AC_DEFINE(HAVE_SECUREWARE)
143 AC_DEFINE(USE_PIPES)
144 AC_DEFINE(LOGIN_NO_ENDOPT)
145 AC_DEFINE(LOGIN_NEEDS_UTMPX)
146 AC_DEFINE(DISABLE_SHADOW)
147 AC_DEFINE(DISABLE_UTMP)
3e6e3da0 148 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
3a2b2b44 149 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
f75ca46d 150 LIBS="$LIBS -lsec -lsecpw"
151 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
6e879cb4 152 disable_ptmx_check=yes
153 ;;
a7effaac 154*-*-hpux10*)
155 if test -z "$GCC"; then
fc1e8bf4 156 CFLAGS="$CFLAGS -Ae"
a7effaac 157 fi
28564873 158 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
44839801 159 IPADDR_IN_DISPLAY=yes
137d7b6c 160 AC_DEFINE(USE_PIPES)
a2572aa7 161 AC_DEFINE(LOGIN_NO_ENDOPT)
162 AC_DEFINE(LOGIN_NEEDS_UTMPX)
0bbfbdeb 163 AC_DEFINE(DISABLE_SHADOW)
764d4113 164 AC_DEFINE(DISABLE_UTMP)
3e6e3da0 165 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
3a2b2b44 166 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
f75ca46d 167 LIBS="$LIBS -lsec"
168 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
a7effaac 169 ;;
2b763e31 170*-*-hpux11*)
b8fea62d 171 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
44839801 172 IPADDR_IN_DISPLAY=yes
adeebd37 173 AC_DEFINE(PAM_SUN_CODEBASE)
2b10f47a 174 AC_DEFINE(USE_PIPES)
a2572aa7 175 AC_DEFINE(LOGIN_NO_ENDOPT)
176 AC_DEFINE(LOGIN_NEEDS_UTMPX)
0bbfbdeb 177 AC_DEFINE(DISABLE_SHADOW)
764d4113 178 AC_DEFINE(DISABLE_UTMP)
3e6e3da0 179 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
3a2b2b44 180 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
f75ca46d 181 LIBS="$LIBS -lsec"
182 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
2b763e31 183 ;;
d94aa2ae 184*-*-irix5*)
0c2fb82f 185 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
c5fa2eb0 186 LDFLAGS="$LDFLAGS"
6ac7829a 187 PATH="$PATH:/usr/etc"
416ed5a7 188 AC_DEFINE(BROKEN_INET_NTOA)
0e8f4eba 189 AC_DEFINE(WITH_ABBREV_NO_TTY)
3e6e3da0 190 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
b9795b89 191 ;;
192*-*-irix6*)
0c2fb82f 193 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
c5fa2eb0 194 LDFLAGS="$LDFLAGS"
6ac7829a 195 PATH="$PATH:/usr/etc"
3206bb3b 196 AC_DEFINE(WITH_IRIX_ARRAY)
197 AC_DEFINE(WITH_IRIX_PROJECT)
198 AC_DEFINE(WITH_IRIX_AUDIT)
b5171f93 199 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS)])
416ed5a7 200 AC_DEFINE(BROKEN_INET_NTOA)
0e8f4eba 201 AC_DEFINE(WITH_ABBREV_NO_TTY)
3e6e3da0 202 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
d94aa2ae 203 ;;
5cdfe03f 204*-*-linux*)
205 no_dev_ptmx=1
717057b6 206 check_for_libcrypt_later=1
eacb954e 207 check_for_openpty_ctty_bug=1
80faa19f 208 AC_DEFINE(DONT_TRY_OTHER_AF)
a8545c6c 209 AC_DEFINE(PAM_TTY_KLUDGE)
3e6e3da0 210 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!!")
3a2b2b44 211 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
80faa19f 212 inet6_default_4in6=yes
bf7c1e6c 213 case `uname -r` in
ad84c479 214 1.*|2.0.*)
bf7c1e6c 215 AC_DEFINE(BROKEN_CMSG_TYPE)
216 ;;
bf7c1e6c 217 esac
5cdfe03f 218 ;;
66d6c27e 219mips-sony-bsd|mips-sony-newsos4)
220 AC_DEFINE(HAVE_NEWS4)
221 SONY=1
66d6c27e 222 ;;
d468fc76 223*-*-netbsd*)
33e2e066 224 check_for_libcrypt_before=1
a0391976 225 need_dash_r=1
d468fc76 226 ;;
86b416a7 227*-*-freebsd*)
228 check_for_libcrypt_later=1
229 ;;
729bfe59 230*-next-*)
729bfe59 231 conf_lastlog_location="/usr/adm/lastlog"
698d107e 232 conf_utmp_location=/etc/utmp
233 conf_wtmp_location=/usr/adm/wtmp
234 MAIL=/usr/spool/mail
729bfe59 235 AC_DEFINE(HAVE_NEXT)
443172c4 236 AC_DEFINE(BROKEN_REALPATH)
00937921 237 AC_DEFINE(USE_PIPES)
86b416a7 238 AC_DEFINE(BROKEN_SAVED_UIDS)
0c2fb82f 239 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
b1335fdf 240 CFLAGS="$CFLAGS"
729bfe59 241 ;;
9d6b1b96 242*-*-solaris*)
0c2fb82f 243 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
fbf305f1 244 LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib"
a0391976 245 need_dash_r=1
adeebd37 246 AC_DEFINE(PAM_SUN_CODEBASE)
7e2d5fa4 247 AC_DEFINE(LOGIN_NEEDS_UTMPX)
248 AC_DEFINE(LOGIN_NEEDS_TERM)
7f0a4ff1 249 AC_DEFINE(PAM_TTY_KLUDGE)
3e6e3da0 250 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
ad84c479 251 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
252 AC_DEFINE(SSHD_ACQUIRES_CTTY)
1d7b9b20 253 # hardwire lastlog location (can't detect it on some versions)
254 conf_lastlog_location="/var/adm/lastlog"
32c80420 255 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
256 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
257 if test "$sol2ver" -ge 8; then
258 AC_MSG_RESULT(yes)
259 AC_DEFINE(DISABLE_UTMP)
260 AC_DEFINE(DISABLE_WTMP)
261 else
262 AC_MSG_RESULT(no)
263 fi
9d6b1b96 264 ;;
a423beaf 265*-*-sunos4*)
0c2fb82f 266 CPPFLAGS="$CPPFLAGS -DSUNOS4"
a423beaf 267 AC_CHECK_FUNCS(getpwanam)
adeebd37 268 AC_DEFINE(PAM_SUN_CODEBASE)
32eec038 269 conf_utmp_location=/etc/utmp
270 conf_wtmp_location=/var/adm/wtmp
271 conf_lastlog_location=/var/adm/lastlog
137d7b6c 272 AC_DEFINE(USE_PIPES)
a423beaf 273 ;;
6f68f28a 274*-ncr-sysv*)
275 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
276 LDFLAGS="$LDFLAGS -L/usr/local/lib"
98a7c37b 277 LIBS="$LIBS -lc89"
29525240 278 AC_DEFINE(USE_PIPES)
eabb99c6 279 AC_DEFINE(SSHD_ACQUIRES_CTTY)
6f68f28a 280 ;;
132dd316 281*-sni-sysv*)
0c2fb82f 282 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
c8c15bcb 283 # /usr/ucblib MUST NOT be searched on ReliantUNIX
284 LDFLAGS="$LDFLAGS -L/usr/local/lib"
9548d6c8 285 IPADDR_IN_DISPLAY=yes
286 AC_DEFINE(USE_PIPES)
132dd316 287 AC_DEFINE(IP_TOS_IS_BROKEN)
eabb99c6 288 AC_DEFINE(SSHD_ACQUIRES_CTTY)
c8c15bcb 289 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
290 # Attention: always take care to bind libsocket and libnsl before libc,
291 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
132dd316 292 ;;
77bb0bca 293*-*-sysv4.2*)
0c2fb82f 294 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
77bb0bca 295 LDFLAGS="$LDFLAGS -L/usr/local/lib"
ed6553e2 296 AC_DEFINE(USE_PIPES)
77bb0bca 297 ;;
298*-*-sysv5*)
0c2fb82f 299 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
77bb0bca 300 LDFLAGS="$LDFLAGS -L/usr/local/lib"
ed6553e2 301 AC_DEFINE(USE_PIPES)
77bb0bca 302 ;;
9d6b1b96 303*-*-sysv*)
0c2fb82f 304 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
84afc958 305 LDFLAGS="$LDFLAGS -L/usr/local/lib"
9d6b1b96 306 ;;
77bb0bca 307*-*-sco3.2v4*)
0c2fb82f 308 CPPFLAGS="$CPPFLAGS -Dftruncate=chsize -I/usr/local/include"
77bb0bca 309 LDFLAGS="$LDFLAGS -L/usr/local/lib"
98a7c37b 310 LIBS="$LIBS -los -lprot -lx -ltinfo -lm"
77bb0bca 311 RANLIB=true
ed6553e2 312 no_dev_ptmx=1
77bb0bca 313 AC_DEFINE(BROKEN_SYS_TERMIO_H)
ed6553e2 314 AC_DEFINE(USE_PIPES)
6e879cb4 315 AC_DEFINE(HAVE_SECUREWARE)
d287c664 316 AC_DEFINE(DISABLE_SHADOW)
86b416a7 317 AC_DEFINE(BROKEN_SAVED_UIDS)
aca75d94 318 AC_CHECK_FUNCS(getluid setluid)
533875af 319 MANTYPE=man
98a7c37b 320 do_sco3_extra_lib_check=yes
77bb0bca 321 ;;
322*-*-sco3.2v5*)
21710e39 323 if test -z "$GCC"; then
324 CFLAGS="$CFLAGS -belf"
325 fi
0c2fb82f 326 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
509b1f88 327 LDFLAGS="$LDFLAGS -L/usr/local/lib"
ed6553e2 328 LIBS="$LIBS -lprot -lx -ltinfo -lm"
509b1f88 329 no_dev_ptmx=1
ed6553e2 330 AC_DEFINE(USE_PIPES)
6e879cb4 331 AC_DEFINE(HAVE_SECUREWARE)
d287c664 332 AC_DEFINE(DISABLE_SHADOW)
94d8258b 333 AC_DEFINE(DISABLE_FD_PASSING)
aca75d94 334 AC_CHECK_FUNCS(getluid setluid)
533875af 335 MANTYPE=man
509b1f88 336 ;;
ccbb983c 337*-*-unicosmk*)
ccbb983c 338 AC_DEFINE(USE_PIPES)
339 AC_DEFINE(DISABLE_FD_PASSING)
340 LDFLAGS="$LDFLAGS"
341 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
342 MANTYPE=cat
d262b7f2 343 ;;
7b9a8c6e 344*-*-unicosmp*)
345 AC_DEFINE(WITH_ABBREV_NO_TTY)
346 AC_DEFINE(USE_PIPES)
347 AC_DEFINE(DISABLE_FD_PASSING)
348 LDFLAGS="$LDFLAGS"
349 LIBS="$LIBS -lgen -lacid"
350 MANTYPE=cat
351 ;;
ca5c7d6a 352*-*-unicos*)
ca5c7d6a 353 AC_DEFINE(USE_PIPES)
94d8258b 354 AC_DEFINE(DISABLE_FD_PASSING)
ef51930f 355 AC_DEFINE(NO_SSH_LASTLOG)
ccbb983c 356 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
357 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
358 MANTYPE=cat
a704dd54 359 ;;
4d33e531 360*-dec-osf*)
99c8ddac 361 AC_MSG_CHECKING(for Digital Unix SIA)
362 no_osfsia=""
363 AC_ARG_WITH(osfsia,
364 [ --with-osfsia Enable Digital Unix SIA],
365 [
366 if test "x$withval" = "xno" ; then
367 AC_MSG_RESULT(disabled)
368 no_osfsia=1
369 fi
370 ],
371 )
372 if test -z "$no_osfsia" ; then
4d33e531 373 if test -f /etc/sia/matrix.conf; then
374 AC_MSG_RESULT(yes)
375 AC_DEFINE(HAVE_OSF_SIA)
376 AC_DEFINE(DISABLE_LOGIN)
58d0df4e 377 AC_DEFINE(DISABLE_FD_PASSING)
4d33e531 378 LIBS="$LIBS -lsecurity -ldb -lm -laud"
379 else
380 AC_MSG_RESULT(no)
381 fi
382 fi
6af8f131 383 AC_DEFINE(DISABLE_FD_PASSING)
a6e67b60 384 AC_DEFINE(BROKEN_GETADDRINFO)
3e6e3da0 385 AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin")
4d33e531 386 ;;
41cb4569 387
388*-*-nto-qnx)
389 AC_DEFINE(USE_PIPES)
390 AC_DEFINE(NO_X11_UNIX_SOCKETS)
391 AC_DEFINE(MISSING_NFDBITS)
392 AC_DEFINE(MISSING_HOWMANY)
393 AC_DEFINE(MISSING_FD_MASK)
394 ;;
a7effaac 395esac
396
8e7b16f8 397# Allow user to specify flags
398AC_ARG_WITH(cflags,
399 [ --with-cflags Specify additional flags to pass to compiler],
400 [
401 if test "x$withval" != "xno" ; then
402 CFLAGS="$CFLAGS $withval"
403 fi
404 ]
405)
0c2fb82f 406AC_ARG_WITH(cppflags,
407 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
408 [
409 if test "x$withval" != "xno"; then
410 CPPFLAGS="$CPPFLAGS $withval"
411 fi
412 ]
413)
8e7b16f8 414AC_ARG_WITH(ldflags,
97b378bf 415 [ --with-ldflags Specify additional flags to pass to linker],
8e7b16f8 416 [
417 if test "x$withval" != "xno" ; then
418 LDFLAGS="$LDFLAGS $withval"
419 fi
420 ]
421)
422AC_ARG_WITH(libs,
423 [ --with-libs Specify additional libraries to link with],
424 [
425 if test "x$withval" != "xno" ; then
426 LIBS="$LIBS $withval"
427 fi
428 ]
429)
430
c5829391 431AC_MSG_CHECKING(compiler and flags for sanity)
432AC_TRY_RUN([
433#include <stdio.h>
434int main(){exit(0);}
435 ],
436 [ AC_MSG_RESULT(yes) ],
437 [
438 AC_MSG_RESULT(no)
439 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
440 ]
441)
442
ddceb1c8 443# Checks for header files.
688eed4a 444AC_CHECK_HEADERS(bstring.h crypt.h endian.h features.h floatingpoint.h \
af940dcb 445 getopt.h glob.h ia.h lastlog.h limits.h login.h \
ddceb1c8 446 login_cap.h maillock.h netdb.h netgroup.h \
75817f90 447 netinet/in_systm.h paths.h pty.h readpassphrase.h \
5bbbc661 448 rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
f58c0e01 449 strings.h sys/strtio.h sys/audit.h sys/bitypes.h sys/bsdtty.h \
450 sys/cdefs.h sys/mman.h sys/pstat.h sys/select.h sys/stat.h \
ad137007 451 sys/stropts.h sys/sysmacros.h sys/time.h sys/timers.h \
ef51930f 452 sys/un.h time.h tmpdir.h ttyent.h usersec.h \
ddceb1c8 453 util.h utime.h utmp.h utmpx.h)
454
a0391976 455# Checks for libraries.
98a7c37b 456AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
457AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
2c523de9 458
f61d6b17 459dnl SCO OS3 needs this for libwrap
98a7c37b 460if test "x$with_tcp_wrappers" != "xno" ; then
461 if test "x$do_sco3_extra_lib_check" = "xyes" ; then
462 AC_CHECK_LIB(rpc, innetgr, LIBS="-lrpc -lyp -lrpc $LIBS" , , -lyp -lrpc)
463 fi
464fi
465
9d6b6505 466AC_ARG_WITH(rpath,
467 [ --without-rpath Disable auto-added -R linker paths],
468 [
469 if test "x$withval" = "xno" ; then
470 need_dash_r=""
471 fi
472 if test "x$withval" = "xyes" ; then
473 need_dash_r=1
474 fi
475 ]
476)
477
98a7c37b 478dnl zlib is required
479AC_ARG_WITH(zlib,
480 [ --with-zlib=PATH Use zlib in PATH],
481 [
846f83ab 482 if test "x$withval" = "xno" ; then
f1b0ecc3 483 AC_MSG_ERROR([*** zlib is required ***])
484 fi
98a7c37b 485 if test -d "$withval/lib"; then
486 if test -n "${need_dash_r}"; then
5a162955 487 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
98a7c37b 488 else
5a162955 489 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
98a7c37b 490 fi
491 else
492 if test -n "${need_dash_r}"; then
5a162955 493 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
98a7c37b 494 else
5a162955 495 LDFLAGS="-L${withval} ${LDFLAGS}"
98a7c37b 496 fi
497 fi
498 if test -d "$withval/include"; then
5a162955 499 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
98a7c37b 500 else
5a162955 501 CPPFLAGS="-I${withval} ${CPPFLAGS}"
98a7c37b 502 fi
503 ]
504)
505
051809f6 506AC_CHECK_LIB(z, deflate, ,AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***]))
48e7916f 507
2c523de9 508dnl UnixWare 2.x
509AC_CHECK_FUNC(strcasecmp,
510 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
511)
512AC_CHECK_FUNC(utimes,
cda1ebcb 513 [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
514 LIBS="$LIBS -lc89"]) ]
2c523de9 515)
4cca272e 516
7c6d759d 517dnl Checks for libutil functions
518AC_CHECK_HEADERS(libutil.h)
519AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN)])
520AC_CHECK_FUNCS(logout updwtmp logwtmp)
521
a738c3b0 522AC_FUNC_STRFTIME
523
84ceda19 524# Check for ALTDIRFUNC glob() extension
525AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
526AC_EGREP_CPP(FOUNDIT,
527 [
528 #include <glob.h>
529 #ifdef GLOB_ALTDIRFUNC
530 FOUNDIT
531 #endif
532 ],
533 [
534 AC_DEFINE(GLOB_HAS_ALTDIRFUNC)
535 AC_MSG_RESULT(yes)
536 ],
537 [
538 AC_MSG_RESULT(no)
539 ]
540)
4cca272e 541
40849fdb 542# Check for g.gl_matchc glob() extension
543AC_MSG_CHECKING(for gl_matchc field in glob_t)
544AC_EGREP_CPP(FOUNDIT,
545 [
546 #include <glob.h>
547 int main(void){glob_t g; g.gl_matchc = 1;}
548 ],
549 [
550 AC_DEFINE(GLOB_HAS_GL_MATCHC)
551 AC_MSG_RESULT(yes)
552 ],
553 [
554 AC_MSG_RESULT(no)
555 ]
556)
557
edbe6722 558AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
559AC_TRY_RUN(
560 [
561#include <sys/types.h>
562#include <dirent.h>
aec4cb4f 563int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
edbe6722 564 ],
565 [AC_MSG_RESULT(yes)],
566 [
567 AC_MSG_RESULT(no)
568 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
569 ]
570)
571
278588d8 572# Check whether user wants S/Key support
573SKEY_MSG="no"
574AC_ARG_WITH(skey,
98a7c37b 575 [ --with-skey[[=PATH]] Enable S/Key support
576 (optionally in PATH)],
278588d8 577 [
578 if test "x$withval" != "xno" ; then
579
580 if test "x$withval" != "xyes" ; then
581 CPPFLAGS="$CPPFLAGS -I${withval}/include"
582 LDFLAGS="$LDFLAGS -L${withval}/lib"
583 fi
584
585 AC_DEFINE(SKEY)
586 LIBS="-lskey $LIBS"
587 SKEY_MSG="yes"
588
ddceb1c8 589 AC_MSG_CHECKING([for s/key support])
590 AC_TRY_RUN(
591 [
592#include <stdio.h>
593#include <skey.h>
aec4cb4f 594int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
ddceb1c8 595 ],
596 [AC_MSG_RESULT(yes)],
278588d8 597 [
ddceb1c8 598 AC_MSG_RESULT(no)
278588d8 599 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
600 ])
601 fi
602 ]
603)
604
605# Check whether user wants TCP wrappers support
98a7c37b 606TCPW_MSG="no"
278588d8 607AC_ARG_WITH(tcp-wrappers,
98a7c37b 608 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support
609 (optionally in PATH)],
278588d8 610 [
611 if test "x$withval" != "xno" ; then
612 saved_LIBS="$LIBS"
98a7c37b 613 saved_LDFLAGS="$LDFLAGS"
614 saved_CPPFLAGS="$CPPFLAGS"
615 if test -n "${withval}" -a "${withval}" != "yes"; then
616 if test -d "${withval}/lib"; then
617 if test -n "${need_dash_r}"; then
5a162955 618 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
98a7c37b 619 else
5a162955 620 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
98a7c37b 621 fi
622 else
623 if test -n "${need_dash_r}"; then
5a162955 624 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
98a7c37b 625 else
5a162955 626 LDFLAGS="-L${withval} ${LDFLAGS}"
98a7c37b 627 fi
628 fi
629 if test -d "${withval}/include"; then
5a162955 630 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
98a7c37b 631 else
5a162955 632 CPPFLAGS="-I${withval} ${CPPFLAGS}"
98a7c37b 633 fi
98a7c37b 634 fi
ddceb1c8 635 LIBWRAP="-lwrap"
636 LIBS="$LIBWRAP $LIBS"
278588d8 637 AC_MSG_CHECKING(for libwrap)
638 AC_TRY_LINK(
639 [
640#include <tcpd.h>
641 int deny_severity = 0, allow_severity = 0;
642 ],
643 [hosts_access(0);],
644 [
645 AC_MSG_RESULT(yes)
646 AC_DEFINE(LIBWRAP)
ddceb1c8 647 AC_SUBST(LIBWRAP)
98a7c37b 648 TCPW_MSG="yes"
278588d8 649 ],
650 [
651 AC_MSG_ERROR([*** libwrap missing])
652 ]
653 )
ddceb1c8 654 LIBS="$saved_LIBS"
278588d8 655 fi
656 ]
657)
658
19160674 659dnl Checks for library functions. Please keep in alphabetical order
660AC_CHECK_FUNCS(\
688eed4a 661 arc4random __b64_ntop b64_ntop __b64_pton b64_pton basename \
662 bcopy bindresvport_sa clock fchmod fchown freeaddrinfo futimes \
19160674 663 gai_strerror getaddrinfo getcwd getgrouplist getnameinfo getopt \
309709db 664 getpeereid _getpty getrlimit getttyent glob inet_aton \
19160674 665 inet_ntoa inet_ntop innetgr login_getcapbool md5_crypt memmove \
79d4fc55 666 mkdtemp mmap ngetaddrinfo nsleep ogetaddrinfo openlog_r openpty \
667 pstat readpassphrase realpath recvmsg rresvport_af sendmsg \
668 setdtablesize setegid setenv seteuid setgroups setlogin setpcred \
688eed4a 669 setproctitle setregid setresgid setresuid setreuid setrlimit \
670 setsid setvbuf sigaction sigvec snprintf socketpair strerror \
3490699c 671 strlcat strlcpy strmode strnvis sysconf tcgetpgrp \
5af25b1d 672 truncate utimes vhangup vsnprintf waitpid \
19160674 673)
98a7c37b 674
92b1decf 675AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP))
676
309709db 677dnl Make sure prototypes are defined for these before using them.
08412d26 678AC_CHECK_DECL(strsep, [AC_CHECK_FUNCS(strsep)])
309709db 679AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
08412d26 680
3490699c 681dnl tcsendbreak might be a macro
682AC_CHECK_DECL(tcsendbreak,
683 [AC_DEFINE(HAVE_TCSENDBREAK)],
684 [AC_CHECK_FUNCS(tcsendbreak)],
685 [#include <termios.h>]
686)
687
98a7c37b 688dnl IRIX and Solaris 2.5.1 have dirname() in libgen
051809f6 689AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
98a7c37b 690 AC_CHECK_LIB(gen, dirname,[
691 AC_CACHE_CHECK([for broken dirname],
692 ac_cv_have_broken_dirname, [
051809f6 693 save_LIBS="$LIBS"
694 LIBS="$LIBS -lgen"
98a7c37b 695 AC_TRY_RUN(
696 [
697#include <libgen.h>
698#include <string.h>
699
700int main(int argc, char **argv) {
701 char *s, buf[32];
702
703 strncpy(buf,"/etc", 32);
704 s = dirname(buf);
051809f6 705 if (!s || strncmp(s, "/", 32) != 0) {
98a7c37b 706 exit(1);
707 } else {
708 exit(0);
709 }
710}
711 ],
712 [ ac_cv_have_broken_dirname="no" ],
713 [ ac_cv_have_broken_dirname="yes" ]
714 )
051809f6 715 LIBS="$save_LIBS"
98a7c37b 716 ])
051809f6 717 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
98a7c37b 718 LIBS="$LIBS -lgen"
719 AC_DEFINE(HAVE_DIRNAME)
051809f6 720 AC_CHECK_HEADERS(libgen.h)
98a7c37b 721 fi
722 ])
723])
724
af940dcb 725AC_CHECK_FUNC(getspnam, ,
726 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
727AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME))
728
2e73a022 729dnl Checks for time functions
1d7b9b20 730AC_CHECK_FUNCS(gettimeofday time)
2e73a022 731dnl Checks for utmp functions
b03bd394 732AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
1d7b9b20 733AC_CHECK_FUNCS(utmpname)
2e73a022 734dnl Checks for utmpx functions
b03bd394 735AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
1d7b9b20 736AC_CHECK_FUNCS(setutxent utmpxname)
76cd7316 737
beb43d31 738AC_CHECK_FUNC(daemon,
739 [AC_DEFINE(HAVE_DAEMON)],
740 [AC_CHECK_LIB(bsd, daemon, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
741)
742
aa6bd60a 743AC_CHECK_FUNC(getpagesize,
744 [AC_DEFINE(HAVE_GETPAGESIZE)],
745 [AC_CHECK_LIB(ucb, getpagesize, [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
746)
747
2647ae26 748# Check for broken snprintf
749if test "x$ac_cv_func_snprintf" = "xyes" ; then
750 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
751 AC_TRY_RUN(
752 [
753#include <stdio.h>
aec4cb4f 754int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
2647ae26 755 ],
756 [AC_MSG_RESULT(yes)],
757 [
758 AC_MSG_RESULT(no)
759 AC_DEFINE(BROKEN_SNPRINTF)
760 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
761 ]
762 )
763fi
764
70e7d0b0 765dnl see whether mkstemp() requires XXXXXX
766if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
767AC_MSG_CHECKING([for (overly) strict mkstemp])
768AC_TRY_RUN(
769 [
770#include <stdlib.h>
771main() { char template[]="conftest.mkstemp-test";
772if (mkstemp(template) == -1)
773 exit(1);
774unlink(template); exit(0);
775}
776 ],
777 [
778 AC_MSG_RESULT(no)
779 ],
780 [
781 AC_MSG_RESULT(yes)
782 AC_DEFINE(HAVE_STRICT_MKSTEMP)
783 ],
784 [
785 AC_MSG_RESULT(yes)
786 AC_DEFINE(HAVE_STRICT_MKSTEMP)
787 ]
788)
789fi
790
eacb954e 791dnl make sure that openpty does not reacquire controlling terminal
792if test ! -z "$check_for_openpty_ctty_bug"; then
793 AC_MSG_CHECKING(if openpty correctly handles controlling tty)
794 AC_TRY_RUN(
795 [
796#include <stdio.h>
797#include <sys/fcntl.h>
798#include <sys/types.h>
799#include <sys/wait.h>
800
801int
802main()
803{
804 pid_t pid;
805 int fd, ptyfd, ttyfd, status;
806
807 pid = fork();
808 if (pid < 0) { /* failed */
809 exit(1);
810 } else if (pid > 0) { /* parent */
811 waitpid(pid, &status, 0);
812 if (WIFEXITED(status))
813 exit(WEXITSTATUS(status));
814 else
815 exit(2);
816 } else { /* child */
817 close(0); close(1); close(2);
818 setsid();
819 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
820 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
821 if (fd >= 0)
822 exit(3); /* Acquired ctty: broken */
823 else
824 exit(0); /* Did not acquire ctty: OK */
825 }
826}
827 ],
828 [
829 AC_MSG_RESULT(yes)
830 ],
831 [
832 AC_MSG_RESULT(no)
833 AC_DEFINE(SSHD_ACQUIRES_CTTY)
834 ]
835 )
836fi
837
7f8f5e00 838AC_FUNC_GETPGRP
839
717057b6 840# Check for PAM libs
cbd7492e 841PAM_MSG="no"
a0391976 842AC_ARG_WITH(pam,
717057b6 843 [ --with-pam Enable PAM support ],
a0391976 844 [
717057b6 845 if test "x$withval" != "xno" ; then
846 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" ; then
847 AC_MSG_ERROR([PAM headers not found])
848 fi
a0391976 849
717057b6 850 AC_CHECK_LIB(dl, dlopen, , )
851 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
852 AC_CHECK_FUNCS(pam_getenvlist)
749560dd 853 AC_CHECK_FUNCS(pam_putenv)
2b763e31 854
717057b6 855 disable_shadow=yes
856 PAM_MSG="yes"
4cb5ffa0 857
717057b6 858 AC_DEFINE(USE_PAM)
98f2d9d5 859 if test $ac_cv_lib_dl_dlopen = yes; then
860 LIBPAM="-lpam -ldl"
861 else
862 LIBPAM="-lpam"
863 fi
864 AC_SUBST(LIBPAM)
717057b6 865 fi
866 ]
867)
cbd7492e 868
717057b6 869# Check for older PAM
870if test "x$PAM_MSG" = "xyes" ; then
a0391976 871 # Check PAM strerror arguments (old PAM)
872 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
873 AC_TRY_COMPILE(
874 [
18ba2aab 875#include <stdlib.h>
876#include <security/pam_appl.h>
a0391976 877 ],
878 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
879 [AC_MSG_RESULT(no)],
880 [
881 AC_DEFINE(HAVE_OLD_PAM)
882 AC_MSG_RESULT(yes)
cbd7492e 883 PAM_MSG="yes (old library)"
a0391976 884 ]
717057b6 885 )
a0391976 886fi
887
33e2e066 888# Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
889# because the system crypt() is more featureful.
890if test "x$check_for_libcrypt_before" = "x1"; then
891 AC_CHECK_LIB(crypt, crypt)
892fi
893
5b991353 894# Search for OpenSSL
895saved_CPPFLAGS="$CPPFLAGS"
896saved_LDFLAGS="$LDFLAGS"
a0391976 897AC_ARG_WITH(ssl-dir,
898 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
899 [
e9e4a1c7 900 if test "x$withval" != "xno" ; then
5b991353 901 if test -d "$withval/lib"; then
902 if test -n "${need_dash_r}"; then
903 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
904 else
905 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
d6f13fbb 906 fi
907 else
5b991353 908 if test -n "${need_dash_r}"; then
909 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
910 else
911 LDFLAGS="-L${withval} ${LDFLAGS}"
d6f13fbb 912 fi
913 fi
5b991353 914 if test -d "$withval/include"; then
915 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
d6f13fbb 916 else
5b991353 917 CPPFLAGS="-I${withval} ${CPPFLAGS}"
58d100bf 918 fi
a0391976 919 fi
5b991353 920 ]
921)
922LIBS="$LIBS -lcrypto"
923AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
d45e3d76 924 [
5b991353 925 dnl Check default openssl install dir
926 if test -n "${need_dash_r}"; then
927 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
d45e3d76 928 else
5b991353 929 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
d45e3d76 930 fi
5b991353 931 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
932 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
933 [
934 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
935 ]
936 )
937 ]
938)
939
cd018561 940# Determine OpenSSL header version
941AC_MSG_CHECKING([OpenSSL header version])
942AC_TRY_RUN(
943 [
944#include <stdio.h>
945#include <string.h>
946#include <openssl/opensslv.h>
947#define DATA "conftest.sslincver"
948int main(void) {
949 FILE *fd;
950 int rc;
951
952 fd = fopen(DATA,"w");
953 if(fd == NULL)
954 exit(1);
955
956 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
957 exit(1);
958
959 exit(0);
960}
961 ],
962 [
963 ssl_header_ver=`cat conftest.sslincver`
964 AC_MSG_RESULT($ssl_header_ver)
965 ],
966 [
967 AC_MSG_RESULT(not found)
968 AC_MSG_ERROR(OpenSSL version header not found.)
969 ]
970)
971
972# Determine OpenSSL library version
973AC_MSG_CHECKING([OpenSSL library version])
974AC_TRY_RUN(
975 [
976#include <stdio.h>
977#include <string.h>
978#include <openssl/opensslv.h>
979#include <openssl/crypto.h>
980#define DATA "conftest.ssllibver"
981int main(void) {
982 FILE *fd;
983 int rc;
984
985 fd = fopen(DATA,"w");
986 if(fd == NULL)
987 exit(1);
988
989 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
990 exit(1);
991
992 exit(0);
993}
994 ],
995 [
996 ssl_library_ver=`cat conftest.ssllibver`
997 AC_MSG_RESULT($ssl_library_ver)
998 ],
999 [
1000 AC_MSG_RESULT(not found)
1001 AC_MSG_ERROR(OpenSSL library not found.)
1002 ]
1003)
58d100bf 1004
9780116c 1005# Sanity check OpenSSL headers
1006AC_MSG_CHECKING([whether OpenSSL's headers match the library])
1007AC_TRY_RUN(
1008 [
1009#include <string.h>
1010#include <openssl/opensslv.h>
aec4cb4f 1011int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
9780116c 1012 ],
1013 [
1014 AC_MSG_RESULT(yes)
1015 ],
1016 [
1017 AC_MSG_RESULT(no)
e15ba28b 1018 AC_MSG_ERROR([Your OpenSSL headers do not match your library.
1019Check config.log for details.
1020Also see contrib/findssl.sh for help identifying header/library mismatches.])
9780116c 1021 ]
1022)
1023
717057b6 1024# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
1025# version in OpenSSL. Skip this for PAM
05114c74 1026if test "x$check_for_libcrypt_later" = "x1"; then
20cad736 1027 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
717057b6 1028fi
1029
f1b0ecc3 1030
1031### Configure cryptographic random number support
1032
1033# Check wheter OpenSSL seeds itself
1034AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
1035AC_TRY_RUN(
1036 [
1037#include <string.h>
1038#include <openssl/rand.h>
aec4cb4f 1039int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
f1b0ecc3 1040 ],
1041 [
1042 OPENSSL_SEEDS_ITSELF=yes
1043 AC_MSG_RESULT(yes)
1044 ],
1045 [
1046 AC_MSG_RESULT(no)
1047 # Default to use of the rand helper if OpenSSL doesn't
1048 # seed itself
1049 USE_RAND_HELPER=yes
1050 ]
1051)
1052
1053
1054# Do we want to force the use of the rand helper?
1055AC_ARG_WITH(rand-helper,
1056 [ --with-rand-helper Use subprocess to gather strong randomness ],
1057 [
1058 if test "x$withval" = "xno" ; then
1059 # Force use of OpenSSL's internal RNG, even if
1060 # the previous test showed it to be unseeded.
1061 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
1062 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
1063 OPENSSL_SEEDS_ITSELF=yes
1064 USE_RAND_HELPER=""
1065 fi
1066 else
1067 USE_RAND_HELPER=yes
1068 fi
1069 ],
1070)
1071
1072# Which randomness source do we use?
1073if test ! -z "$OPENSSL_SEEDS_ITSELF" -a -z "$USE_RAND_HELPER" ; then
1074 # OpenSSL only
1075 AC_DEFINE(OPENSSL_PRNG_ONLY)
1076 RAND_MSG="OpenSSL internal ONLY"
1077 INSTALL_SSH_RAND_HELPER=""
70e2f2f3 1078elif test ! -z "$USE_RAND_HELPER" ; then
1079 # install rand helper
f1b0ecc3 1080 RAND_MSG="ssh-rand-helper"
1081 INSTALL_SSH_RAND_HELPER="yes"
1082fi
1083AC_SUBST(INSTALL_SSH_RAND_HELPER)
1084
1085### Configuration of ssh-rand-helper
1086
1087# PRNGD TCP socket
1088AC_ARG_WITH(prngd-port,
1089 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
1090 [
eb5d7ff6 1091 case "$withval" in
1092 no)
1093 withval=""
1094 ;;
1095 [[0-9]]*)
1096 ;;
1097 *)
1098 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
1099 ;;
1100 esac
1101 if test ! -z "$withval" ; then
f1b0ecc3 1102 PRNGD_PORT="$withval"
1103 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT)
1104 fi
1105 ]
1106)
1107
1108# PRNGD Unix domain socket
1109AC_ARG_WITH(prngd-socket,
1110 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
1111 [
eb5d7ff6 1112 case "$withval" in
1113 yes)
f1b0ecc3 1114 withval="/var/run/egd-pool"
eb5d7ff6 1115 ;;
1116 no)
1117 withval=""
1118 ;;
1119 /*)
1120 ;;
1121 *)
1122 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
1123 ;;
1124 esac
1125
1126 if test ! -z "$withval" ; then
f1b0ecc3 1127 if test ! -z "$PRNGD_PORT" ; then
1128 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
1129 fi
906e811b 1130 if test ! -r "$withval" ; then
f1b0ecc3 1131 AC_MSG_WARN(Entropy socket is not readable)
1132 fi
1133 PRNGD_SOCKET="$withval"
1134 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
1135 fi
ddceb1c8 1136 ],
1137 [
1138 # Check for existing socket only if we don't have a random device already
1139 if test "$USE_RAND_HELPER" = yes ; then
1140 AC_MSG_CHECKING(for PRNGD/EGD socket)
1141 # Insert other locations here
1142 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
1143 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
1144 PRNGD_SOCKET="$sock"
1145 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
1146 break;
1147 fi
1148 done
1149 if test ! -z "$PRNGD_SOCKET" ; then
1150 AC_MSG_RESULT($PRNGD_SOCKET)
1151 else
1152 AC_MSG_RESULT(not found)
1153 fi
1154 fi
f1b0ecc3 1155 ]
1156)
1157
1158# Change default command timeout for hashing entropy source
1159entropy_timeout=200
1160AC_ARG_WITH(entropy-timeout,
1161 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
1162 [
1163 if test "x$withval" != "xno" ; then
1164 entropy_timeout=$withval
1165 fi
1166 ]
1167)
f1b0ecc3 1168AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1169
fd3cbf67 1170SSH_PRIVSEP_USER=sshd
9a0fbcb3 1171AC_ARG_WITH(privsep-user,
5222e7ef 1172 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
9a0fbcb3 1173 [
1174 if test -n "$withval"; then
fd3cbf67 1175 SSH_PRIVSEP_USER=$withval
9a0fbcb3 1176 fi
1177 ]
1178)
fd3cbf67 1179AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER")
1180AC_SUBST(SSH_PRIVSEP_USER)
9a0fbcb3 1181
81dadca3 1182# We do this little dance with the search path to insure
1183# that programs that we select for use by installed programs
1184# (which may be run by the super-user) come from trusted
1185# locations before they come from the user's private area.
1186# This should help avoid accidentally configuring some
1187# random version of a program in someone's personal bin.
1188
1189OPATH=$PATH
1190PATH=/bin:/usr/bin
f95c8ce8 1191test -h /bin 2> /dev/null && PATH=/usr/bin
81dadca3 1192test -d /sbin && PATH=$PATH:/sbin
1193test -d /usr/sbin && PATH=$PATH:/usr/sbin
1194PATH=$PATH:/etc:$OPATH
1195
f1b0ecc3 1196# These programs are used by the command hashing source to gather entropy
1197OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
1198OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
1199OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
1200OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
1201OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
1202OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
1203OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
1204OSSH_PATH_ENTROPY_PROG(PROG_W, w)
1205OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
1206OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
1207OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
1208OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
1209OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
1210OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
1211OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
1212OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
81dadca3 1213# restore PATH
1214PATH=$OPATH
f1b0ecc3 1215
1216# Where does ssh-rand-helper get its randomness from?
1217INSTALL_SSH_PRNG_CMDS=""
1218if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
1219 if test ! -z "$PRNGD_PORT" ; then
1220 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
1221 elif test ! -z "$PRNGD_SOCKET" ; then
1222 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
1223 else
1224 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
1225 RAND_HELPER_CMDHASH=yes
1226 INSTALL_SSH_PRNG_CMDS="yes"
1227 fi
1228fi
1229AC_SUBST(INSTALL_SSH_PRNG_CMDS)
1230
1231
66d6c27e 1232# Cheap hack to ensure NEWS-OS libraries are arranged right.
1233if test ! -z "$SONY" ; then
1234 LIBS="$LIBS -liberty";
1235fi
1236
a0391976 1237# Checks for data types
976f7e19 1238AC_CHECK_SIZEOF(char, 1)
2b942fe0 1239AC_CHECK_SIZEOF(short int, 2)
1240AC_CHECK_SIZEOF(int, 4)
1241AC_CHECK_SIZEOF(long int, 4)
1242AC_CHECK_SIZEOF(long long int, 8)
1243
52f1ccb2 1244# Sanity check long long for some platforms (AIX)
1245if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
1246 ac_cv_sizeof_long_long_int=0
1247fi
1248
a0391976 1249# More checks for data types
14a9a859 1250AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
1251 AC_TRY_COMPILE(
1252 [ #include <sys/types.h> ],
1253 [ u_int a; a = 1;],
1254 [ ac_cv_have_u_int="yes" ],
1255 [ ac_cv_have_u_int="no" ]
1256 )
1257])
1258if test "x$ac_cv_have_u_int" = "xyes" ; then
1259 AC_DEFINE(HAVE_U_INT)
1260 have_u_int=1
1261fi
1262
58d100bf 1263AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
1264 AC_TRY_COMPILE(
1265 [ #include <sys/types.h> ],
1266 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
1267 [ ac_cv_have_intxx_t="yes" ],
1268 [ ac_cv_have_intxx_t="no" ]
1269 )
1270])
1271if test "x$ac_cv_have_intxx_t" = "xyes" ; then
1272 AC_DEFINE(HAVE_INTXX_T)
1273 have_intxx_t=1
1274fi
41cb4569 1275
1276if (test -z "$have_intxx_t" && \
1277 test "x$ac_cv_header_stdint_h" = "xyes")
1278then
1279 AC_MSG_CHECKING([for intXX_t types in stdint.h])
1280 AC_TRY_COMPILE(
1281 [ #include <stdint.h> ],
1282 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
1283 [
1284 AC_DEFINE(HAVE_INTXX_T)
1285 AC_MSG_RESULT(yes)
1286 ],
1287 [ AC_MSG_RESULT(no) ]
1288 )
1289fi
1290
bd590612 1291AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
1292 AC_TRY_COMPILE(
1cbbe6c8 1293 [
1294#include <sys/types.h>
1295#ifdef HAVE_STDINT_H
1296# include <stdint.h>
1297#endif
1298#include <sys/socket.h>
1299#ifdef HAVE_SYS_BITYPES_H
1300# include <sys/bitypes.h>
1301#endif
1302 ],
bd590612 1303 [ int64_t a; a = 1;],
1304 [ ac_cv_have_int64_t="yes" ],
1305 [ ac_cv_have_int64_t="no" ]
1306 )
1307])
1308if test "x$ac_cv_have_int64_t" = "xyes" ; then
1309 AC_DEFINE(HAVE_INT64_T)
ddceb1c8 1310fi
1311
58d100bf 1312AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
1313 AC_TRY_COMPILE(
1314 [ #include <sys/types.h> ],
1315 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
1316 [ ac_cv_have_u_intxx_t="yes" ],
1317 [ ac_cv_have_u_intxx_t="no" ]
1318 )
1319])
1320if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
1321 AC_DEFINE(HAVE_U_INTXX_T)
1322 have_u_intxx_t=1
1323fi
2b942fe0 1324
41cb4569 1325if test -z "$have_u_intxx_t" ; then
1326 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
1327 AC_TRY_COMPILE(
1328 [ #include <sys/socket.h> ],
1329 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
1330 [
1331 AC_DEFINE(HAVE_U_INTXX_T)
1332 AC_MSG_RESULT(yes)
1333 ],
1334 [ AC_MSG_RESULT(no) ]
1335 )
1336fi
1337
bd590612 1338AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
1339 AC_TRY_COMPILE(
1340 [ #include <sys/types.h> ],
1341 [ u_int64_t a; a = 1;],
1342 [ ac_cv_have_u_int64_t="yes" ],
1343 [ ac_cv_have_u_int64_t="no" ]
1344 )
1345])
1346if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
1347 AC_DEFINE(HAVE_U_INT64_T)
1348 have_u_int64_t=1
1349fi
1350
ddceb1c8 1351if test -z "$have_u_int64_t" ; then
1352 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
1353 AC_TRY_COMPILE(
1354 [ #include <sys/bitypes.h> ],
1355 [ u_int64_t a; a = 1],
1356 [
1357 AC_DEFINE(HAVE_U_INT64_T)
1358 AC_MSG_RESULT(yes)
1359 ],
1360 [ AC_MSG_RESULT(no) ]
1361 )
1362fi
1363
41cb4569 1364if test -z "$have_u_intxx_t" ; then
1365 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
1366 AC_TRY_COMPILE(
1367 [
1368#include <sys/types.h>
1369 ],
1370 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
1371 [ ac_cv_have_uintxx_t="yes" ],
1372 [ ac_cv_have_uintxx_t="no" ]
1373 )
1374 ])
1375 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
1376 AC_DEFINE(HAVE_UINTXX_T)
1377 fi
1378fi
1379
1380if test -z "$have_uintxx_t" ; then
1381 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
1382 AC_TRY_COMPILE(
1383 [ #include <stdint.h> ],
1384 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
1385 [
1386 AC_DEFINE(HAVE_UINTXX_T)
1387 AC_MSG_RESULT(yes)
1388 ],
1389 [ AC_MSG_RESULT(no) ]
1390 )
1391fi
1392
e5fe9a1f 1393if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
1394 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
5cdfe03f 1395then
1396 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
1397 AC_TRY_COMPILE(
58d100bf 1398 [
1399#include <sys/bitypes.h>
1400 ],
5cdfe03f 1401 [
837c30b8 1402 int8_t a; int16_t b; int32_t c;
1403 u_int8_t e; u_int16_t f; u_int32_t g;
1404 a = b = c = e = f = g = 1;
5cdfe03f 1405 ],
1406 [
1407 AC_DEFINE(HAVE_U_INTXX_T)
1408 AC_DEFINE(HAVE_INTXX_T)
1409 AC_MSG_RESULT(yes)
1410 ],
1411 [AC_MSG_RESULT(no)]
1412 )
1413fi
1414
0362750e 1415
1416AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
1417 AC_TRY_COMPILE(
1418 [
1419#include <sys/types.h>
1420 ],
1421 [ u_char foo; foo = 125; ],
1422 [ ac_cv_have_u_char="yes" ],
1423 [ ac_cv_have_u_char="no" ]
1424 )
1425])
1426if test "x$ac_cv_have_u_char" = "xyes" ; then
1427 AC_DEFINE(HAVE_U_CHAR)
1428fi
1429
98a7c37b 1430TYPE_SOCKLEN_T
2b942fe0 1431
2d16d9a3 1432AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
ddceb1c8 1433
58d100bf 1434AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
1435 AC_TRY_COMPILE(
1436 [
18ba2aab 1437#include <sys/types.h>
58d100bf 1438 ],
1439 [ size_t foo; foo = 1235; ],
1440 [ ac_cv_have_size_t="yes" ],
1441 [ ac_cv_have_size_t="no" ]
1442 )
1443])
1444if test "x$ac_cv_have_size_t" = "xyes" ; then
1445 AC_DEFINE(HAVE_SIZE_T)
1446fi
ea1970a3 1447
c04f75f1 1448AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
1449 AC_TRY_COMPILE(
1450 [
1451#include <sys/types.h>
1452 ],
1453 [ ssize_t foo; foo = 1235; ],
1454 [ ac_cv_have_ssize_t="yes" ],
1455 [ ac_cv_have_ssize_t="no" ]
1456 )
1457])
1458if test "x$ac_cv_have_ssize_t" = "xyes" ; then
1459 AC_DEFINE(HAVE_SSIZE_T)
1460fi
1461
f1c4659d 1462AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
1463 AC_TRY_COMPILE(
1464 [
1465#include <time.h>
1466 ],
1467 [ clock_t foo; foo = 1235; ],
1468 [ ac_cv_have_clock_t="yes" ],
1469 [ ac_cv_have_clock_t="no" ]
1470 )
1471])
1472if test "x$ac_cv_have_clock_t" = "xyes" ; then
1473 AC_DEFINE(HAVE_CLOCK_T)
1474fi
1475
1c04b088 1476AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
1477 AC_TRY_COMPILE(
1478 [
1479#include <sys/types.h>
1480#include <sys/socket.h>
1481 ],
1482 [ sa_family_t foo; foo = 1235; ],
1483 [ ac_cv_have_sa_family_t="yes" ],
77bb0bca 1484 [ AC_TRY_COMPILE(
1485 [
1486#include <sys/types.h>
1487#include <sys/socket.h>
1488#include <netinet/in.h>
1489 ],
1490 [ sa_family_t foo; foo = 1235; ],
1491 [ ac_cv_have_sa_family_t="yes" ],
1492
1c04b088 1493 [ ac_cv_have_sa_family_t="no" ]
77bb0bca 1494 )]
1c04b088 1495 )
1496])
1497if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
1498 AC_DEFINE(HAVE_SA_FAMILY_T)
1499fi
1500
729bfe59 1501AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
1502 AC_TRY_COMPILE(
1503 [
1504#include <sys/types.h>
1505 ],
1506 [ pid_t foo; foo = 1235; ],
1507 [ ac_cv_have_pid_t="yes" ],
1508 [ ac_cv_have_pid_t="no" ]
1509 )
1510])
1511if test "x$ac_cv_have_pid_t" = "xyes" ; then
1512 AC_DEFINE(HAVE_PID_T)
1513fi
1514
1515AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
1516 AC_TRY_COMPILE(
1517 [
1518#include <sys/types.h>
1519 ],
1520 [ mode_t foo; foo = 1235; ],
1521 [ ac_cv_have_mode_t="yes" ],
1522 [ ac_cv_have_mode_t="no" ]
1523 )
1524])
1525if test "x$ac_cv_have_mode_t" = "xyes" ; then
1526 AC_DEFINE(HAVE_MODE_T)
1527fi
1528
e3a93db0 1529
58d100bf 1530AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
1531 AC_TRY_COMPILE(
1532 [
18ba2aab 1533#include <sys/types.h>
1534#include <sys/socket.h>
58d100bf 1535 ],
1536 [ struct sockaddr_storage s; ],
1537 [ ac_cv_have_struct_sockaddr_storage="yes" ],
1538 [ ac_cv_have_struct_sockaddr_storage="no" ]
1539 )
1540])
1541if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
1542 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)
1543fi
48e671d5 1544
58d100bf 1545AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
1546 AC_TRY_COMPILE(
1547 [
cbd7492e 1548#include <sys/types.h>
58d100bf 1549#include <netinet/in.h>
1550 ],
1551 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
1552 [ ac_cv_have_struct_sockaddr_in6="yes" ],
1553 [ ac_cv_have_struct_sockaddr_in6="no" ]
1554 )
1555])
1556if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
1557 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)
1558fi
48e671d5 1559
58d100bf 1560AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
1561 AC_TRY_COMPILE(
1562 [
cbd7492e 1563#include <sys/types.h>
58d100bf 1564#include <netinet/in.h>
1565 ],
1566 [ struct in6_addr s; s.s6_addr[0] = 0; ],
1567 [ ac_cv_have_struct_in6_addr="yes" ],
1568 [ ac_cv_have_struct_in6_addr="no" ]
1569 )
1570])
1571if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
1572 AC_DEFINE(HAVE_STRUCT_IN6_ADDR)
1573fi
48e671d5 1574
58d100bf 1575AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
1576 AC_TRY_COMPILE(
1577 [
18ba2aab 1578#include <sys/types.h>
1579#include <sys/socket.h>
1580#include <netdb.h>
58d100bf 1581 ],
1582 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
1583 [ ac_cv_have_struct_addrinfo="yes" ],
1584 [ ac_cv_have_struct_addrinfo="no" ]
1585 )
1586])
1587if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
1588 AC_DEFINE(HAVE_STRUCT_ADDRINFO)
1589fi
1590
89c7e31c 1591AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
1592 AC_TRY_COMPILE(
1593 [ #include <sys/time.h> ],
1594 [ struct timeval tv; tv.tv_sec = 1;],
1595 [ ac_cv_have_struct_timeval="yes" ],
1596 [ ac_cv_have_struct_timeval="no" ]
1597 )
1598])
1599if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
1600 AC_DEFINE(HAVE_STRUCT_TIMEVAL)
1601 have_struct_timeval=1
1602fi
1603
5271b55c 1604AC_CHECK_TYPES(struct timespec)
1605
85abc74b 1606# We need int64_t or else certian parts of the compile will fail.
2c523de9 1607if test "x$ac_cv_have_int64_t" = "xno" -a \
1608 "x$ac_cv_sizeof_long_int" != "x8" -a \
1609 "x$ac_cv_sizeof_long_long_int" = "x0" ; then
85abc74b 1610 echo "OpenSSH requires int64_t support. Contact your vendor or install"
1611 echo "an alternative compiler (I.E., GCC) before continuing."
1612 echo ""
1613 exit 1;
733cf7f4 1614else
1615dnl test snprintf (broken on SCO w/gcc)
1616 AC_TRY_RUN(
1617 [
1618#include <stdio.h>
1619#include <string.h>
1620#ifdef HAVE_SNPRINTF
1621main()
1622{
1623 char buf[50];
1624 char expected_out[50];
1625 int mazsize = 50 ;
1626#if (SIZEOF_LONG_INT == 8)
1627 long int num = 0x7fffffffffffffff;
1628#else
763a1a18 1629 long long num = 0x7fffffffffffffffll;
733cf7f4 1630#endif
1631 strcpy(expected_out, "9223372036854775807");
1632 snprintf(buf, mazsize, "%lld", num);
1633 if(strcmp(buf, expected_out) != 0)
1634 exit(1);
1635 exit(0);
1636}
1637#else
1638main() { exit(0); }
1639#endif
1640 ], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ]
1641 )
2c523de9 1642fi
1643
77bb0bca 1644dnl Checks for structure members
58d100bf 1645OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
1646OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
1647OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
1648OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
1649OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
25422c70 1650OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
58d100bf 1651OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
1652OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
daaff4d5 1653OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
58d100bf 1654OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
1655OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
1656OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
1657OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
1d7b9b20 1658OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
1659OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
1660OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
1661OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
98a7c37b 1662
1663AC_CHECK_MEMBERS([struct stat.st_blksize])
1d7b9b20 1664
58d100bf 1665AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
1666 ac_cv_have_ss_family_in_struct_ss, [
1667 AC_TRY_COMPILE(
1668 [
18ba2aab 1669#include <sys/types.h>
1670#include <sys/socket.h>
58d100bf 1671 ],
1672 [ struct sockaddr_storage s; s.ss_family = 1; ],
1673 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
1674 [ ac_cv_have_ss_family_in_struct_ss="no" ],
1675 )
1676])
1677if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
1678 AC_DEFINE(HAVE_SS_FAMILY_IN_SS)
1679fi
1680
58d100bf 1681AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
1682 ac_cv_have___ss_family_in_struct_ss, [
1683 AC_TRY_COMPILE(
1684 [
18ba2aab 1685#include <sys/types.h>
1686#include <sys/socket.h>
58d100bf 1687 ],
1688 [ struct sockaddr_storage s; s.__ss_family = 1; ],
1689 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
1690 [ ac_cv_have___ss_family_in_struct_ss="no" ]
1691 )
1692])
1693if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
1694 AC_DEFINE(HAVE___SS_FAMILY_IN_SS)
1695fi
1696
2e73a022 1697AC_CACHE_CHECK([for pw_class field in struct passwd],
1698 ac_cv_have_pw_class_in_struct_passwd, [
1699 AC_TRY_COMPILE(
1700 [
2e73a022 1701#include <pwd.h>
1702 ],
97994d32 1703 [ struct passwd p; p.pw_class = 0; ],
2e73a022 1704 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
1705 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
1706 )
1707])
1708if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
1709 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD)
1710fi
1711
7751d4eb 1712AC_CACHE_CHECK([for pw_expire field in struct passwd],
1713 ac_cv_have_pw_expire_in_struct_passwd, [
1714 AC_TRY_COMPILE(
1715 [
1716#include <pwd.h>
1717 ],
1718 [ struct passwd p; p.pw_expire = 0; ],
1719 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
1720 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
1721 )
1722])
1723if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
1724 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD)
1725fi
1726
1727AC_CACHE_CHECK([for pw_change field in struct passwd],
1728 ac_cv_have_pw_change_in_struct_passwd, [
1729 AC_TRY_COMPILE(
1730 [
1731#include <pwd.h>
1732 ],
1733 [ struct passwd p; p.pw_change = 0; ],
1734 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
1735 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
1736 )
1737])
1738if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
1739 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD)
1740fi
58d100bf 1741
637f9177 1742dnl make sure we're using the real structure members and not defines
6f34652e 1743AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
1744 ac_cv_have_accrights_in_msghdr, [
637f9177 1745 AC_TRY_RUN(
6f34652e 1746 [
f95c8ce8 1747#include <sys/types.h>
6f34652e 1748#include <sys/socket.h>
1749#include <sys/uio.h>
637f9177 1750int main() {
1751#ifdef msg_accrights
1752exit(1);
1753#endif
1754struct msghdr m;
1755m.msg_accrights = 0;
1756exit(0);
1757}
6f34652e 1758 ],
6f34652e 1759 [ ac_cv_have_accrights_in_msghdr="yes" ],
1760 [ ac_cv_have_accrights_in_msghdr="no" ]
1761 )
1762])
1763if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
1764 AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR)
1765fi
1766
7176df4f 1767AC_CACHE_CHECK([for msg_control field in struct msghdr],
1768 ac_cv_have_control_in_msghdr, [
637f9177 1769 AC_TRY_RUN(
7176df4f 1770 [
f95c8ce8 1771#include <sys/types.h>
7176df4f 1772#include <sys/socket.h>
1773#include <sys/uio.h>
637f9177 1774int main() {
1775#ifdef msg_control
1776exit(1);
1777#endif
1778struct msghdr m;
1779m.msg_control = 0;
1780exit(0);
1781}
7176df4f 1782 ],
7176df4f 1783 [ ac_cv_have_control_in_msghdr="yes" ],
1784 [ ac_cv_have_control_in_msghdr="no" ]
1785 )
1786])
1787if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
1788 AC_DEFINE(HAVE_CONTROL_IN_MSGHDR)
1789fi
1790
58d100bf 1791AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
1792 AC_TRY_LINK([],
1793 [ extern char *__progname; printf("%s", __progname); ],
1794 [ ac_cv_libc_defines___progname="yes" ],
1795 [ ac_cv_libc_defines___progname="no" ]
1796 )
1797])
1798if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
1799 AC_DEFINE(HAVE___PROGNAME)
1800fi
8946db53 1801
c921ee00 1802AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
1803 AC_TRY_LINK([
1804#include <stdio.h>
1805],
1806 [ printf("%s", __FUNCTION__); ],
1807 [ ac_cv_cc_implements___FUNCTION__="yes" ],
1808 [ ac_cv_cc_implements___FUNCTION__="no" ]
1809 )
1810])
1811if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
1812 AC_DEFINE(HAVE___FUNCTION__)
1813fi
1814
1815AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
1816 AC_TRY_LINK([
1817#include <stdio.h>
1818],
1819 [ printf("%s", __func__); ],
1820 [ ac_cv_cc_implements___func__="yes" ],
1821 [ ac_cv_cc_implements___func__="no" ]
1822 )
1823])
1824if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
1825 AC_DEFINE(HAVE___func__)
1826fi
1827
1812a662 1828AC_CACHE_CHECK([whether getopt has optreset support],
1829 ac_cv_have_getopt_optreset, [
1830 AC_TRY_LINK(
1831 [
1832#include <getopt.h>
1833 ],
1834 [ extern int optreset; optreset = 0; ],
1835 [ ac_cv_have_getopt_optreset="yes" ],
1836 [ ac_cv_have_getopt_optreset="no" ]
1837 )
1838])
1839if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
1840 AC_DEFINE(HAVE_GETOPT_OPTRESET)
1841fi
a0391976 1842
819b676f 1843AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
1844 AC_TRY_LINK([],
1845 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
1846 [ ac_cv_libc_defines_sys_errlist="yes" ],
1847 [ ac_cv_libc_defines_sys_errlist="no" ]
1848 )
1849])
1850if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
1851 AC_DEFINE(HAVE_SYS_ERRLIST)
1852fi
1853
1854
416ed5a7 1855AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
1856 AC_TRY_LINK([],
1857 [ extern int sys_nerr; printf("%i", sys_nerr);],
1858 [ ac_cv_libc_defines_sys_nerr="yes" ],
1859 [ ac_cv_libc_defines_sys_nerr="no" ]
1860 )
1861])
1862if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
1863 AC_DEFINE(HAVE_SYS_NERR)
1864fi
1865
d0b19c95 1866SCARD_MSG="no"
295c8801 1867# Check whether user wants sectok support
1868AC_ARG_WITH(sectok,
1869 [ --with-sectok Enable smartcard support using libsectok],
d0b19c95 1870 [
1871 if test "x$withval" != "xno" ; then
1872 if test "x$withval" != "xyes" ; then
1873 CPPFLAGS="$CPPFLAGS -I${withval}"
1874 LDFLAGS="$LDFLAGS -L${withval}"
1875 if test ! -z "$need_dash_r" ; then
1876 LDFLAGS="$LDFLAGS -R${withval}"
1877 fi
1878 if test ! -z "$blibpath" ; then
1879 blibpath="$blibpath:${withval}"
1880 fi
1881 fi
1882 AC_CHECK_HEADERS(sectok.h)
1883 if test "$ac_cv_header_sectok_h" != yes; then
1884 AC_MSG_ERROR(Can't find sectok.h)
1885 fi
1886 AC_CHECK_LIB(sectok, sectok_open)
1887 if test "$ac_cv_lib_sectok_sectok_open" != yes; then
1888 AC_MSG_ERROR(Can't find libsectok)
1889 fi
1890 AC_DEFINE(SMARTCARD)
295c8801 1891 AC_DEFINE(USE_SECTOK)
1892 SCARD_MSG="yes, using sectok"
1893 fi
1894 ]
1895)
1896
1897# Check whether user wants OpenSC support
1898AC_ARG_WITH(opensc,
49ef62db 1899 AC_HELP_STRING([--with-opensc=PFX],
1900 [Enable smartcard support using OpenSC]),
1901 opensc_config_prefix="$withval", opensc_config_prefix="")
1902if test x$opensc_config_prefix != x ; then
1903 OPENSC_CONFIG=$opensc_config_prefix/bin/opensc-config
1904 AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no)
1905 if test "$OPENSC_CONFIG" != "no"; then
1906 LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags`
1907 LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs`
1908 CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS"
1909 LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS"
1910 AC_DEFINE(SMARTCARD)
1911 AC_DEFINE(USE_OPENSC)
1912 SCARD_MSG="yes, using OpenSC"
1913 fi
1914fi
d0b19c95 1915
3e05e934 1916# Check whether user wants DNS support
1917DNS_MSG="no"
1918AC_ARG_WITH(dns,
1919 [ --with-dns Support for fetching keys from DNS (experimental)],
1920 [
1921 if test "x$withval" != "xno" ; then
4460d509 1922 DNS_MSG="yes"
1923 AC_DEFINE(DNS)
1924 AC_SEARCH_LIBS(getrrsetbyname, resolv,
4e00038c 1925 [AC_DEFINE(HAVE_GETRRSETBYNAME)],
1926 [
1927 # Needed by our getrrsetbyname()
1928 AC_SEARCH_LIBS(res_query, resolv)
1929 AC_SEARCH_LIBS(dn_expand, resolv)
252ff4df 1930 AC_CHECK_FUNCS(_getshort _getlong)
078ec045 1931 AC_CHECK_MEMBER(HEADER.ad,
1932 [AC_DEFINE(HAVE_HEADER_AD)],,
1933 [#include <arpa/nameser.h>])
4e00038c 1934 ])
3e05e934 1935 fi
1936 ]
1937)
1938
12928e80 1939# Check whether user wants Kerberos 5 support
1940KRB5_MSG="no"
1941AC_ARG_WITH(kerberos5,
1942 [ --with-kerberos5=PATH Enable Kerberos 5 support],
1943 [
1944 if test "x$withval" != "xno" ; then
1945 if test "x$withval" = "xyes" ; then
1946 KRB5ROOT="/usr/local"
1947 else
1948 KRB5ROOT=${withval}
1949 fi
1950 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
1951 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
1952 AC_DEFINE(KRB5)
1953 KRB5_MSG="yes"
1954 AC_MSG_CHECKING(whether we are using Heimdal)
1955 AC_TRY_COMPILE([ #include <krb5.h> ],
1956 [ char *tmp = heimdal_version; ],
1957 [ AC_MSG_RESULT(yes)
1958 AC_DEFINE(HEIMDAL)
1959 K5LIBS="-lkrb5 -ldes -lcom_err -lasn1 -lroken"
1960 ],
1961 [ AC_MSG_RESULT(no)
1962 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
1963 ]
1964 )
1965 if test ! -z "$need_dash_r" ; then
1966 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
1967 fi
1968 if test ! -z "$blibpath" ; then
1969 blibpath="$blibpath:${KRB5ROOT}/lib"
1970 fi
4e00038c 1971 AC_SEARCH_LIBS(dn_expand, resolv)
12928e80 1972
749560dd 1973 AC_CHECK_LIB(gssapi,gss_init_sec_context,
1974 [ AC_DEFINE(GSSAPI)
1975 K5LIBS="-lgssapi $K5LIBS" ],
1976 [ AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context,
1977 [ AC_DEFINE(GSSAPI)
1978 K5LIBS="-lgssapi_krb5 $K5LIBS" ],
1979 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
1980 $K5LIBS)
1981 ],
1982 $K5LIBS)
1983
1984 AC_CHECK_HEADER(gssapi.h, ,
1985 [ unset ac_cv_header_gssapi_h
1986 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
1987 AC_CHECK_HEADERS(gssapi.h, ,
1988 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
1989 )
1990 ]
1991 )
1992
1993 oldCPP="$CPPFLAGS"
1994 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
1995 AC_CHECK_HEADER(gssapi_krb5.h, ,
1996 [ CPPFLAGS="$oldCPP" ])
1997
12928e80 1998 KRB5=yes
1999 fi
2000 ]
2001)
1c590258 2002LIBS="$LIBS $K5LIBS"
b5b68128 2003
a0391976 2004# Looking for programs, paths and files
a0391976 2005
ecac8ee5 2006PRIVSEP_PATH=/var/empty
2007AC_ARG_WITH(privsep-path,
cda1ebcb 2008 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
ecac8ee5 2009 [
2010 if test "x$withval" != "$no" ; then
2011 PRIVSEP_PATH=$withval
2012 fi
2013 ]
2014)
2015AC_SUBST(PRIVSEP_PATH)
2016
a0391976 2017AC_ARG_WITH(xauth,
2018 [ --with-xauth=PATH Specify path to xauth program ],
2019 [
00937921 2020 if test "x$withval" != "xno" ; then
cbd7492e 2021 xauth_path=$withval
a0391976 2022 fi
2023 ],
2024 [
2bf42e4a 2025 TestPath="$PATH"
2026 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
2027 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
2028 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
2029 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
2030 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
e5fe9a1f 2031 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
a0391976 2032 xauth_path="/usr/openwin/bin/xauth"
2033 fi
2034 ]
2035)
2036
65a4b4af 2037STRIP_OPT=-s
2038AC_ARG_ENABLE(strip,
2039 [ --disable-strip Disable calling strip(1) on install],
2040 [
2041 if test "x$enableval" = "xno" ; then
2042 STRIP_OPT=
2043 fi
2044 ]
2045)
2046AC_SUBST(STRIP_OPT)
2047
b3ec54b4 2048if test -z "$xauth_path" ; then
2049 XAUTH_PATH="undefined"
2050 AC_SUBST(XAUTH_PATH)
2051else
a0391976 2052 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
b3ec54b4 2053 XAUTH_PATH=$xauth_path
2054 AC_SUBST(XAUTH_PATH)
a0391976 2055fi
a0391976 2056
2057# Check for mail directory (last resort if we cannot get it from headers)
2058if test ! -z "$MAIL" ; then
2059 maildir=`dirname $MAIL`
2060 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir")
2061fi
2062
a0391976 2063if test -z "$no_dev_ptmx" ; then
6e879cb4 2064 if test "x$disable_ptmx_check" != "xyes" ; then
2065 AC_CHECK_FILE("/dev/ptmx",
2066 [
2067 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
2068 have_dev_ptmx=1
2069 ]
2070 )
2071 fi
3276571c 2072fi
2073AC_CHECK_FILE("/dev/ptc",
2074 [
2075 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
2076 have_dev_ptc=1
2077 ]
2078)
2079
a0391976 2080# Options from here on. Some of these are preset by platform above
fdf6b7aa 2081AC_ARG_WITH(mantype,
5d97cfbf 2082 [ --with-mantype=man|cat|doc Set man page type],
c54a6257 2083 [
5d97cfbf 2084 case "$withval" in
2085 man|cat|doc)
2086 MANTYPE=$withval
2087 ;;
2088 *)
2089 AC_MSG_ERROR(invalid man type: $withval)
2090 ;;
2091 esac
c54a6257 2092 ]
2093)
e0c4d3ac 2094if test -z "$MANTYPE"; then
2bf42e4a 2095 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
2096 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
e0c4d3ac 2097 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
2098 MANTYPE=doc
2099 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
2100 MANTYPE=man
2101 else
2102 MANTYPE=cat
2103 fi
2104fi
c54a6257 2105AC_SUBST(MANTYPE)
e0c4d3ac 2106if test "$MANTYPE" = "doc"; then
2107 mansubdir=man;
2108else
2109 mansubdir=$MANTYPE;
2110fi
2111AC_SUBST(mansubdir)
0bc5b6fb 2112
a0391976 2113# Check whether to enable MD5 passwords
cbd7492e 2114MD5_MSG="no"
2ddcfdf3 2115AC_ARG_WITH(md5-passwords,
caf3bc51 2116 [ --with-md5-passwords Enable use of MD5 passwords],
0bc5b6fb 2117 [
bcf36c78 2118 if test "x$withval" != "xno" ; then
0bc5b6fb 2119 AC_DEFINE(HAVE_MD5_PASSWORDS)
cbd7492e 2120 MD5_MSG="yes"
0bc5b6fb 2121 fi
2122 ]
caf3bc51 2123)
2124
a0391976 2125# Whether to disable shadow password support
a7effaac 2126AC_ARG_WITH(shadow,
2127 [ --without-shadow Disable shadow password support],
2128 [
2129 if test "x$withval" = "xno" ; then
2130 AC_DEFINE(DISABLE_SHADOW)
4cb5ffa0 2131 disable_shadow=yes
a7effaac 2132 fi
2133 ]
2134)
2135
4cb5ffa0 2136if test -z "$disable_shadow" ; then
2137 AC_MSG_CHECKING([if the systems has expire shadow information])
2138 AC_TRY_COMPILE(
2139 [
2140#include <sys/types.h>
2141#include <shadow.h>
2142 struct spwd sp;
2143 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
2144 [ sp_expire_available=yes ], []
2145 )
2146
2147 if test "x$sp_expire_available" = "xyes" ; then
2148 AC_MSG_RESULT(yes)
2149 AC_DEFINE(HAS_SHADOW_EXPIRE)
2150 else
2151 AC_MSG_RESULT(no)
2152 fi
2153fi
2154
a0391976 2155# Use ip address instead of hostname in $DISPLAY
44839801 2156if test ! -z "$IPADDR_IN_DISPLAY" ; then
2157 DISPLAY_HACK_MSG="yes"
2158 AC_DEFINE(IPADDR_IN_DISPLAY)
2159else
2160 DISPLAY_HACK_MSG="no"
2161 AC_ARG_WITH(ipaddr-display,
2162 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
2163 [
2164 if test "x$withval" != "xno" ; then
2165 AC_DEFINE(IPADDR_IN_DISPLAY)
2166 DISPLAY_HACK_MSG="yes"
2167 fi
2168 ]
2169 )
2170fi
a7effaac 2171
8d184c09 2172dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
2173if test $ac_cv_func_login_getcapbool = "yes" -a \
2174 $ac_cv_header_login_cap_h = "yes" ; then
2175 USES_LOGIN_CONF=yes
2176fi
a0391976 2177# Whether to mess with the default path
cbd7492e 2178SERVER_PATH_MSG="(default)"
c43d69a9 2179AC_ARG_WITH(default-path,
75817f90 2180 [ --with-default-path= Specify default \$PATH environment for server],
cb807f40 2181 [
8d184c09 2182 if test "$USES_LOGIN_CONF" = "yes" ; then
2183 AC_MSG_WARN([
2184--with-default-path=PATH has no effect on this system.
2185Edit /etc/login.conf instead.])
2186 elif test "x$withval" != "xno" ; then
b2d818e6 2187 user_path="$withval"
cbd7492e 2188 SERVER_PATH_MSG="$withval"
cb807f40 2189 fi
b2d818e6 2190 ],
8d184c09 2191 [ if test "$USES_LOGIN_CONF" = "yes" ; then
2192 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
2193 else
b2d818e6 2194 AC_TRY_RUN(
2195 [
2196/* find out what STDPATH is */
2197#include <stdio.h>
b2d818e6 2198#ifdef HAVE_PATHS_H
2199# include <paths.h>
2200#endif
2201#ifndef _PATH_STDPATH
d9a4e55b 2202# ifdef _PATH_USERPATH /* Irix */
2203# define _PATH_STDPATH _PATH_USERPATH
2204# else
2205# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
2206# endif
b2d818e6 2207#endif
2208#include <sys/types.h>
2209#include <sys/stat.h>
2210#include <fcntl.h>
2211#define DATA "conftest.stdpath"
2212
2213main()
2214{
2215 FILE *fd;
2216 int rc;
2217
2218 fd = fopen(DATA,"w");
2219 if(fd == NULL)
2220 exit(1);
2221
2222 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
2223 exit(1);
2224
2225 exit(0);
2226}
2227 ], [ user_path=`cat conftest.stdpath` ],
2228 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
2229 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
2230 )
2231# make sure $bindir is in USER_PATH so scp will work
2232 t_bindir=`eval echo ${bindir}`
2233 case $t_bindir in
2234 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
2235 esac
2236 case $t_bindir in
2237 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
2238 esac
2239 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
2240 if test $? -ne 0 ; then
2241 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
2242 if test $? -ne 0 ; then
2243 user_path=$user_path:$t_bindir
2244 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
2245 fi
2246 fi
8d184c09 2247 fi ]
cb807f40 2248)
8d184c09 2249if test "$USES_LOGIN_CONF" != "yes" ; then
2250 AC_DEFINE_UNQUOTED(USER_PATH, "$user_path")
2251 AC_SUBST(user_path)
2252fi
cb807f40 2253
06617857 2254# Set superuser path separately to user path
06617857 2255AC_ARG_WITH(superuser-path,
2256 [ --with-superuser-path= Specify different path for super-user],
2257 [
2258 if test "x$withval" != "xno" ; then
2259 AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval")
2260 superuser_path=$withval
2261 fi
2262 ]
2263)
2264
2265
58d100bf 2266AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
cbd7492e 2267IPV4_IN6_HACK_MSG="no"
80faa19f 2268AC_ARG_WITH(4in6,
2269 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
2270 [
2271 if test "x$withval" != "xno" ; then
2272 AC_MSG_RESULT(yes)
2273 AC_DEFINE(IPV4_IN_IPV6)
cbd7492e 2274 IPV4_IN6_HACK_MSG="yes"
80faa19f 2275 else
2276 AC_MSG_RESULT(no)
2277 fi
2278 ],[
2279 if test "x$inet6_default_4in6" = "xyes"; then
2280 AC_MSG_RESULT([yes (default)])
2281 AC_DEFINE(IPV4_IN_IPV6)
cbd7492e 2282 IPV4_IN6_HACK_MSG="yes"
80faa19f 2283 else
2284 AC_MSG_RESULT([no (default)])
2285 fi
2286 ]
2287)
2288
af774732 2289# Whether to enable BSD auth support
f1b0ecc3 2290BSD_AUTH_MSG=no
af774732 2291AC_ARG_WITH(bsd-auth,
2292 [ --with-bsd-auth Enable BSD auth support],
2293 [
2294 if test "x$withval" != "xno" ; then
2295 AC_DEFINE(BSD_AUTH)
f1b0ecc3 2296 BSD_AUTH_MSG=yes
af774732 2297 fi
2298 ]
2299)
2300
a0391976 2301# Where to place sshd.pid
19d9ac2a 2302piddir=/var/run
81dadca3 2303# make sure the directory exists
2304if test ! -d $piddir ; then
2305 piddir=`eval echo ${sysconfdir}`
2306 case $piddir in
2307 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
2308 esac
2309fi
2310
47e45e44 2311AC_ARG_WITH(pid-dir,
2312 [ --with-pid-dir=PATH Specify location of ssh.pid file],
2313 [
2314 if test "x$withval" != "xno" ; then
19d9ac2a 2315 piddir=$withval
81dadca3 2316 if test ! -d $piddir ; then
2317 AC_MSG_WARN([** no $piddir directory on this system **])
2318 fi
47e45e44 2319 fi
2320 ]
2321)
b7a87eea 2322
42f11eb2 2323AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir")
19d9ac2a 2324AC_SUBST(piddir)
47e45e44 2325
1d7b9b20 2326dnl allow user to disable some login recording features
2327AC_ARG_ENABLE(lastlog,
bfd550a2 2328 [ --disable-lastlog disable use of lastlog even if detected [no]],
ddb154b3 2329 [
2330 if test "x$enableval" = "xno" ; then
2331 AC_DEFINE(DISABLE_LASTLOG)
2332 fi
2333 ]
1d7b9b20 2334)
2335AC_ARG_ENABLE(utmp,
bfd550a2 2336 [ --disable-utmp disable use of utmp even if detected [no]],
ddb154b3 2337 [
2338 if test "x$enableval" = "xno" ; then
2339 AC_DEFINE(DISABLE_UTMP)
2340 fi
2341 ]
1d7b9b20 2342)
2343AC_ARG_ENABLE(utmpx,
bfd550a2 2344 [ --disable-utmpx disable use of utmpx even if detected [no]],
ddb154b3 2345 [
2346 if test "x$enableval" = "xno" ; then
2347 AC_DEFINE(DISABLE_UTMPX)
2348 fi
2349 ]
1d7b9b20 2350)
2351AC_ARG_ENABLE(wtmp,
bfd550a2 2352 [ --disable-wtmp disable use of wtmp even if detected [no]],
ddb154b3 2353 [
2354 if test "x$enableval" = "xno" ; then
2355 AC_DEFINE(DISABLE_WTMP)
2356 fi
2357 ]
1d7b9b20 2358)
2359AC_ARG_ENABLE(wtmpx,
bfd550a2 2360 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
ddb154b3 2361 [
2362 if test "x$enableval" = "xno" ; then
2363 AC_DEFINE(DISABLE_WTMPX)
2364 fi
2365 ]
1d7b9b20 2366)
2367AC_ARG_ENABLE(libutil,
bfd550a2 2368 [ --disable-libutil disable use of libutil (login() etc.) [no]],
ddb154b3 2369 [
2370 if test "x$enableval" = "xno" ; then
2371 AC_DEFINE(DISABLE_LOGIN)
2372 fi
2373 ]
1d7b9b20 2374)
2375AC_ARG_ENABLE(pututline,
bfd550a2 2376 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
ddb154b3 2377 [
2378 if test "x$enableval" = "xno" ; then
2379 AC_DEFINE(DISABLE_PUTUTLINE)
2380 fi
2381 ]
1d7b9b20 2382)
2383AC_ARG_ENABLE(pututxline,
bfd550a2 2384 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
ddb154b3 2385 [
2386 if test "x$enableval" = "xno" ; then
2387 AC_DEFINE(DISABLE_PUTUTXLINE)
2388 fi
2389 ]
1d7b9b20 2390)
2391AC_ARG_WITH(lastlog,
bfd550a2 2392 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
8c89dd2b 2393 [
2394 if test "x$withval" = "xno" ; then
2395 AC_DEFINE(DISABLE_LASTLOG)
2396 else
2397 conf_lastlog_location=$withval
2398 fi
2399 ]
2400)
1d7b9b20 2401
2402dnl lastlog, [uw]tmpx? detection
2403dnl NOTE: set the paths in the platform section to avoid the
2404dnl need for command-line parameters
2405dnl lastlog and [uw]tmp are subject to a file search if all else fails
2406
2407dnl lastlog detection
2408dnl NOTE: the code itself will detect if lastlog is a directory
2409AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
2410AC_TRY_COMPILE([
2411#include <sys/types.h>
2412#include <utmp.h>
2413#ifdef HAVE_LASTLOG_H
2414# include <lastlog.h>
2415#endif
d7c0f3d5 2416#ifdef HAVE_PATHS_H
1d7b9b20 2417# include <paths.h>
41cb4569 2418#endif
2419#ifdef HAVE_LOGIN_H
2420# include <login.h>
1d7b9b20 2421#endif
2422 ],
2423 [ char *lastlog = LASTLOG_FILE; ],
2424 [ AC_MSG_RESULT(yes) ],
d7c0f3d5 2425 [
2426 AC_MSG_RESULT(no)
2427 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
2428 AC_TRY_COMPILE([
2429#include <sys/types.h>
2430#include <utmp.h>
2431#ifdef HAVE_LASTLOG_H
2432# include <lastlog.h>
2433#endif
2434#ifdef HAVE_PATHS_H
2435# include <paths.h>
2436#endif
2437 ],
2438 [ char *lastlog = _PATH_LASTLOG; ],
2439 [ AC_MSG_RESULT(yes) ],
2440 [
f282b668 2441 AC_MSG_RESULT(no)
d7c0f3d5 2442 system_lastlog_path=no
2443 ])
2444 ]
1d7b9b20 2445)
d7c0f3d5 2446
1d7b9b20 2447if test -z "$conf_lastlog_location"; then
2448 if test x"$system_lastlog_path" = x"no" ; then
2449 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
e5fe9a1f 2450 if (test -d "$f" || test -f "$f") ; then
1d7b9b20 2451 conf_lastlog_location=$f
2452 fi
2453 done
2454 if test -z "$conf_lastlog_location"; then
f8119cef 2455 AC_MSG_WARN([** Cannot find lastlog **])
2456 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
1d7b9b20 2457 fi
2458 fi
2459fi
2460
2461if test -n "$conf_lastlog_location"; then
2462 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location")
2463fi
2464
2465dnl utmp detection
2466AC_MSG_CHECKING([if your system defines UTMP_FILE])
2467AC_TRY_COMPILE([
2468#include <sys/types.h>
2469#include <utmp.h>
d7c0f3d5 2470#ifdef HAVE_PATHS_H
1d7b9b20 2471# include <paths.h>
2472#endif
2473 ],
2474 [ char *utmp = UTMP_FILE; ],
2475 [ AC_MSG_RESULT(yes) ],
2476 [ AC_MSG_RESULT(no)
2477 system_utmp_path=no ]
2478)
2479if test -z "$conf_utmp_location"; then
2480 if test x"$system_utmp_path" = x"no" ; then
2481 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
2482 if test -f $f ; then
2483 conf_utmp_location=$f
2484 fi
2485 done
2486 if test -z "$conf_utmp_location"; then
2487 AC_DEFINE(DISABLE_UTMP)
2488 fi
2489 fi
2490fi
2491if test -n "$conf_utmp_location"; then
2492 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location")
2493fi
2494
2495dnl wtmp detection
2496AC_MSG_CHECKING([if your system defines WTMP_FILE])
2497AC_TRY_COMPILE([
2498#include <sys/types.h>
2499#include <utmp.h>
d7c0f3d5 2500#ifdef HAVE_PATHS_H
1d7b9b20 2501# include <paths.h>
2502#endif
2503 ],
2504 [ char *wtmp = WTMP_FILE; ],
2505 [ AC_MSG_RESULT(yes) ],
2506 [ AC_MSG_RESULT(no)
2507 system_wtmp_path=no ]
2508)
2509if test -z "$conf_wtmp_location"; then
2510 if test x"$system_wtmp_path" = x"no" ; then
2511 for f in /usr/adm/wtmp /var/log/wtmp; do
2512 if test -f $f ; then
2513 conf_wtmp_location=$f
2514 fi
2515 done
2516 if test -z "$conf_wtmp_location"; then
2517 AC_DEFINE(DISABLE_WTMP)
2518 fi
2519 fi
2520fi
2521if test -n "$conf_wtmp_location"; then
2522 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location")
2523fi
2524
2525
2526dnl utmpx detection - I don't know any system so perverse as to require
2527dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
2528dnl there, though.
2529AC_MSG_CHECKING([if your system defines UTMPX_FILE])
2530AC_TRY_COMPILE([
2531#include <sys/types.h>
2532#include <utmp.h>
2533#ifdef HAVE_UTMPX_H
2534#include <utmpx.h>
2535#endif
d7c0f3d5 2536#ifdef HAVE_PATHS_H
1d7b9b20 2537# include <paths.h>
2538#endif
2539 ],
2540 [ char *utmpx = UTMPX_FILE; ],
2541 [ AC_MSG_RESULT(yes) ],
2542 [ AC_MSG_RESULT(no)
2543 system_utmpx_path=no ]
2544)
2545if test -z "$conf_utmpx_location"; then
2546 if test x"$system_utmpx_path" = x"no" ; then
2547 AC_DEFINE(DISABLE_UTMPX)
2548 fi
2549else
2550 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location")
2551fi
2552
2553dnl wtmpx detection
2554AC_MSG_CHECKING([if your system defines WTMPX_FILE])
2555AC_TRY_COMPILE([
2556#include <sys/types.h>
2557#include <utmp.h>
2558#ifdef HAVE_UTMPX_H
2559#include <utmpx.h>
2560#endif
d7c0f3d5 2561#ifdef HAVE_PATHS_H
1d7b9b20 2562# include <paths.h>
2563#endif
2564 ],
2565 [ char *wtmpx = WTMPX_FILE; ],
2566 [ AC_MSG_RESULT(yes) ],
2567 [ AC_MSG_RESULT(no)
2568 system_wtmpx_path=no ]
2569)
2570if test -z "$conf_wtmpx_location"; then
2571 if test x"$system_wtmpx_path" = x"no" ; then
2572 AC_DEFINE(DISABLE_WTMPX)
2573 fi
2574else
2575 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location")
2576fi
2577
b7a87eea 2578
bd499f9e 2579if test ! -z "$blibpath" ; then
68ece370 2580 LDFLAGS="$LDFLAGS $blibflags$blibpath"
2581 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
bd499f9e 2582fi
2583
ddceb1c8 2584dnl remove pam and dl because they are in $LIBPAM
2585if test "$PAM_MSG" = yes ; then
98f2d9d5 2586 LIBS=`echo $LIBS | sed 's/-lpam //'`
2587fi
2588if test "$ac_cv_lib_pam_pam_set_item" = yes ; then
2589 LIBS=`echo $LIBS | sed 's/-ldl //'`
ddceb1c8 2590fi
2591
3c62e7eb 2592AC_EXEEXT
98a7c37b 2593AC_CONFIG_FILES([Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds])
2594AC_OUTPUT
d3083fbd 2595
cbd7492e 2596# Print summary of options
2597
cbd7492e 2598# Someone please show me a better way :)
2599A=`eval echo ${prefix}` ; A=`eval echo ${A}`
2600B=`eval echo ${bindir}` ; B=`eval echo ${B}`
2601C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
2602D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
f5665f6f 2603E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
e0c4d3ac 2604F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
cbd7492e 2605G=`eval echo ${piddir}` ; G=`eval echo ${G}`
ecac8ee5 2606H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
2607I=`eval echo ${user_path}` ; I=`eval echo ${I}`
2608J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
cbd7492e 2609
2610echo ""
26de7942 2611echo "OpenSSH has been configured with the following options:"
ecac8ee5 2612echo " User binaries: $B"
2613echo " System binaries: $C"
2614echo " Configuration files: $D"
2615echo " Askpass program: $E"
2616echo " Manual pages: $F"
2617echo " PID file: $G"
2618echo " Privilege separation chroot path: $H"
8d184c09 2619if test "$USES_LOGIN_CONF" = "yes" ; then
ecac8ee5 2620echo " At runtime, sshd will use the path defined in /etc/login.conf"
8d184c09 2621else
ecac8ee5 2622echo " sshd default user PATH: $I"
8d184c09 2623fi
06617857 2624if test ! -z "$superuser_path" ; then
ecac8ee5 2625echo " sshd superuser user PATH: $J"
2626fi
2627echo " Manpage format: $MANTYPE"
3deeea1a 2628echo " DNS support: $DNS_MSG"
3e05e934 2629echo " PAM support: $PAM_MSG"
ecac8ee5 2630echo " KerberosV support: $KRB5_MSG"
2631echo " Smartcard support: $SCARD_MSG"
ecac8ee5 2632echo " S/KEY support: $SKEY_MSG"
2633echo " TCP Wrappers support: $TCPW_MSG"
2634echo " MD5 password support: $MD5_MSG"
3deb1408 2635echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
ecac8ee5 2636echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
2637echo " BSD Auth support: $BSD_AUTH_MSG"
2638echo " Random number source: $RAND_MSG"
f1b0ecc3 2639if test ! -z "$USE_RAND_HELPER" ; then
ecac8ee5 2640echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
af774732 2641fi
2642
cbd7492e 2643echo ""
2644
0c2fb82f 2645echo " Host: ${host}"
2646echo " Compiler: ${CC}"
2647echo " Compiler flags: ${CFLAGS}"
2648echo "Preprocessor flags: ${CPPFLAGS}"
2649echo " Linker flags: ${LDFLAGS}"
ddceb1c8 2650echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}"
cbd7492e 2651
2652echo ""
2653
adeebd37 2654if test "x$PAM_MSG" = "xyes" ; then
f1b0ecc3 2655 echo "PAM is enabled. You may need to install a PAM control file "
2656 echo "for sshd, otherwise password authentication may fail. "
2657 echo "Example PAM control files can be found in the contrib/ "
2658 echo "subdirectory"
adeebd37 2659 echo ""
2660fi
2661
f1b0ecc3 2662if test ! -z "$RAND_HELPER_CMDHASH" ; then
2663 echo "WARNING: you are using the builtin random number collection "
2664 echo "service. Please read WARNING.RNG and request that your OS "
2665 echo "vendor includes kernel-based random number collection in "
2666 echo "future versions of your OS."
2c523de9 2667 echo ""
2668fi
af774732 2669
This page took 1.492897 seconds and 5 git commands to generate.