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