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