blob: 1f537868eac85365aeee1f4015a5d34360c1758d [file] [log] [blame]
Tim Rice4cec93f2002-02-26 08:40:48 -08001# $Id: configure.ac,v 1.21 2002/02/26 16:40:49 tim Exp $
Damien Millere9cf3572001-02-09 12:55:35 +11002
Tim Rice13aae5e2001-10-21 17:53:58 -07003AC_INIT
4AC_CONFIG_SRCDIR([ssh.c])
Damien Miller7f6ea021999-10-28 13:25:17 +10005
6AC_CONFIG_HEADER(config.h)
Damien Miller856799b2000-03-15 21:18:10 +11007AC_PROG_CC
Damien Miller76112de1999-12-21 11:18:08 +11008AC_CANONICAL_HOST
Damien Miller4df5c762001-02-28 08:14:22 +11009AC_C_BIGENDIAN
Damien Miller7f6ea021999-10-28 13:25:17 +100010
Damien Millera22ba012000-03-02 23:09:20 +110011# Checks for programs.
Damien Millerab18c411999-11-11 10:40:23 +110012AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +100013AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110014AC_PROG_INSTALL
Ben Lindstrom582d3982001-02-06 22:54:30 +000015AC_PATH_PROG(AR, ar)
Tim Riceb8fbb8e2001-04-21 14:31:52 -070016AC_PATH_PROGS(PERL, perl5 perl)
Damien Millere79334a1999-12-29 10:03:37 +110017AC_SUBST(PERL)
Damien Miller8d1fd572000-05-17 21:34:07 +100018AC_PATH_PROG(ENT, ent)
19AC_SUBST(ENT)
Damien Miller78315eb2000-09-29 23:01:36 +110020AC_PATH_PROGS(FILEPRIV, filepriv, true, /sbin:/usr/sbin)
Damien Miller4864e8f2001-02-08 10:07:08 +110021AC_PATH_PROG(TEST_MINUS_S_SH, bash)
22AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
23AC_PATH_PROG(TEST_MINUS_S_SH, sh)
Damien Miller2e1b0821999-12-25 10:11:29 +110024
Damien Millere8bb4502001-09-25 16:39:35 +100025# System features
26AC_SYS_LARGEFILE
27
Damien Miller3f62aba2000-11-29 11:56:35 +110028if test -z "$AR" ; then
29 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
30fi
31
Damien Millerad833b32000-08-23 10:46:23 +100032# Use LOGIN_PROGRAM from environment if possible
33if test ! -z "$LOGIN_PROGRAM" ; then
34 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM")
35else
36 # Search for login
37 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
38 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
39 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
40 fi
41fi
42
Damien Miller166bd442000-03-16 10:48:25 +110043if test -z "$LD" ; then
44 LD=$CC
45fi
46AC_SUBST(LD)
47
Damien Miller166bd442000-03-16 10:48:25 +110048AC_C_INLINE
Damien Miller649d9992001-06-27 23:35:51 +100049if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
50 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wno-uninitialized"
Damien Miller166bd442000-03-16 10:48:25 +110051fi
52
Damien Millera22ba012000-03-02 23:09:20 +110053# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +110054case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +110055*-*-aix*)
56 AFS_LIBS="-lld"
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +000057 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Millerdb819592000-03-14 13:44:01 +110058 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Damien Milleredb82922000-06-20 13:25:52 +100059 if (test "$LD" != "gcc" && test -z "$blibpath"); then
Damien Miller29ea30d2000-03-17 10:54:15 +110060 blibpath="/usr/lib:/lib:/usr/local/lib"
61 fi
Damien Millerd2c208a2000-05-17 22:00:02 +100062 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)])
Damien Millereca71f82000-01-20 22:38:27 +110063 AC_DEFINE(BROKEN_GETADDRINFO)
andre60f3c982000-06-03 16:18:19 +000064 dnl AIX handles lastlog as part of its login message
65 AC_DEFINE(DISABLE_LASTLOG)
Damien Millerd054b072002-02-14 08:44:04 +110066 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
Damien Miller75b1d102000-01-07 14:01:41 +110067 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +110068*-*-cygwin*)
Tim Ricefe1d1002001-11-26 17:19:43 -080069 LIBS="$LIBS /usr/lib/textmode.o"
Damien Millerbac2d8a2000-09-05 16:13:06 +110070 AC_DEFINE(HAVE_CYGWIN)
Ben Lindstromca60a9b2001-05-17 03:32:50 +000071 AC_DEFINE(USE_PIPES)
Damien Millerbac2d8a2000-09-05 16:13:06 +110072 AC_DEFINE(DISABLE_SHADOW)
73 AC_DEFINE(IPV4_DEFAULT)
74 AC_DEFINE(IP_TOS_IS_BROKEN)
Ben Lindstrom38e60932001-02-24 00:55:04 +000075 AC_DEFINE(NO_X11_UNIX_SOCKETS)
Damien Millerbac2d8a2000-09-05 16:13:06 +110076 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +000077*-*-dgux*)
78 AC_DEFINE(IP_TOS_IS_BROKEN)
79 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +000080*-*-darwin*)
81 AC_DEFINE(BROKEN_GETADDRINFO)
82 ;;
Damien Miller76112de1999-12-21 11:18:08 +110083*-*-hpux10*)
84 if test -z "$GCC"; then
Damien Millerfda78d92000-05-20 15:33:44 +100085 CFLAGS="$CFLAGS -Ae"
Damien Miller76112de1999-12-21 11:18:08 +110086 fi
Kevin Steves315f8b72001-06-28 00:24:41 +000087 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +110088 IPADDR_IN_DISPLAY=yes
Damien Millerb0785672000-08-23 09:10:39 +100089 AC_DEFINE(USE_PIPES)
Damien Miller8a1e6a62000-09-16 15:55:52 +110090 AC_DEFINE(DISABLE_SHADOW)
Damien Millerd6f204d2000-09-23 13:57:27 +110091 AC_DEFINE(DISABLE_UTMP)
Kevin Steves8848b242000-10-18 13:11:44 +000092 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Kevin Steves315f8b72001-06-28 00:24:41 +000093 LIBS="$LIBS -lxnet -lsec"
Damien Miller76112de1999-12-21 11:18:08 +110094 ;;
Damien Miller1bead332000-04-30 00:47:29 +100095*-*-hpux11*)
Kevin Steves6a7b0de2001-06-27 16:32:24 +000096 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +110097 IPADDR_IN_DISPLAY=yes
Damien Miller82cf0ce2000-12-20 13:34:48 +110098 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller5552d7a2000-08-30 09:53:24 +110099 AC_DEFINE(USE_PIPES)
Damien Miller8a1e6a62000-09-16 15:55:52 +1100100 AC_DEFINE(DISABLE_SHADOW)
Damien Millerd6f204d2000-09-23 13:57:27 +1100101 AC_DEFINE(DISABLE_UTMP)
Kevin Steves8848b242000-10-18 13:11:44 +0000102 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Kevin Steves6a7b0de2001-06-27 16:32:24 +0000103 LIBS="$LIBS -lxnet -lsec"
Damien Miller1bead332000-04-30 00:47:29 +1000104 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100105*-*-irix5*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000106 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller9e110892000-06-07 21:05:46 +1000107 LDFLAGS="$LDFLAGS"
Damien Miller190d5a82000-09-30 09:43:19 +1100108 PATH="$PATH:/usr/etc"
Damien Miller11fa2cc2000-08-16 10:35:58 +1000109 AC_DEFINE(BROKEN_INET_NTOA)
Damien Miller1808f382000-01-06 12:03:12 +1100110 ;;
111*-*-irix6*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000112 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller9e110892000-06-07 21:05:46 +1000113 LDFLAGS="$LDFLAGS"
Damien Miller190d5a82000-09-30 09:43:19 +1100114 PATH="$PATH:/usr/etc"
Damien Miller91606b12000-06-28 08:22:29 +1000115 AC_DEFINE(WITH_IRIX_ARRAY)
116 AC_DEFINE(WITH_IRIX_PROJECT)
117 AC_DEFINE(WITH_IRIX_AUDIT)
Ben Lindstrom4a1d9162000-11-21 10:45:31 +0000118 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS)])
Damien Miller11fa2cc2000-08-16 10:35:58 +1000119 AC_DEFINE(BROKEN_INET_NTOA)
Damien Millerbeb4ba51999-12-28 15:09:35 +1100120 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100121*-*-linux*)
122 no_dev_ptmx=1
Damien Millera64b57a2001-01-17 10:44:13 +1100123 check_for_libcrypt_later=1
Damien Miller7bcb0892000-03-11 20:45:40 +1100124 AC_DEFINE(DONT_TRY_OTHER_AF)
Damien Miller4e997202000-07-09 21:21:52 +1000125 AC_DEFINE(PAM_TTY_KLUDGE)
Damien Miller28e4d8f2002-01-22 23:51:42 +1100126 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
Damien Miller7bcb0892000-03-11 20:45:40 +1100127 inet6_default_4in6=yes
Damien Millerb29ea912000-01-15 14:12:03 +1100128 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000129mips-sony-bsd|mips-sony-newsos4)
130 AC_DEFINE(HAVE_NEWS4)
131 SONY=1
132 AC_CHECK_LIB(iberty, xatexit, AC_DEFINE(HAVE_XATEXIT),
Damien Miller5dfe9762001-02-16 12:05:39 +1100133 AC_MSG_ERROR([*** libiberty missing - please install first or check config.log ***])
Ben Lindstromb5628642000-10-18 00:02:25 +0000134 )
135 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100136*-*-netbsd*)
Damien Millera22ba012000-03-02 23:09:20 +1100137 need_dash_r=1
Damien Milleree1c0b32000-01-21 00:18:15 +1100138 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100139*-*-freebsd*)
140 check_for_libcrypt_later=1
141 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000142*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000143 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100144 conf_utmp_location=/etc/utmp
145 conf_wtmp_location=/usr/adm/wtmp
146 MAIL=/usr/spool/mail
Damien Miller0f91b4e2000-06-18 15:43:25 +1000147 AC_DEFINE(HAVE_NEXT)
Ben Lindstromb4df15d2000-10-15 00:17:36 +0000148 AC_DEFINE(BROKEN_REALPATH)
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000149 AC_DEFINE(USE_PIPES)
Damien Millerfbd884a2001-02-27 08:39:07 +1100150 AC_DEFINE(BROKEN_SAVED_UIDS)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000151 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Ben Lindstrom321ae732000-12-31 15:00:23 +0000152 CFLAGS="$CFLAGS"
Damien Miller0f91b4e2000-06-18 15:43:25 +1000153 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100154*-*-solaris*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000155 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Ben Lindstrom866488b2001-02-20 18:22:38 +0000156 LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib"
Damien Millera22ba012000-03-02 23:09:20 +1100157 need_dash_r=1
Damien Miller82cf0ce2000-12-20 13:34:48 +1100158 AC_DEFINE(PAM_SUN_CODEBASE)
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000159 AC_DEFINE(LOGIN_NEEDS_UTMPX)
160 AC_DEFINE(LOGIN_NEEDS_TERM)
Ben Lindstrom95276712001-10-23 17:14:00 +0000161 AC_DEFINE(PAM_TTY_KLUDGE)
andre2ff7b5d2000-06-03 14:57:40 +0000162 # hardwire lastlog location (can't detect it on some versions)
163 conf_lastlog_location="/var/adm/lastlog"
Damien Millera1cb6442000-06-09 11:58:35 +1000164 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
165 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
166 if test "$sol2ver" -ge 8; then
167 AC_MSG_RESULT(yes)
168 AC_DEFINE(DISABLE_UTMP)
169 AC_DEFINE(DISABLE_WTMP)
170 else
171 AC_MSG_RESULT(no)
172 fi
Damien Miller75b1d102000-01-07 14:01:41 +1100173 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +1000174*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000175 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Damien Millerdfc83f42000-05-20 15:02:59 +1000176 AC_CHECK_FUNCS(getpwanam)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100177 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller877d8ea2001-02-18 15:29:28 +1100178 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000179 conf_utmp_location=/etc/utmp
180 conf_wtmp_location=/var/adm/wtmp
181 conf_lastlog_location=/var/adm/lastlog
Damien Millerb0785672000-08-23 09:10:39 +1000182 AC_DEFINE(USE_PIPES)
Damien Millerdfc83f42000-05-20 15:02:59 +1000183 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000184*-ncr-sysv*)
185 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
186 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Tim Rice13aae5e2001-10-21 17:53:58 -0700187 LIBS="$LIBS -lc89"
Ben Lindstrom34328342001-04-23 22:39:42 +0000188 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
Kevin Steves0bd4b342002-01-05 23:24:27 +0000189 AC_DEFINE(USE_PIPES)
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000190 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000191*-sni-sysv*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000192 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Tim Riceffdf4aa2001-10-27 10:45:36 -0700193 # /usr/ucblib MUST NOT be searched on ReliantUNIX
194 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Damien Millerfd9885e2001-01-10 08:16:53 +1100195 IPADDR_IN_DISPLAY=yes
196 AC_DEFINE(USE_PIPES)
Damien Miller2ae714f2000-07-11 09:29:50 +1000197 AC_DEFINE(IP_TOS_IS_BROKEN)
Kevin Steves52dd4682001-03-08 18:26:57 +0000198 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
Tim Riceffdf4aa2001-10-27 10:45:36 -0700199 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
200 # Attention: always take care to bind libsocket and libnsl before libc,
201 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +1000202 ;;
Damien Miller78315eb2000-09-29 23:01:36 +1100203*-*-sysv4.2*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000204 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller78315eb2000-09-29 23:01:36 +1100205 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Tim Ricea4f7ae12001-09-17 14:34:33 -0700206# enable_suid_ssh=no
Damien Miller5dfe9762001-02-16 12:05:39 +1100207 AC_DEFINE(USE_PIPES)
Damien Miller78315eb2000-09-29 23:01:36 +1100208 ;;
209*-*-sysv5*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000210 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller78315eb2000-09-29 23:01:36 +1100211 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Tim Ricea4f7ae12001-09-17 14:34:33 -0700212# enable_suid_ssh=no
Damien Miller5dfe9762001-02-16 12:05:39 +1100213 AC_DEFINE(USE_PIPES)
Damien Miller78315eb2000-09-29 23:01:36 +1100214 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100215*-*-sysv*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000216 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Millerdb819592000-03-14 13:44:01 +1100217 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Damien Miller75b1d102000-01-07 14:01:41 +1100218 ;;
Damien Miller78315eb2000-09-29 23:01:36 +1100219*-*-sco3.2v4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000220 CPPFLAGS="$CPPFLAGS -Dftruncate=chsize -I/usr/local/include"
Damien Miller78315eb2000-09-29 23:01:36 +1100221 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Tim Rice13aae5e2001-10-21 17:53:58 -0700222 LIBS="$LIBS -los -lprot -lx -ltinfo -lm"
Damien Miller78315eb2000-09-29 23:01:36 +1100223 rsh_path="/usr/bin/rcmd"
Damien Miller5dfe9762001-02-16 12:05:39 +1100224 RANLIB=true
225 no_dev_ptmx=1
226 AC_DEFINE(BROKEN_SYS_TERMIO_H)
227 AC_DEFINE(USE_PIPES)
Damien Miller78315eb2000-09-29 23:01:36 +1100228 AC_DEFINE(HAVE_SCO_PROTECTED_PW)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000229 AC_DEFINE(DISABLE_SHADOW)
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000230 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
Damien Millerfbd884a2001-02-27 08:39:07 +1100231 AC_DEFINE(BROKEN_SAVED_UIDS)
Damien Miller217f5672001-02-16 12:12:41 +1100232 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700233 MANTYPE=man
Tim Rice13aae5e2001-10-21 17:53:58 -0700234 do_sco3_extra_lib_check=yes
Damien Miller78315eb2000-09-29 23:01:36 +1100235 ;;
236*-*-sco3.2v5*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000237 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Millera66626b2000-06-13 18:57:53 +1000238 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Damien Miller5dfe9762001-02-16 12:05:39 +1100239 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000240 no_dev_ptmx=1
Damien Miller78315eb2000-09-29 23:01:36 +1100241 rsh_path="/usr/bin/rcmd"
Damien Miller5dfe9762001-02-16 12:05:39 +1100242 AC_DEFINE(USE_PIPES)
Damien Miller78315eb2000-09-29 23:01:36 +1100243 AC_DEFINE(HAVE_SCO_PROTECTED_PW)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000244 AC_DEFINE(DISABLE_SHADOW)
Ben Lindstrom42717bf2000-12-28 15:46:20 +0000245 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
Damien Miller217f5672001-02-16 12:12:41 +1100246 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700247 MANTYPE=man
Damien Millera66626b2000-06-13 18:57:53 +1000248 ;;
Ben Lindstromd9e08242001-07-22 19:32:00 +0000249*-*-unicos*)
Tim Ricee991e3c2001-08-07 15:29:07 -0700250 no_libsocket=1
251 no_libnsl=1
Ben Lindstromd9e08242001-07-22 19:32:00 +0000252 AC_DEFINE(USE_PIPES)
Tim Ricee991e3c2001-08-07 15:29:07 -0700253 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal,-L/usr/local/lib"
254 LIBS="$LIBS -lgen -lrsc"
255 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000256*-dec-osf*)
Ben Lindstrom72af2ef2001-05-08 20:42:28 +0000257 AC_MSG_CHECKING(for Digital Unix SIA)
258 no_osfsia=""
259 AC_ARG_WITH(osfsia,
260 [ --with-osfsia Enable Digital Unix SIA],
261 [
262 if test "x$withval" = "xno" ; then
263 AC_MSG_RESULT(disabled)
264 no_osfsia=1
265 fi
266 ],
267 )
268 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +1000269 if test -f /etc/sia/matrix.conf; then
270 AC_MSG_RESULT(yes)
271 AC_DEFINE(HAVE_OSF_SIA)
272 AC_DEFINE(DISABLE_LOGIN)
273 LIBS="$LIBS -lsecurity -ldb -lm -laud"
274 else
275 AC_MSG_RESULT(no)
276 fi
277 fi
278 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000279
280*-*-nto-qnx)
281 AC_DEFINE(USE_PIPES)
282 AC_DEFINE(NO_X11_UNIX_SOCKETS)
283 AC_DEFINE(MISSING_NFDBITS)
284 AC_DEFINE(MISSING_HOWMANY)
285 AC_DEFINE(MISSING_FD_MASK)
286 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100287esac
288
Damien Millere37bfc12000-06-05 09:37:43 +1000289# Allow user to specify flags
290AC_ARG_WITH(cflags,
291 [ --with-cflags Specify additional flags to pass to compiler],
292 [
293 if test "x$withval" != "xno" ; then
294 CFLAGS="$CFLAGS $withval"
295 fi
296 ]
297)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000298AC_ARG_WITH(cppflags,
299 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
300 [
301 if test "x$withval" != "xno"; then
302 CPPFLAGS="$CPPFLAGS $withval"
303 fi
304 ]
305)
Damien Millere37bfc12000-06-05 09:37:43 +1000306AC_ARG_WITH(ldflags,
Ben Lindstrom2ed98182000-11-06 07:15:43 +0000307 [ --with-ldflags Specify additional flags to pass to linker],
Damien Millere37bfc12000-06-05 09:37:43 +1000308 [
309 if test "x$withval" != "xno" ; then
310 LDFLAGS="$LDFLAGS $withval"
311 fi
312 ]
313)
314AC_ARG_WITH(libs,
315 [ --with-libs Specify additional libraries to link with],
316 [
317 if test "x$withval" != "xno" ; then
318 LIBS="$LIBS $withval"
319 fi
320 ]
321)
322
Tim Rice4cec93f2002-02-26 08:40:48 -0800323# Checks for header files.
324AC_CHECK_HEADERS(bstring.h crypt.h endian.h floatingpoint.h \
325 getopt.h glob.h lastlog.h limits.h login.h \
326 login_cap.h maillock.h netdb.h netgroup.h \
327 netinet/in_systm.h paths.h poll.h pty.h \
328 security/pam_appl.h shadow.h stddef.h stdint.h \
329 strings.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h \
330 sys/poll.h sys/queue.h sys/select.h sys/stat.h \
331 sys/stropts.h sys/sysmacros.h sys/time.h \
332 sys/ttcompat.h sys/un.h time.h ttyent.h usersec.h \
333 util.h utime.h utmp.h utmpx.h)
334
Damien Millera22ba012000-03-02 23:09:20 +1100335# Checks for libraries.
Tim Rice13aae5e2001-10-21 17:53:58 -0700336AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
337AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000338
Damien Millerdf288022001-02-18 13:07:07 +1100339dnl SCO OS3 needs this for libwrap
Tim Rice13aae5e2001-10-21 17:53:58 -0700340if test "x$with_tcp_wrappers" != "xno" ; then
341 if test "x$do_sco3_extra_lib_check" = "xyes" ; then
342 AC_CHECK_LIB(rpc, innetgr, LIBS="-lrpc -lyp -lrpc $LIBS" , , -lyp -lrpc)
343 fi
344fi
Damien Millerdf288022001-02-18 13:07:07 +1100345
Tim Rice13aae5e2001-10-21 17:53:58 -0700346AC_CHECK_FUNC(getspnam, ,
347 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
Tim Rice13aae5e2001-10-21 17:53:58 -0700348
Damien Miller150c8b52002-02-13 23:06:56 +1100349AC_ARG_WITH(rpath,
350 [ --without-rpath Disable auto-added -R linker paths],
351 [
352 if test "x$withval" = "xno" ; then
353 need_dash_r=""
354 fi
355 if test "x$withval" = "xyes" ; then
356 need_dash_r=1
357 fi
358 ]
359)
360
Tim Rice13aae5e2001-10-21 17:53:58 -0700361dnl zlib is required
362AC_ARG_WITH(zlib,
363 [ --with-zlib=PATH Use zlib in PATH],
364 [
Kevin Steves7dc81972002-01-22 21:59:31 +0000365 if test "x$withval" = "xno" ; then
Damien Miller6c21c512002-01-22 21:57:53 +1100366 AC_MSG_ERROR([*** zlib is required ***])
367 fi
Tim Rice13aae5e2001-10-21 17:53:58 -0700368 if test -d "$withval/lib"; then
369 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700370 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700371 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700372 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700373 fi
374 else
375 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700376 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700377 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700378 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700379 fi
380 fi
381 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700382 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700383 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700384 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700385 fi
386 ]
387)
388
Tim Rice17b93e52001-10-23 22:36:54 -0700389AC_CHECK_LIB(z, deflate, ,AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***]))
Damien Miller6f9c3372000-10-25 10:06:04 +1100390
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000391dnl UnixWare 2.x
392AC_CHECK_FUNC(strcasecmp,
393 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
394)
395AC_CHECK_FUNC(utimes,
396 [], [ AC_CHECK_LIB(c89, utimes, LIBS="$LIBS -lc89") ]
397)
Damien Millerab18c411999-11-11 10:40:23 +1100398
Tim Ricee589a292001-11-03 11:09:32 -0800399dnl Checks for libutil functions
400AC_CHECK_HEADERS(libutil.h)
401AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN)])
402AC_CHECK_FUNCS(logout updwtmp logwtmp)
403
Ben Lindstrom8697e082001-02-24 21:41:10 +0000404AC_FUNC_STRFTIME
405
Damien Miller3c027682001-03-14 11:39:45 +1100406# Check for ALTDIRFUNC glob() extension
407AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
408AC_EGREP_CPP(FOUNDIT,
409 [
410 #include <glob.h>
411 #ifdef GLOB_ALTDIRFUNC
412 FOUNDIT
413 #endif
414 ],
415 [
416 AC_DEFINE(GLOB_HAS_ALTDIRFUNC)
417 AC_MSG_RESULT(yes)
418 ],
419 [
420 AC_MSG_RESULT(no)
421 ]
422)
Damien Millerab18c411999-11-11 10:40:23 +1100423
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000424# Check for g.gl_matchc glob() extension
425AC_MSG_CHECKING(for gl_matchc field in glob_t)
426AC_EGREP_CPP(FOUNDIT,
427 [
428 #include <glob.h>
429 int main(void){glob_t g; g.gl_matchc = 1;}
430 ],
431 [
432 AC_DEFINE(GLOB_HAS_GL_MATCHC)
433 AC_MSG_RESULT(yes)
434 ],
435 [
436 AC_MSG_RESULT(no)
437 ]
438)
439
Damien Miller18bb4732001-03-28 14:35:30 +1000440AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
441AC_TRY_RUN(
442 [
443#include <sys/types.h>
444#include <dirent.h>
445int main(void){struct dirent d;return(sizeof(d.d_name)<=sizeof(char));}
446 ],
447 [AC_MSG_RESULT(yes)],
448 [
449 AC_MSG_RESULT(no)
450 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
451 ]
452)
453
Damien Millerc547bf12001-02-16 10:18:12 +1100454# Check whether user wants S/Key support
455SKEY_MSG="no"
456AC_ARG_WITH(skey,
Tim Rice13aae5e2001-10-21 17:53:58 -0700457 [ --with-skey[[=PATH]] Enable S/Key support
458 (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +1100459 [
460 if test "x$withval" != "xno" ; then
461
462 if test "x$withval" != "xyes" ; then
463 CPPFLAGS="$CPPFLAGS -I${withval}/include"
464 LDFLAGS="$LDFLAGS -L${withval}/lib"
465 fi
466
467 AC_DEFINE(SKEY)
468 LIBS="-lskey $LIBS"
469 SKEY_MSG="yes"
470
Tim Rice4cec93f2002-02-26 08:40:48 -0800471 AC_MSG_CHECKING([for s/key support])
472 AC_TRY_RUN(
Damien Millerc547bf12001-02-16 10:18:12 +1100473 [
Tim Rice4cec93f2002-02-26 08:40:48 -0800474#include <stdio.h>
475#include <skey.h>
476int main() { char *ff = skey_keyinfo(""); ff=""; return 0; }
477 ],
478 [AC_MSG_RESULT(yes)],
479 [
480 AC_MSG_RESULT(no)
Damien Millerc547bf12001-02-16 10:18:12 +1100481 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
482 ])
483 fi
484 ]
485)
486
487# Check whether user wants TCP wrappers support
Tim Rice13aae5e2001-10-21 17:53:58 -0700488TCPW_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +1100489AC_ARG_WITH(tcp-wrappers,
Tim Rice13aae5e2001-10-21 17:53:58 -0700490 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support
491 (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +1100492 [
493 if test "x$withval" != "xno" ; then
494 saved_LIBS="$LIBS"
Tim Rice13aae5e2001-10-21 17:53:58 -0700495 saved_LDFLAGS="$LDFLAGS"
496 saved_CPPFLAGS="$CPPFLAGS"
497 if test -n "${withval}" -a "${withval}" != "yes"; then
498 if test -d "${withval}/lib"; then
499 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700500 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700501 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700502 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700503 fi
504 else
505 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700506 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700507 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700508 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700509 fi
510 fi
511 if test -d "${withval}/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700512 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700513 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700514 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700515 fi
Tim Rice13aae5e2001-10-21 17:53:58 -0700516 fi
Tim Rice4cec93f2002-02-26 08:40:48 -0800517 LIBWRAP="-lwrap"
518 LIBS="$LIBWRAP $LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +1100519 AC_MSG_CHECKING(for libwrap)
520 AC_TRY_LINK(
521 [
522#include <tcpd.h>
523 int deny_severity = 0, allow_severity = 0;
524 ],
525 [hosts_access(0);],
526 [
527 AC_MSG_RESULT(yes)
528 AC_DEFINE(LIBWRAP)
Tim Rice4cec93f2002-02-26 08:40:48 -0800529 AC_SUBST(LIBWRAP)
Tim Rice13aae5e2001-10-21 17:53:58 -0700530 TCPW_MSG="yes"
Damien Millerc547bf12001-02-16 10:18:12 +1100531 ],
532 [
533 AC_MSG_ERROR([*** libwrap missing])
534 ]
535 )
Tim Rice4cec93f2002-02-26 08:40:48 -0800536 LIBS="$saved_LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +1100537 fi
538 ]
539)
540
Damien Millerad833b32000-08-23 10:46:23 +1000541dnl Checks for library functions.
Tim Rice13aae5e2001-10-21 17:53:58 -0700542AC_CHECK_FUNCS(arc4random atexit b64_ntop bcopy bindresvport_sa \
543 clock fchmod fchown freeaddrinfo futimes gai_strerror \
544 getaddrinfo getcwd getgrouplist getnameinfo getopt \
545 getrlimit getrusage getttyent glob inet_aton inet_ntoa \
546 inet_ntop innetgr login_getcapbool md5_crypt memmove \
547 mkdtemp on_exit openpty readpassphrase realpath \
548 rresvport_af setdtablesize setegid setenv seteuid \
549 setlogin setproctitle setresgid setreuid setrlimit \
550 setsid setvbuf sigaction sigvec snprintf strerror \
551 strlcat strlcpy strmode strsep sysconf tcgetpgrp utimes \
552 vhangup vsnprintf waitpid __b64_ntop _getpty)
553
554dnl IRIX and Solaris 2.5.1 have dirname() in libgen
Tim Rice17b93e52001-10-23 22:36:54 -0700555AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
Tim Rice13aae5e2001-10-21 17:53:58 -0700556 AC_CHECK_LIB(gen, dirname,[
557 AC_CACHE_CHECK([for broken dirname],
558 ac_cv_have_broken_dirname, [
Tim Rice17b93e52001-10-23 22:36:54 -0700559 save_LIBS="$LIBS"
560 LIBS="$LIBS -lgen"
Tim Rice13aae5e2001-10-21 17:53:58 -0700561 AC_TRY_RUN(
562 [
563#include <libgen.h>
564#include <string.h>
565
566int main(int argc, char **argv) {
567 char *s, buf[32];
568
569 strncpy(buf,"/etc", 32);
570 s = dirname(buf);
Tim Rice17b93e52001-10-23 22:36:54 -0700571 if (!s || strncmp(s, "/", 32) != 0) {
Tim Rice13aae5e2001-10-21 17:53:58 -0700572 exit(1);
573 } else {
574 exit(0);
575 }
576}
577 ],
578 [ ac_cv_have_broken_dirname="no" ],
579 [ ac_cv_have_broken_dirname="yes" ]
580 )
Tim Rice17b93e52001-10-23 22:36:54 -0700581 LIBS="$save_LIBS"
Tim Rice13aae5e2001-10-21 17:53:58 -0700582 ])
Tim Rice17b93e52001-10-23 22:36:54 -0700583 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
Tim Rice13aae5e2001-10-21 17:53:58 -0700584 LIBS="$LIBS -lgen"
585 AC_DEFINE(HAVE_DIRNAME)
Tim Rice17b93e52001-10-23 22:36:54 -0700586 AC_CHECK_HEADERS(libgen.h)
Tim Rice13aae5e2001-10-21 17:53:58 -0700587 fi
588 ])
589])
590
Damien Millerad833b32000-08-23 10:46:23 +1000591dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +0000592AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +1000593dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000594AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +0000595AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +1000596dnl Checks for utmpx functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000597AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
andre2ff7b5d2000-06-03 14:57:40 +0000598AC_CHECK_FUNCS(setutxent utmpxname)
Damien Millercedfecc1999-11-15 14:36:53 +1100599
Damien Miller5fc85652000-07-09 23:53:07 +1000600AC_CHECK_FUNC(getuserattr,
601 [AC_DEFINE(HAVE_GETUSERATTR)],
602 [AC_CHECK_LIB(s, getuserattr, [LIBS="$LIBS -ls"; AC_DEFINE(HAVE_GETUSERATTR)])]
603)
604
Damien Miller04f80141999-11-19 15:32:34 +1100605AC_CHECK_FUNC(daemon,
606 [AC_DEFINE(HAVE_DAEMON)],
607 [AC_CHECK_LIB(bsd, daemon, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
608)
609
Damien Miller9fb07e42000-03-05 16:22:59 +1100610AC_CHECK_FUNC(getpagesize,
611 [AC_DEFINE(HAVE_GETPAGESIZE)],
612 [AC_CHECK_LIB(ucb, getpagesize, [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
613)
614
Damien Millercb170cb2000-07-01 16:52:55 +1000615# Check for broken snprintf
616if test "x$ac_cv_func_snprintf" = "xyes" ; then
617 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
618 AC_TRY_RUN(
619 [
620#include <stdio.h>
621int main(void){char b[5];snprintf(b,5,"123456789");return(b[4]!='\0');}
622 ],
623 [AC_MSG_RESULT(yes)],
624 [
625 AC_MSG_RESULT(no)
626 AC_DEFINE(BROKEN_SNPRINTF)
627 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
628 ]
629 )
630fi
631
Damien Miller606f8802000-09-16 15:39:56 +1100632AC_FUNC_GETPGRP
633
Damien Millera64b57a2001-01-17 10:44:13 +1100634# Check for PAM libs
Damien Miller7b22d652000-06-18 14:07:04 +1000635PAM_MSG="no"
Damien Millera22ba012000-03-02 23:09:20 +1100636AC_ARG_WITH(pam,
Damien Millera64b57a2001-01-17 10:44:13 +1100637 [ --with-pam Enable PAM support ],
Damien Millera22ba012000-03-02 23:09:20 +1100638 [
Damien Millera64b57a2001-01-17 10:44:13 +1100639 if test "x$withval" != "xno" ; then
640 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" ; then
641 AC_MSG_ERROR([PAM headers not found])
642 fi
643
644 AC_CHECK_LIB(dl, dlopen, , )
645 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
646 AC_CHECK_FUNCS(pam_getenvlist)
647
648 disable_shadow=yes
649 PAM_MSG="yes"
650
651 AC_DEFINE(USE_PAM)
Tim Rice4cec93f2002-02-26 08:40:48 -0800652 AC_SUBST(LIBPAM, ["-lpam -ldl"])
Damien Millera22ba012000-03-02 23:09:20 +1100653 fi
654 ]
655)
Damien Millera22ba012000-03-02 23:09:20 +1100656
Damien Millera64b57a2001-01-17 10:44:13 +1100657# Check for older PAM
658if test "x$PAM_MSG" = "xyes" ; then
Damien Millera22ba012000-03-02 23:09:20 +1100659 # Check PAM strerror arguments (old PAM)
660 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
661 AC_TRY_COMPILE(
662 [
Damien Miller81171112000-04-23 11:14:01 +1000663#include <stdlib.h>
664#include <security/pam_appl.h>
Damien Millera22ba012000-03-02 23:09:20 +1100665 ],
666 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
667 [AC_MSG_RESULT(no)],
668 [
669 AC_DEFINE(HAVE_OLD_PAM)
670 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +1000671 PAM_MSG="yes (old library)"
Damien Millera22ba012000-03-02 23:09:20 +1100672 ]
Damien Millera64b57a2001-01-17 10:44:13 +1100673 )
Damien Millera22ba012000-03-02 23:09:20 +1100674fi
675
676# The big search for OpenSSL
677AC_ARG_WITH(ssl-dir,
678 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
679 [
Ben Lindstrom23e13712000-10-29 22:49:19 +0000680 if test "x$withval" != "xno" ; then
Damien Millera22ba012000-03-02 23:09:20 +1100681 tryssldir=$withval
682 fi
683 ]
684)
685
686saved_LIBS="$LIBS"
Damien Millera1ad4802000-03-15 10:04:54 +1100687saved_LDFLAGS="$LDFLAGS"
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000688saved_CPPFLAGS="$CPPFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +1100689if test "x$prefix" != "xNONE" ; then
690 tryssldir="$tryssldir $prefix"
691fi
Damien Miller61e50f12000-05-08 20:49:37 +1000692AC_CACHE_CHECK([for OpenSSL directory], ac_cv_openssldir, [
Damien Millera1b61e12000-09-16 17:02:16 +1100693 for ssldir in $tryssldir "" /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do
Damien Millerccdefb62001-02-19 12:56:39 +1100694 CPPFLAGS="$saved_CPPFLAGS"
695 LDFLAGS="$saved_LDFLAGS"
Damien Miller3b512e12000-05-17 23:29:18 +1000696 LIBS="$saved_LIBS -lcrypto"
Damien Millerccdefb62001-02-19 12:56:39 +1100697
698 # Skip directories if they don't exist
699 if test ! -z "$ssldir" -a ! -d "$ssldir" ; then
700 continue;
701 fi
702 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
703 # Try to use $ssldir/lib if it exists, otherwise
704 # $ssldir
705 if test -d "$ssldir/lib" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000706 LDFLAGS="-L$ssldir/lib $saved_LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100707 if test ! -z "$need_dash_r" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000708 LDFLAGS="-R$ssldir/lib $LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100709 fi
710 else
Damien Millerb68af622001-03-28 21:05:26 +1000711 LDFLAGS="-L$ssldir $saved_LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100712 if test ! -z "$need_dash_r" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000713 LDFLAGS="-R$ssldir $LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100714 fi
715 fi
716 # Try to use $ssldir/include if it exists, otherwise
717 # $ssldir
718 if test -d "$ssldir/include" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000719 CPPFLAGS="-I$ssldir/include $saved_CPPFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100720 else
Damien Millerb68af622001-03-28 21:05:26 +1000721 CPPFLAGS="-I$ssldir $saved_CPPFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100722 fi
723 fi
Damien Miller61e50f12000-05-08 20:49:37 +1000724
Damien Miller3b512e12000-05-17 23:29:18 +1000725 # Basic test to check for compatible version and correct linking
726 # *does not* test for RSA - that comes later.
727 AC_TRY_RUN(
728 [
Damien Millere59ce622000-05-01 20:54:17 +1000729#include <string.h>
730#include <openssl/rand.h>
Damien Miller81171112000-04-23 11:14:01 +1000731int main(void)
732{
Damien Miller3b512e12000-05-17 23:29:18 +1000733 char a[2048];
734 memset(a, 0, sizeof(a));
Damien Miller81171112000-04-23 11:14:01 +1000735 RAND_add(a, sizeof(a), sizeof(a));
Damien Miller3b512e12000-05-17 23:29:18 +1000736 return(RAND_status() <= 0);
Damien Miller81171112000-04-23 11:14:01 +1000737}
Damien Miller3b512e12000-05-17 23:29:18 +1000738 ],
739 [
740 found_crypto=1
741 break;
742 ], []
743 )
Damien Miller61e50f12000-05-08 20:49:37 +1000744
745 if test ! -z "$found_crypto" ; then
746 break;
747 fi
Damien Millerb85dcad2000-03-11 11:37:00 +1100748 done
749
Damien Miller61e50f12000-05-08 20:49:37 +1000750 if test -z "$found_crypto" ; then
Damien Miller5dfe9762001-02-16 12:05:39 +1100751 AC_MSG_ERROR([Could not find working OpenSSL library, please install or check config.log])
Damien Millerb85dcad2000-03-11 11:37:00 +1100752 fi
Damien Miller61e50f12000-05-08 20:49:37 +1000753 if test -z "$ssldir" ; then
754 ssldir="(system)"
755 fi
Damien Millera22ba012000-03-02 23:09:20 +1100756
Damien Miller61e50f12000-05-08 20:49:37 +1000757 ac_cv_openssldir=$ssldir
758])
759
Damien Milleredb82922000-06-20 13:25:52 +1000760if (test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)") ; then
Damien Miller61e50f12000-05-08 20:49:37 +1000761 AC_DEFINE(HAVE_OPENSSL)
762 dnl Need to recover ssldir - test above runs in subshell
763 ssldir=$ac_cv_openssldir
Damien Millera64b57a2001-01-17 10:44:13 +1100764 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
Damien Millerccdefb62001-02-19 12:56:39 +1100765 # Try to use $ssldir/lib if it exists, otherwise
766 # $ssldir
767 if test -d "$ssldir/lib" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000768 LDFLAGS="-L$ssldir/lib $saved_LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100769 if test ! -z "$need_dash_r" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000770 LDFLAGS="-R$ssldir/lib $LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100771 fi
772 else
Damien Millerb68af622001-03-28 21:05:26 +1000773 LDFLAGS="-L$ssldir $saved_LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100774 if test ! -z "$need_dash_r" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000775 LDFLAGS="-R$ssldir $LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100776 fi
Damien Millera64b57a2001-01-17 10:44:13 +1100777 fi
Damien Millerccdefb62001-02-19 12:56:39 +1100778 # Try to use $ssldir/include if it exists, otherwise
779 # $ssldir
780 if test -d "$ssldir/include" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000781 CPPFLAGS="-I$ssldir/include $saved_CPPFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100782 else
Damien Millerb68af622001-03-28 21:05:26 +1000783 CPPFLAGS="-I$ssldir $saved_CPPFLAGS"
Damien Millera64b57a2001-01-17 10:44:13 +1100784 fi
Damien Miller29ea30d2000-03-17 10:54:15 +1100785 fi
Damien Millera22ba012000-03-02 23:09:20 +1100786fi
Damien Miller3b512e12000-05-17 23:29:18 +1000787LIBS="$saved_LIBS -lcrypto"
Damien Miller61e50f12000-05-08 20:49:37 +1000788
Damien Miller3b512e12000-05-17 23:29:18 +1000789# Now test RSA support
790saved_LIBS="$LIBS"
791AC_MSG_CHECKING([for RSA support])
792for WANTS_RSAREF in "" 1 ; do
793 if test -z "$WANTS_RSAREF" ; then
794 LIBS="$saved_LIBS"
795 else
796 LIBS="$saved_LIBS -lRSAglue -lrsaref"
797 fi
798 AC_TRY_RUN([
799#include <string.h>
800#include <openssl/rand.h>
801#include <openssl/rsa.h>
802#include <openssl/bn.h>
803#include <openssl/sha.h>
804int main(void)
805{
806 int num; RSA *key; static unsigned char p_in[] = "blahblah";
807 unsigned char c[256], p[256];
808 memset(c, 0, sizeof(c)); RAND_add(c, sizeof(c), sizeof(c));
809 if ((key=RSA_generate_key(512, 3, NULL, NULL))==NULL) return(1);
810 num = RSA_public_encrypt(sizeof(p_in) - 1, p_in, c, key, RSA_PKCS1_PADDING);
811 return(-1 == RSA_private_decrypt(num, c, p, key, RSA_PKCS1_PADDING));
812}
813 ],
814 [
815 rsa_works=1
816 break;
817 ], [])
818done
Ben Lindstrom23fec142001-06-09 02:16:28 +0000819LIBS="$saved_LIBS"
Damien Miller3b512e12000-05-17 23:29:18 +1000820
821if test ! -z "$no_rsa" ; then
822 AC_MSG_RESULT(disabled)
Damien Miller7b22d652000-06-18 14:07:04 +1000823 RSA_MSG="disabled"
Damien Miller3b512e12000-05-17 23:29:18 +1000824else
825 if test -z "$rsa_works" ; then
826 AC_MSG_WARN([*** No RSA support found *** ])
Damien Miller7b22d652000-06-18 14:07:04 +1000827 RSA_MSG="no"
Damien Miller3b512e12000-05-17 23:29:18 +1000828 else
829 if test -z "$WANTS_RSAREF" ; then
830 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +1000831 RSA_MSG="yes"
Damien Miller3b512e12000-05-17 23:29:18 +1000832 else
Damien Miller7b22d652000-06-18 14:07:04 +1000833 RSA_MSG="yes (using RSAref)"
Damien Miller3b512e12000-05-17 23:29:18 +1000834 AC_MSG_RESULT(using RSAref)
Ben Lindstrom23fec142001-06-09 02:16:28 +0000835 LIBS="$LIBS -lcrypto -lRSAglue -lrsaref"
Damien Miller3b512e12000-05-17 23:29:18 +1000836 fi
837 fi
838fi
Damien Millera22ba012000-03-02 23:09:20 +1100839
Damien Millerec932372002-01-22 22:16:03 +1100840# Sanity check OpenSSL headers
841AC_MSG_CHECKING([whether OpenSSL's headers match the library])
842AC_TRY_RUN(
843 [
844#include <string.h>
845#include <openssl/opensslv.h>
846int main(void) { return(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
847 ],
848 [
849 AC_MSG_RESULT(yes)
850 ],
851 [
852 AC_MSG_RESULT(no)
853 AC_MSG_ERROR(Your OpenSSL headers do not match your library)
854 ]
855)
856
Damien Millera64b57a2001-01-17 10:44:13 +1100857# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
858# version in OpenSSL. Skip this for PAM
859if test "x$PAM_MSG" = "xno" -a "x$check_for_libcrypt_later" = "x1"; then
Damien Miller95aa2d62001-03-01 09:16:11 +1100860 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
Damien Millera64b57a2001-01-17 10:44:13 +1100861fi
862
Damien Miller6c21c512002-01-22 21:57:53 +1100863
864### Configure cryptographic random number support
865
866# Check wheter OpenSSL seeds itself
867AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
868AC_TRY_RUN(
869 [
870#include <string.h>
871#include <openssl/rand.h>
872int main(void) { return(RAND_status() == 1 ? 0 : 1); }
873 ],
874 [
875 OPENSSL_SEEDS_ITSELF=yes
876 AC_MSG_RESULT(yes)
877 ],
878 [
879 AC_MSG_RESULT(no)
880 # Default to use of the rand helper if OpenSSL doesn't
881 # seed itself
882 USE_RAND_HELPER=yes
883 ]
884)
885
886
887# Do we want to force the use of the rand helper?
888AC_ARG_WITH(rand-helper,
889 [ --with-rand-helper Use subprocess to gather strong randomness ],
890 [
891 if test "x$withval" = "xno" ; then
892 # Force use of OpenSSL's internal RNG, even if
893 # the previous test showed it to be unseeded.
894 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
895 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
896 OPENSSL_SEEDS_ITSELF=yes
897 USE_RAND_HELPER=""
898 fi
899 else
900 USE_RAND_HELPER=yes
901 fi
902 ],
903)
904
905# Which randomness source do we use?
906if test ! -z "$OPENSSL_SEEDS_ITSELF" -a -z "$USE_RAND_HELPER" ; then
907 # OpenSSL only
908 AC_DEFINE(OPENSSL_PRNG_ONLY)
909 RAND_MSG="OpenSSL internal ONLY"
910 INSTALL_SSH_RAND_HELPER=""
Tim Rice1e2c6002002-01-30 22:14:03 -0800911elif test ! -z "$USE_RAND_HELPER" ; then
912 # install rand helper
Damien Miller6c21c512002-01-22 21:57:53 +1100913 RAND_MSG="ssh-rand-helper"
914 INSTALL_SSH_RAND_HELPER="yes"
915fi
916AC_SUBST(INSTALL_SSH_RAND_HELPER)
917
918### Configuration of ssh-rand-helper
919
920# PRNGD TCP socket
921AC_ARG_WITH(prngd-port,
922 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
923 [
Damien Millere996d722002-01-23 11:20:59 +1100924 case "$withval" in
925 no)
926 withval=""
927 ;;
928 [[0-9]]*)
929 ;;
930 *)
931 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
932 ;;
933 esac
934 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +1100935 PRNGD_PORT="$withval"
936 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT)
937 fi
938 ]
939)
940
941# PRNGD Unix domain socket
942AC_ARG_WITH(prngd-socket,
943 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
944 [
Damien Millere996d722002-01-23 11:20:59 +1100945 case "$withval" in
946 yes)
Damien Miller6c21c512002-01-22 21:57:53 +1100947 withval="/var/run/egd-pool"
Damien Millere996d722002-01-23 11:20:59 +1100948 ;;
949 no)
950 withval=""
951 ;;
952 /*)
953 ;;
954 *)
955 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
956 ;;
957 esac
958
959 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +1100960 if test ! -z "$PRNGD_PORT" ; then
961 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
962 fi
Damien Miller6385ba02002-01-23 08:12:36 +1100963 if test ! -r "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +1100964 AC_MSG_WARN(Entropy socket is not readable)
965 fi
966 PRNGD_SOCKET="$withval"
967 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
968 fi
Tim Rice4cec93f2002-02-26 08:40:48 -0800969 ],
970 [
971 # Check for existing socket only if we don't have a random device already
972 if test "$USE_RAND_HELPER" = yes ; then
973 AC_MSG_CHECKING(for PRNGD/EGD socket)
974 # Insert other locations here
975 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
976 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
977 PRNGD_SOCKET="$sock"
978 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
979 break;
980 fi
981 done
982 if test ! -z "$PRNGD_SOCKET" ; then
983 AC_MSG_RESULT($PRNGD_SOCKET)
984 else
985 AC_MSG_RESULT(not found)
986 fi
987 fi
Damien Miller6c21c512002-01-22 21:57:53 +1100988 ]
989)
990
991# Change default command timeout for hashing entropy source
992entropy_timeout=200
993AC_ARG_WITH(entropy-timeout,
994 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
995 [
996 if test "x$withval" != "xno" ; then
997 entropy_timeout=$withval
998 fi
999 ]
1000)
1001
1002AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1003
1004# These programs are used by the command hashing source to gather entropy
1005OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
1006OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
1007OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
1008OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
1009OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
1010OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
1011OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
1012OSSH_PATH_ENTROPY_PROG(PROG_W, w)
1013OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
1014OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
1015OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
1016OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
1017OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
1018OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
1019OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
1020OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
1021
1022# Where does ssh-rand-helper get its randomness from?
1023INSTALL_SSH_PRNG_CMDS=""
1024if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
1025 if test ! -z "$PRNGD_PORT" ; then
1026 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
1027 elif test ! -z "$PRNGD_SOCKET" ; then
1028 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
1029 else
1030 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
1031 RAND_HELPER_CMDHASH=yes
1032 INSTALL_SSH_PRNG_CMDS="yes"
1033 fi
1034fi
1035AC_SUBST(INSTALL_SSH_PRNG_CMDS)
1036
1037
Ben Lindstromb5628642000-10-18 00:02:25 +00001038# Cheap hack to ensure NEWS-OS libraries are arranged right.
1039if test ! -z "$SONY" ; then
1040 LIBS="$LIBS -liberty";
1041fi
1042
Damien Millera22ba012000-03-02 23:09:20 +11001043# Checks for data types
Damien Millere0f45742000-01-18 09:12:06 +11001044AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +11001045AC_CHECK_SIZEOF(short int, 2)
1046AC_CHECK_SIZEOF(int, 4)
1047AC_CHECK_SIZEOF(long int, 4)
1048AC_CHECK_SIZEOF(long long int, 8)
1049
Damien Millera22ba012000-03-02 23:09:20 +11001050# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11001051AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
1052 AC_TRY_COMPILE(
1053 [ #include <sys/types.h> ],
1054 [ u_int a; a = 1;],
1055 [ ac_cv_have_u_int="yes" ],
1056 [ ac_cv_have_u_int="no" ]
1057 )
1058])
1059if test "x$ac_cv_have_u_int" = "xyes" ; then
1060 AC_DEFINE(HAVE_U_INT)
1061 have_u_int=1
1062fi
1063
Damien Miller61e50f12000-05-08 20:49:37 +10001064AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
1065 AC_TRY_COMPILE(
1066 [ #include <sys/types.h> ],
1067 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
1068 [ ac_cv_have_intxx_t="yes" ],
1069 [ ac_cv_have_intxx_t="no" ]
1070 )
1071])
1072if test "x$ac_cv_have_intxx_t" = "xyes" ; then
1073 AC_DEFINE(HAVE_INTXX_T)
1074 have_intxx_t=1
1075fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001076
1077if (test -z "$have_intxx_t" && \
1078 test "x$ac_cv_header_stdint_h" = "xyes")
1079then
1080 AC_MSG_CHECKING([for intXX_t types in stdint.h])
1081 AC_TRY_COMPILE(
1082 [ #include <stdint.h> ],
1083 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
1084 [
1085 AC_DEFINE(HAVE_INTXX_T)
1086 AC_MSG_RESULT(yes)
1087 ],
1088 [ AC_MSG_RESULT(no) ]
1089 )
1090fi
1091
Damien Miller578783e2000-09-23 14:12:24 +11001092AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
1093 AC_TRY_COMPILE(
1094 [ #include <sys/types.h> ],
1095 [ int64_t a; a = 1;],
1096 [ ac_cv_have_int64_t="yes" ],
1097 [ ac_cv_have_int64_t="no" ]
1098 )
1099])
1100if test "x$ac_cv_have_int64_t" = "xyes" ; then
1101 AC_DEFINE(HAVE_INT64_T)
1102 have_int64_t=1
1103fi
1104
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001105if test -z "$have_int64_t" ; then
1106 AC_MSG_CHECKING([for int64_t type in sys/socket.h])
1107 AC_TRY_COMPILE(
1108 [ #include <sys/socket.h> ],
1109 [ int64_t a; a = 1],
1110 [
1111 AC_DEFINE(HAVE_INT64_T)
1112 AC_MSG_RESULT(yes)
1113 ],
1114 [ AC_MSG_RESULT(no) ]
1115 )
1116fi
1117
Tim Rice4cec93f2002-02-26 08:40:48 -08001118if test -z "$have_int64_t" ; then
1119 AC_MSG_CHECKING([for int64_t type in sys/bitypes.h])
1120 AC_TRY_COMPILE(
1121 [ #include <sys/bitypes.h> ],
1122 [ int64_t a; a = 1],
1123 [
1124 AC_DEFINE(HAVE_INT64_T)
1125 AC_MSG_RESULT(yes)
1126 ],
1127 [ AC_MSG_RESULT(no) ]
1128 )
1129fi
1130
Damien Miller61e50f12000-05-08 20:49:37 +10001131AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
1132 AC_TRY_COMPILE(
1133 [ #include <sys/types.h> ],
1134 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
1135 [ ac_cv_have_u_intxx_t="yes" ],
1136 [ ac_cv_have_u_intxx_t="no" ]
1137 )
1138])
1139if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
1140 AC_DEFINE(HAVE_U_INTXX_T)
1141 have_u_intxx_t=1
1142fi
Damien Millerc6398ef1999-11-20 12:18:40 +11001143
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001144if test -z "$have_u_intxx_t" ; then
1145 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
1146 AC_TRY_COMPILE(
1147 [ #include <sys/socket.h> ],
1148 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
1149 [
1150 AC_DEFINE(HAVE_U_INTXX_T)
1151 AC_MSG_RESULT(yes)
1152 ],
1153 [ AC_MSG_RESULT(no) ]
1154 )
1155fi
1156
Damien Miller578783e2000-09-23 14:12:24 +11001157AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
1158 AC_TRY_COMPILE(
1159 [ #include <sys/types.h> ],
1160 [ u_int64_t a; a = 1;],
1161 [ ac_cv_have_u_int64_t="yes" ],
1162 [ ac_cv_have_u_int64_t="no" ]
1163 )
1164])
1165if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
1166 AC_DEFINE(HAVE_U_INT64_T)
1167 have_u_int64_t=1
1168fi
1169
Tim Rice4cec93f2002-02-26 08:40:48 -08001170if test -z "$have_u_int64_t" ; then
1171 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
1172 AC_TRY_COMPILE(
1173 [ #include <sys/bitypes.h> ],
1174 [ u_int64_t a; a = 1],
1175 [
1176 AC_DEFINE(HAVE_U_INT64_T)
1177 AC_MSG_RESULT(yes)
1178 ],
1179 [ AC_MSG_RESULT(no) ]
1180 )
1181fi
1182
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001183if test -z "$have_u_intxx_t" ; then
1184 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
1185 AC_TRY_COMPILE(
1186 [
1187#include <sys/types.h>
1188 ],
1189 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
1190 [ ac_cv_have_uintxx_t="yes" ],
1191 [ ac_cv_have_uintxx_t="no" ]
1192 )
1193 ])
1194 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
1195 AC_DEFINE(HAVE_UINTXX_T)
1196 fi
1197fi
1198
1199if test -z "$have_uintxx_t" ; then
1200 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
1201 AC_TRY_COMPILE(
1202 [ #include <stdint.h> ],
1203 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
1204 [
1205 AC_DEFINE(HAVE_UINTXX_T)
1206 AC_MSG_RESULT(yes)
1207 ],
1208 [ AC_MSG_RESULT(no) ]
1209 )
1210fi
1211
Damien Milleredb82922000-06-20 13:25:52 +10001212if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
1213 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11001214then
1215 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
1216 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +10001217 [
1218#include <sys/bitypes.h>
1219 ],
Damien Millerb29ea912000-01-15 14:12:03 +11001220 [
Damien Miller70494d12000-04-03 15:57:06 +10001221 int8_t a; int16_t b; int32_t c;
1222 u_int8_t e; u_int16_t f; u_int32_t g;
1223 a = b = c = e = f = g = 1;
Damien Millerb29ea912000-01-15 14:12:03 +11001224 ],
1225 [
1226 AC_DEFINE(HAVE_U_INTXX_T)
1227 AC_DEFINE(HAVE_INTXX_T)
1228 AC_MSG_RESULT(yes)
1229 ],
1230 [AC_MSG_RESULT(no)]
1231 )
1232fi
1233
Damien Miller58be7382001-09-15 21:31:54 +10001234
1235AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
1236 AC_TRY_COMPILE(
1237 [
1238#include <sys/types.h>
1239 ],
1240 [ u_char foo; foo = 125; ],
1241 [ ac_cv_have_u_char="yes" ],
1242 [ ac_cv_have_u_char="no" ]
1243 )
1244])
1245if test "x$ac_cv_have_u_char" = "xyes" ; then
1246 AC_DEFINE(HAVE_U_CHAR)
1247fi
1248
Tim Rice13aae5e2001-10-21 17:53:58 -07001249TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11001250
Tim Rice4cec93f2002-02-26 08:40:48 -08001251AC_CHECK_TYPES(sig_atomic_t)
1252
Damien Miller61e50f12000-05-08 20:49:37 +10001253AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
1254 AC_TRY_COMPILE(
1255 [
1256#include <sys/types.h>
1257 ],
1258 [ size_t foo; foo = 1235; ],
1259 [ ac_cv_have_size_t="yes" ],
1260 [ ac_cv_have_size_t="no" ]
1261 )
1262])
1263if test "x$ac_cv_have_size_t" = "xyes" ; then
1264 AC_DEFINE(HAVE_SIZE_T)
1265fi
Damien Miller95058511999-12-29 10:36:45 +11001266
Damien Miller615f9392000-05-17 22:53:33 +10001267AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
1268 AC_TRY_COMPILE(
1269 [
1270#include <sys/types.h>
1271 ],
1272 [ ssize_t foo; foo = 1235; ],
1273 [ ac_cv_have_ssize_t="yes" ],
1274 [ ac_cv_have_ssize_t="no" ]
1275 )
1276])
1277if test "x$ac_cv_have_ssize_t" = "xyes" ; then
1278 AC_DEFINE(HAVE_SSIZE_T)
1279fi
1280
Ben Lindstrom0d5af602001-01-09 00:50:29 +00001281AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
1282 AC_TRY_COMPILE(
1283 [
1284#include <time.h>
1285 ],
1286 [ clock_t foo; foo = 1235; ],
1287 [ ac_cv_have_clock_t="yes" ],
1288 [ ac_cv_have_clock_t="no" ]
1289 )
1290])
1291if test "x$ac_cv_have_clock_t" = "xyes" ; then
1292 AC_DEFINE(HAVE_CLOCK_T)
1293fi
1294
Damien Millerb54b40e2000-06-23 08:23:34 +10001295AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
1296 AC_TRY_COMPILE(
1297 [
1298#include <sys/types.h>
1299#include <sys/socket.h>
1300 ],
1301 [ sa_family_t foo; foo = 1235; ],
1302 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +11001303 [ AC_TRY_COMPILE(
1304 [
1305#include <sys/types.h>
1306#include <sys/socket.h>
1307#include <netinet/in.h>
1308 ],
1309 [ sa_family_t foo; foo = 1235; ],
1310 [ ac_cv_have_sa_family_t="yes" ],
1311
Damien Millerb54b40e2000-06-23 08:23:34 +10001312 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +11001313 )]
Damien Millerb54b40e2000-06-23 08:23:34 +10001314 )
1315])
1316if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
1317 AC_DEFINE(HAVE_SA_FAMILY_T)
1318fi
1319
Damien Miller0f91b4e2000-06-18 15:43:25 +10001320AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
1321 AC_TRY_COMPILE(
1322 [
1323#include <sys/types.h>
1324 ],
1325 [ pid_t foo; foo = 1235; ],
1326 [ ac_cv_have_pid_t="yes" ],
1327 [ ac_cv_have_pid_t="no" ]
1328 )
1329])
1330if test "x$ac_cv_have_pid_t" = "xyes" ; then
1331 AC_DEFINE(HAVE_PID_T)
1332fi
1333
1334AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
1335 AC_TRY_COMPILE(
1336 [
1337#include <sys/types.h>
1338 ],
1339 [ mode_t foo; foo = 1235; ],
1340 [ ac_cv_have_mode_t="yes" ],
1341 [ ac_cv_have_mode_t="no" ]
1342 )
1343])
1344if test "x$ac_cv_have_mode_t" = "xyes" ; then
1345 AC_DEFINE(HAVE_MODE_T)
1346fi
1347
Damien Miller61e50f12000-05-08 20:49:37 +10001348
1349AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
1350 AC_TRY_COMPILE(
1351 [
Damien Miller81171112000-04-23 11:14:01 +10001352#include <sys/types.h>
1353#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001354 ],
1355 [ struct sockaddr_storage s; ],
1356 [ ac_cv_have_struct_sockaddr_storage="yes" ],
1357 [ ac_cv_have_struct_sockaddr_storage="no" ]
1358 )
1359])
1360if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
1361 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)
1362fi
Damien Miller34132e52000-01-14 15:45:46 +11001363
Damien Miller61e50f12000-05-08 20:49:37 +10001364AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
1365 AC_TRY_COMPILE(
1366 [
Damien Miller7b22d652000-06-18 14:07:04 +10001367#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001368#include <netinet/in.h>
1369 ],
1370 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
1371 [ ac_cv_have_struct_sockaddr_in6="yes" ],
1372 [ ac_cv_have_struct_sockaddr_in6="no" ]
1373 )
1374])
1375if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
1376 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)
1377fi
Damien Miller34132e52000-01-14 15:45:46 +11001378
Damien Miller61e50f12000-05-08 20:49:37 +10001379AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
1380 AC_TRY_COMPILE(
1381 [
Damien Miller7b22d652000-06-18 14:07:04 +10001382#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001383#include <netinet/in.h>
1384 ],
1385 [ struct in6_addr s; s.s6_addr[0] = 0; ],
1386 [ ac_cv_have_struct_in6_addr="yes" ],
1387 [ ac_cv_have_struct_in6_addr="no" ]
1388 )
1389])
1390if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
1391 AC_DEFINE(HAVE_STRUCT_IN6_ADDR)
1392fi
Damien Miller34132e52000-01-14 15:45:46 +11001393
Damien Miller61e50f12000-05-08 20:49:37 +10001394AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
1395 AC_TRY_COMPILE(
1396 [
Damien Miller81171112000-04-23 11:14:01 +10001397#include <sys/types.h>
1398#include <sys/socket.h>
1399#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001400 ],
1401 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
1402 [ ac_cv_have_struct_addrinfo="yes" ],
1403 [ ac_cv_have_struct_addrinfo="no" ]
1404 )
1405])
1406if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
1407 AC_DEFINE(HAVE_STRUCT_ADDRINFO)
1408fi
1409
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001410AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
1411 AC_TRY_COMPILE(
1412 [ #include <sys/time.h> ],
1413 [ struct timeval tv; tv.tv_sec = 1;],
1414 [ ac_cv_have_struct_timeval="yes" ],
1415 [ ac_cv_have_struct_timeval="no" ]
1416 )
1417])
1418if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
1419 AC_DEFINE(HAVE_STRUCT_TIMEVAL)
1420 have_struct_timeval=1
1421fi
1422
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001423# If we don't have int64_t then we can't compile sftp-server. So don't
1424# even attempt to do it.
1425if test "x$ac_cv_have_int64_t" = "xno" -a \
1426 "x$ac_cv_sizeof_long_int" != "x8" -a \
1427 "x$ac_cv_sizeof_long_long_int" = "x0" ; then
1428 NO_SFTP='#'
Tim Ricebee3f222001-03-11 17:32:12 -08001429else
1430dnl test snprintf (broken on SCO w/gcc)
1431 AC_TRY_RUN(
1432 [
1433#include <stdio.h>
1434#include <string.h>
1435#ifdef HAVE_SNPRINTF
1436main()
1437{
1438 char buf[50];
1439 char expected_out[50];
1440 int mazsize = 50 ;
1441#if (SIZEOF_LONG_INT == 8)
1442 long int num = 0x7fffffffffffffff;
1443#else
Kevin Steves6482ec82001-07-15 02:09:28 +00001444 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08001445#endif
1446 strcpy(expected_out, "9223372036854775807");
1447 snprintf(buf, mazsize, "%lld", num);
1448 if(strcmp(buf, expected_out) != 0)
1449 exit(1);
1450 exit(0);
1451}
1452#else
1453main() { exit(0); }
1454#endif
1455 ], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ]
1456 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001457fi
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001458AC_SUBST(NO_SFTP)
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001459
Damien Miller78315eb2000-09-29 23:01:36 +11001460dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10001461OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
1462OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
1463OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
1464OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
1465OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10001466OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001467OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
1468OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10001469OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001470OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
1471OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
1472OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
1473OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00001474OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
1475OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
1476OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
1477OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Tim Rice13aae5e2001-10-21 17:53:58 -07001478
1479AC_CHECK_MEMBERS([struct stat.st_blksize])
andre2ff7b5d2000-06-03 14:57:40 +00001480
Damien Miller61e50f12000-05-08 20:49:37 +10001481AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
1482 ac_cv_have_ss_family_in_struct_ss, [
1483 AC_TRY_COMPILE(
1484 [
Damien Miller81171112000-04-23 11:14:01 +10001485#include <sys/types.h>
1486#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001487 ],
1488 [ struct sockaddr_storage s; s.ss_family = 1; ],
1489 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
1490 [ ac_cv_have_ss_family_in_struct_ss="no" ],
1491 )
1492])
1493if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
1494 AC_DEFINE(HAVE_SS_FAMILY_IN_SS)
1495fi
1496
Damien Miller61e50f12000-05-08 20:49:37 +10001497AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
1498 ac_cv_have___ss_family_in_struct_ss, [
1499 AC_TRY_COMPILE(
1500 [
Damien Miller81171112000-04-23 11:14:01 +10001501#include <sys/types.h>
1502#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001503 ],
1504 [ struct sockaddr_storage s; s.__ss_family = 1; ],
1505 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
1506 [ ac_cv_have___ss_family_in_struct_ss="no" ]
1507 )
1508])
1509if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
1510 AC_DEFINE(HAVE___SS_FAMILY_IN_SS)
1511fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11001512
Damien Millerad833b32000-08-23 10:46:23 +10001513AC_CACHE_CHECK([for pw_class field in struct passwd],
1514 ac_cv_have_pw_class_in_struct_passwd, [
1515 AC_TRY_COMPILE(
1516 [
Damien Millerad833b32000-08-23 10:46:23 +10001517#include <pwd.h>
1518 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00001519 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10001520 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
1521 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
1522 )
1523])
1524if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
1525 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD)
1526fi
1527
Kevin Steves82456952001-06-22 21:14:18 +00001528AC_CACHE_CHECK([for pw_expire field in struct passwd],
1529 ac_cv_have_pw_expire_in_struct_passwd, [
1530 AC_TRY_COMPILE(
1531 [
1532#include <pwd.h>
1533 ],
1534 [ struct passwd p; p.pw_expire = 0; ],
1535 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
1536 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
1537 )
1538])
1539if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
1540 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD)
1541fi
1542
1543AC_CACHE_CHECK([for pw_change field in struct passwd],
1544 ac_cv_have_pw_change_in_struct_passwd, [
1545 AC_TRY_COMPILE(
1546 [
1547#include <pwd.h>
1548 ],
1549 [ struct passwd p; p.pw_change = 0; ],
1550 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
1551 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
1552 )
1553])
1554if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
1555 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD)
1556fi
Damien Miller61e50f12000-05-08 20:49:37 +10001557
1558AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
1559 AC_TRY_LINK([],
1560 [ extern char *__progname; printf("%s", __progname); ],
1561 [ ac_cv_libc_defines___progname="yes" ],
1562 [ ac_cv_libc_defines___progname="no" ]
1563 )
1564])
1565if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
1566 AC_DEFINE(HAVE___PROGNAME)
1567fi
1568
Damien Miller4f8e6692001-07-14 13:22:53 +10001569AC_CACHE_CHECK([whether getopt has optreset support],
1570 ac_cv_have_getopt_optreset, [
1571 AC_TRY_LINK(
1572 [
1573#include <getopt.h>
1574 ],
1575 [ extern int optreset; optreset = 0; ],
1576 [ ac_cv_have_getopt_optreset="yes" ],
1577 [ ac_cv_have_getopt_optreset="no" ]
1578 )
1579])
1580if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
1581 AC_DEFINE(HAVE_GETOPT_OPTRESET)
1582fi
Damien Millera22ba012000-03-02 23:09:20 +11001583
Damien Millerecbb26d2000-07-15 14:59:14 +10001584AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
1585 AC_TRY_LINK([],
1586 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
1587 [ ac_cv_libc_defines_sys_errlist="yes" ],
1588 [ ac_cv_libc_defines_sys_errlist="no" ]
1589 )
1590])
1591if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
1592 AC_DEFINE(HAVE_SYS_ERRLIST)
1593fi
1594
1595
Damien Miller11fa2cc2000-08-16 10:35:58 +10001596AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
1597 AC_TRY_LINK([],
1598 [ extern int sys_nerr; printf("%i", sys_nerr);],
1599 [ ac_cv_libc_defines_sys_nerr="yes" ],
1600 [ ac_cv_libc_defines_sys_nerr="no" ]
1601 )
1602])
1603if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
1604 AC_DEFINE(HAVE_SYS_NERR)
1605fi
1606
1607
Damien Millerc79bc0d2001-03-28 13:03:42 +10001608# Check whether user wants Kerberos support
Damien Miller85de5802001-09-18 14:01:11 +10001609SCARD_MSG="no"
1610AC_ARG_WITH(smartcard,
1611 [ --with-smartcard Enable smartcard support],
1612 [
1613 if test "x$withval" != "xno" ; then
1614 if test "x$withval" != "xyes" ; then
1615 CPPFLAGS="$CPPFLAGS -I${withval}"
1616 LDFLAGS="$LDFLAGS -L${withval}"
1617 if test ! -z "$need_dash_r" ; then
1618 LDFLAGS="$LDFLAGS -R${withval}"
1619 fi
1620 if test ! -z "$blibpath" ; then
1621 blibpath="$blibpath:${withval}"
1622 fi
1623 fi
1624 AC_CHECK_HEADERS(sectok.h)
1625 if test "$ac_cv_header_sectok_h" != yes; then
1626 AC_MSG_ERROR(Can't find sectok.h)
1627 fi
1628 AC_CHECK_LIB(sectok, sectok_open)
1629 if test "$ac_cv_lib_sectok_sectok_open" != yes; then
1630 AC_MSG_ERROR(Can't find libsectok)
1631 fi
1632 AC_DEFINE(SMARTCARD)
1633 SCARD_MSG="yes"
1634 fi
1635 ]
1636)
1637
1638# Check whether user wants Kerberos support
Damien Millerc79bc0d2001-03-28 13:03:42 +10001639KRB4_MSG="no"
1640AC_ARG_WITH(kerberos4,
1641 [ --with-kerberos4=PATH Enable Kerberos 4 support],
1642 [
1643 if test "x$withval" != "xno" ; then
Damien Millerc79bc0d2001-03-28 13:03:42 +10001644 if test "x$withval" != "xyes" ; then
1645 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1646 LDFLAGS="$LDFLAGS -L${withval}/lib"
1647 if test ! -z "$need_dash_r" ; then
1648 LDFLAGS="$LDFLAGS -R${withval}/lib"
1649 fi
1650 if test ! -z "$blibpath" ; then
1651 blibpath="$blibpath:${withval}/lib"
1652 fi
1653 else
1654 if test -d /usr/include/kerberosIV ; then
1655 CPPFLAGS="$CPPFLAGS -I/usr/include/kerberosIV"
1656 fi
1657 fi
1658
1659 AC_CHECK_HEADERS(krb.h)
Damien Millerc79bc0d2001-03-28 13:03:42 +10001660 if test "$ac_cv_header_krb_h" != yes; then
1661 AC_MSG_WARN([Cannot find krb.h, build may fail])
1662 fi
Damien Miller98344742001-03-28 14:37:06 +10001663 AC_CHECK_LIB(krb, main)
Damien Millerc79bc0d2001-03-28 13:03:42 +10001664 if test "$ac_cv_lib_krb_main" != yes; then
Damien Miller98344742001-03-28 14:37:06 +10001665 AC_CHECK_LIB(krb4, main)
1666 if test "$ac_cv_lib_krb4_main" != yes; then
1667 AC_MSG_WARN([Cannot find libkrb nor libkrb4, build may fail])
1668 else
1669 KLIBS="-lkrb4"
1670 fi
1671 else
1672 KLIBS="-lkrb"
Damien Millerc79bc0d2001-03-28 13:03:42 +10001673 fi
Damien Miller98344742001-03-28 14:37:06 +10001674 AC_CHECK_LIB(des, des_cbc_encrypt)
1675 if test "$ac_cv_lib_des_des_cbc_encrypt" != yes; then
1676 AC_CHECK_LIB(des425, des_cbc_encrypt)
1677 if test "$ac_cv_lib_des425_des_cbc_encrypt" != yes; then
1678 AC_MSG_WARN([Cannot find libdes nor libdes425, build may fail])
1679 else
1680 KLIBS="-ldes425"
1681 fi
1682 else
1683 KLIBS="-ldes"
1684 fi
Damien Millerc79bc0d2001-03-28 13:03:42 +10001685 AC_CHECK_LIB(resolv, dn_expand, , )
1686 KRB4=yes
1687 KRB4_MSG="yes"
1688 AC_DEFINE(KRB4)
1689 fi
1690 ]
1691)
1692
1693# Check whether user wants AFS support
1694AFS_MSG="no"
1695AC_ARG_WITH(afs,
1696 [ --with-afs=PATH Enable AFS support],
1697 [
1698 if test "x$withval" != "xno" ; then
1699
1700 if test "x$withval" != "xyes" ; then
1701 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1702 LDFLAGS="$LDFLAGS -L${withval}/lib"
1703 fi
1704
1705 if test -z "$KRB4" ; then
1706 AC_MSG_WARN([AFS requires Kerberos IV support, build may fail])
1707 fi
1708
1709 LIBS="-lkafs $LIBS"
1710 if test ! -z "$AFS_LIBS" ; then
1711 LIBS="$LIBS $AFS_LIBS"
1712 fi
1713 AC_DEFINE(AFS)
1714 AFS_MSG="yes"
1715 fi
1716 ]
1717)
1718LIBS="$LIBS $KLIBS"
1719
Damien Millera22ba012000-03-02 23:09:20 +11001720# Looking for programs, paths and files
1721AC_ARG_WITH(rsh,
1722 [ --with-rsh=PATH Specify path to remote shell program ],
1723 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001724 if test "x$withval" != "$no" ; then
Damien Miller90dcc052000-07-08 10:17:40 +10001725 rsh_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11001726 fi
1727 ],
1728 [
1729 AC_PATH_PROG(rsh_path, rsh)
1730 ]
1731)
1732
1733AC_ARG_WITH(xauth,
1734 [ --with-xauth=PATH Specify path to xauth program ],
1735 [
Ben Lindstrom76020ba2000-10-25 16:55:00 +00001736 if test "x$withval" != "xno" ; then
Damien Miller7b22d652000-06-18 14:07:04 +10001737 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11001738 fi
1739 ],
1740 [
Damien Miller78315eb2000-09-29 23:01:36 +11001741 AC_PATH_PROG(xauth_path, xauth,,$PATH:/usr/X/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/openwin/bin)
Damien Milleredb82922000-06-20 13:25:52 +10001742 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11001743 xauth_path="/usr/openwin/bin/xauth"
1744 fi
1745 ]
1746)
1747
Damien Millera19cf472000-11-29 13:28:50 +11001748if test -z "$xauth_path" ; then
1749 XAUTH_PATH="undefined"
1750 AC_SUBST(XAUTH_PATH)
1751else
Damien Millera22ba012000-03-02 23:09:20 +11001752 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
Damien Millera19cf472000-11-29 13:28:50 +11001753 XAUTH_PATH=$xauth_path
1754 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11001755fi
1756if test ! -z "$rsh_path" ; then
1757 AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path")
1758fi
1759
1760# Check for mail directory (last resort if we cannot get it from headers)
1761if test ! -z "$MAIL" ; then
1762 maildir=`dirname $MAIL`
1763 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir")
1764fi
1765
Damien Millera22ba012000-03-02 23:09:20 +11001766if test -z "$no_dev_ptmx" ; then
Damien Miller204ad072000-03-02 23:56:12 +11001767 AC_CHECK_FILE("/dev/ptmx",
1768 [
1769 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
1770 have_dev_ptmx=1
1771 ]
1772 )
Damien Millera22ba012000-03-02 23:09:20 +11001773fi
Damien Miller204ad072000-03-02 23:56:12 +11001774AC_CHECK_FILE("/dev/ptc",
1775 [
1776 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
1777 have_dev_ptc=1
1778 ]
1779)
1780
Damien Millera22ba012000-03-02 23:09:20 +11001781# Options from here on. Some of these are preset by platform above
Ben Lindstrom9841b0a2001-06-09 02:26:58 +00001782AC_ARG_WITH(mantype,
Damien Miller897741e2001-04-16 10:41:46 +10001783 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11001784 [
Damien Miller897741e2001-04-16 10:41:46 +10001785 case "$withval" in
1786 man|cat|doc)
1787 MANTYPE=$withval
1788 ;;
1789 *)
1790 AC_MSG_ERROR(invalid man type: $withval)
1791 ;;
1792 esac
Damien Miller670a4b82000-01-22 13:53:11 +11001793 ]
1794)
Ben Lindstrombc709922001-04-18 18:04:21 +00001795if test -z "$MANTYPE"; then
Tim Rice07183b82001-04-25 21:40:28 -07001796 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, /usr/bin:/usr/ucb)
Ben Lindstrombc709922001-04-18 18:04:21 +00001797 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
1798 MANTYPE=doc
1799 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
1800 MANTYPE=man
1801 else
1802 MANTYPE=cat
1803 fi
1804fi
Damien Miller670a4b82000-01-22 13:53:11 +11001805AC_SUBST(MANTYPE)
Ben Lindstrombc709922001-04-18 18:04:21 +00001806if test "$MANTYPE" = "doc"; then
1807 mansubdir=man;
1808else
1809 mansubdir=$MANTYPE;
1810fi
1811AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11001812
Damien Millera22ba012000-03-02 23:09:20 +11001813# Check whether to enable MD5 passwords
Damien Miller7b22d652000-06-18 14:07:04 +10001814MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11001815AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11001816 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11001817 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001818 if test "x$withval" != "xno" ; then
Damien Miller8bdeee21999-12-30 15:50:54 +11001819 AC_DEFINE(HAVE_MD5_PASSWORDS)
Damien Miller7b22d652000-06-18 14:07:04 +10001820 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11001821 fi
1822 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11001823)
1824
Damien Millera22ba012000-03-02 23:09:20 +11001825# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11001826AC_ARG_WITH(shadow,
1827 [ --without-shadow Disable shadow password support],
1828 [
1829 if test "x$withval" = "xno" ; then
1830 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10001831 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11001832 fi
1833 ]
1834)
1835
Damien Miller1f335fb2000-06-26 11:31:33 +10001836if test -z "$disable_shadow" ; then
1837 AC_MSG_CHECKING([if the systems has expire shadow information])
1838 AC_TRY_COMPILE(
1839 [
1840#include <sys/types.h>
1841#include <shadow.h>
1842 struct spwd sp;
1843 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
1844 [ sp_expire_available=yes ], []
1845 )
1846
1847 if test "x$sp_expire_available" = "xyes" ; then
1848 AC_MSG_RESULT(yes)
1849 AC_DEFINE(HAS_SHADOW_EXPIRE)
1850 else
1851 AC_MSG_RESULT(no)
1852 fi
1853fi
1854
Damien Millera22ba012000-03-02 23:09:20 +11001855# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11001856if test ! -z "$IPADDR_IN_DISPLAY" ; then
1857 DISPLAY_HACK_MSG="yes"
1858 AC_DEFINE(IPADDR_IN_DISPLAY)
1859else
1860 DISPLAY_HACK_MSG="no"
1861 AC_ARG_WITH(ipaddr-display,
1862 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
1863 [
1864 if test "x$withval" != "xno" ; then
1865 AC_DEFINE(IPADDR_IN_DISPLAY)
1866 DISPLAY_HACK_MSG="yes"
1867 fi
1868 ]
1869 )
1870fi
Damien Miller76112de1999-12-21 11:18:08 +11001871
Damien Millera22ba012000-03-02 23:09:20 +11001872# Whether to mess with the default path
Damien Miller7b22d652000-06-18 14:07:04 +10001873SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11001874AC_ARG_WITH(default-path,
Damien Miller5a3e6831999-12-27 09:48:56 +11001875 [ --with-default-path=PATH Specify default \$PATH environment for server],
1876 [
1877 if test "x$withval" != "xno" ; then
Tim Rice59ea0a02001-03-10 13:50:45 -08001878 user_path="$withval"
Damien Miller7b22d652000-06-18 14:07:04 +10001879 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11001880 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08001881 ],
1882 [
1883 AC_TRY_RUN(
1884 [
1885/* find out what STDPATH is */
1886#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08001887#ifdef HAVE_PATHS_H
1888# include <paths.h>
1889#endif
1890#ifndef _PATH_STDPATH
1891# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
1892#endif
1893#include <sys/types.h>
1894#include <sys/stat.h>
1895#include <fcntl.h>
1896#define DATA "conftest.stdpath"
1897
1898main()
1899{
1900 FILE *fd;
1901 int rc;
1902
1903 fd = fopen(DATA,"w");
1904 if(fd == NULL)
1905 exit(1);
1906
1907 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
1908 exit(1);
1909
1910 exit(0);
1911}
1912 ], [ user_path=`cat conftest.stdpath` ],
1913 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
1914 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
1915 )
1916# make sure $bindir is in USER_PATH so scp will work
1917 t_bindir=`eval echo ${bindir}`
1918 case $t_bindir in
1919 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
1920 esac
1921 case $t_bindir in
1922 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
1923 esac
1924 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
1925 if test $? -ne 0 ; then
1926 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
1927 if test $? -ne 0 ; then
1928 user_path=$user_path:$t_bindir
1929 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
1930 fi
1931 fi
Damien Miller5a3e6831999-12-27 09:48:56 +11001932 ]
1933)
Tim Rice59ea0a02001-03-10 13:50:45 -08001934AC_DEFINE_UNQUOTED(USER_PATH, "$user_path")
1935AC_SUBST(user_path)
Damien Miller5a3e6831999-12-27 09:48:56 +11001936
Damien Millera22ba012000-03-02 23:09:20 +11001937# Whether to force IPv4 by default (needed on broken glibc Linux)
Damien Miller7b22d652000-06-18 14:07:04 +10001938IPV4_HACK_MSG="no"
Damien Miller7d80e342000-01-19 14:36:49 +11001939AC_ARG_WITH(ipv4-default,
1940 [ --with-ipv4-default Use IPv4 by connections unless '-6' specified],
1941 [
1942 if test "x$withval" != "xno" ; then
1943 AC_DEFINE(IPV4_DEFAULT)
Damien Miller7b22d652000-06-18 14:07:04 +10001944 IPV4_HACK_MSG="yes"
Damien Miller7d80e342000-01-19 14:36:49 +11001945 fi
1946 ]
1947)
1948
Damien Miller61e50f12000-05-08 20:49:37 +10001949AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Miller7b22d652000-06-18 14:07:04 +10001950IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11001951AC_ARG_WITH(4in6,
1952 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
1953 [
1954 if test "x$withval" != "xno" ; then
1955 AC_MSG_RESULT(yes)
1956 AC_DEFINE(IPV4_IN_IPV6)
Damien Miller7b22d652000-06-18 14:07:04 +10001957 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11001958 else
1959 AC_MSG_RESULT(no)
1960 fi
1961 ],[
1962 if test "x$inet6_default_4in6" = "xyes"; then
1963 AC_MSG_RESULT([yes (default)])
1964 AC_DEFINE(IPV4_IN_IPV6)
Damien Miller7b22d652000-06-18 14:07:04 +10001965 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11001966 else
1967 AC_MSG_RESULT([no (default)])
1968 fi
1969 ]
1970)
1971
Damien Miller60396b02001-02-18 17:01:00 +11001972# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11001973BSD_AUTH_MSG=no
Damien Miller60396b02001-02-18 17:01:00 +11001974AC_ARG_WITH(bsd-auth,
1975 [ --with-bsd-auth Enable BSD auth support],
1976 [
1977 if test "x$withval" != "xno" ; then
1978 AC_DEFINE(BSD_AUTH)
Damien Miller6c21c512002-01-22 21:57:53 +11001979 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11001980 fi
1981 ]
1982)
1983
Damien Miller78315eb2000-09-29 23:01:36 +11001984AC_MSG_CHECKING(whether to install ssh as suid root)
1985AC_ARG_ENABLE(suid-ssh,
1986[ --enable-suid-ssh Install ssh as suid root (default)
1987 --disable-suid-ssh Install ssh without suid bit],
1988[ case "$enableval" in
1989 no)
1990 AC_MSG_RESULT(no)
1991 SSHMODE=0711
1992 ;;
1993 *) AC_MSG_RESULT(yes)
Ben Lindstrom8e2aa5b2001-07-24 17:00:13 +00001994 SSHMODE=4711
Damien Miller78315eb2000-09-29 23:01:36 +11001995 ;;
1996 esac ],
1997 AC_MSG_RESULT(yes)
Ben Lindstrom8e2aa5b2001-07-24 17:00:13 +00001998 SSHMODE=4711
Damien Miller78315eb2000-09-29 23:01:36 +11001999)
2000AC_SUBST(SSHMODE)
2001
2002
Damien Millera22ba012000-03-02 23:09:20 +11002003# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11002004piddir=/var/run
Damien Miller5eed6a22000-01-16 12:05:18 +11002005AC_ARG_WITH(pid-dir,
2006 [ --with-pid-dir=PATH Specify location of ssh.pid file],
2007 [
2008 if test "x$withval" != "xno" ; then
Damien Millerb13c73e2000-01-17 22:02:17 +11002009 piddir=$withval
Damien Miller5eed6a22000-01-16 12:05:18 +11002010 fi
2011 ]
2012)
Damien Miller4018c192000-04-30 09:30:44 +10002013
Damien Miller78315eb2000-09-29 23:01:36 +11002014# make sure the directory exists
2015if test ! -d $piddir ; then
2016 piddir=`eval echo ${sysconfdir}`
2017 case $piddir in
2018 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
2019 esac
2020fi
2021
Ben Lindstrom226cfa02001-01-22 05:34:40 +00002022AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir")
Damien Millerb13c73e2000-01-17 22:02:17 +11002023AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11002024
andre2ff7b5d2000-06-03 14:57:40 +00002025dnl allow user to disable some login recording features
2026AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00002027 [ --disable-lastlog disable use of lastlog even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002028 [ AC_DEFINE(DISABLE_LASTLOG) ]
2029)
2030AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00002031 [ --disable-utmp disable use of utmp even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002032 [ AC_DEFINE(DISABLE_UTMP) ]
2033)
2034AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00002035 [ --disable-utmpx disable use of utmpx even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002036 [ AC_DEFINE(DISABLE_UTMPX) ]
2037)
2038AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00002039 [ --disable-wtmp disable use of wtmp even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002040 [ AC_DEFINE(DISABLE_WTMP) ]
2041)
2042AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00002043 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002044 [ AC_DEFINE(DISABLE_WTMPX) ]
2045)
2046AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00002047 [ --disable-libutil disable use of libutil (login() etc.) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002048 [ AC_DEFINE(DISABLE_LOGIN) ]
2049)
2050AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00002051 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002052 [ AC_DEFINE(DISABLE_PUTUTLINE) ]
2053)
2054AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00002055 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002056 [ AC_DEFINE(DISABLE_PUTUTXLINE) ]
2057)
2058AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00002059 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11002060 [
2061 if test "x$withval" = "xno" ; then
2062 AC_DEFINE(DISABLE_LASTLOG)
2063 else
2064 conf_lastlog_location=$withval
2065 fi
2066 ]
2067)
andre2ff7b5d2000-06-03 14:57:40 +00002068
2069dnl lastlog, [uw]tmpx? detection
2070dnl NOTE: set the paths in the platform section to avoid the
2071dnl need for command-line parameters
2072dnl lastlog and [uw]tmp are subject to a file search if all else fails
2073
2074dnl lastlog detection
2075dnl NOTE: the code itself will detect if lastlog is a directory
2076AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
2077AC_TRY_COMPILE([
2078#include <sys/types.h>
2079#include <utmp.h>
2080#ifdef HAVE_LASTLOG_H
2081# include <lastlog.h>
2082#endif
Damien Miller2994e082000-06-04 15:51:47 +10002083#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002084# include <paths.h>
2085#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002086#ifdef HAVE_LOGIN_H
2087# include <login.h>
2088#endif
andre2ff7b5d2000-06-03 14:57:40 +00002089 ],
2090 [ char *lastlog = LASTLOG_FILE; ],
2091 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10002092 [
2093 AC_MSG_RESULT(no)
2094 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
2095 AC_TRY_COMPILE([
2096#include <sys/types.h>
2097#include <utmp.h>
2098#ifdef HAVE_LASTLOG_H
2099# include <lastlog.h>
2100#endif
2101#ifdef HAVE_PATHS_H
2102# include <paths.h>
2103#endif
2104 ],
2105 [ char *lastlog = _PATH_LASTLOG; ],
2106 [ AC_MSG_RESULT(yes) ],
2107 [
andree441aa32000-06-12 22:34:38 +00002108 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10002109 system_lastlog_path=no
2110 ])
2111 ]
andre2ff7b5d2000-06-03 14:57:40 +00002112)
Damien Miller2994e082000-06-04 15:51:47 +10002113
andre2ff7b5d2000-06-03 14:57:40 +00002114if test -z "$conf_lastlog_location"; then
2115 if test x"$system_lastlog_path" = x"no" ; then
2116 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10002117 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00002118 conf_lastlog_location=$f
2119 fi
2120 done
2121 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00002122 AC_MSG_WARN([** Cannot find lastlog **])
2123 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00002124 fi
2125 fi
2126fi
2127
2128if test -n "$conf_lastlog_location"; then
2129 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location")
2130fi
2131
2132dnl utmp detection
2133AC_MSG_CHECKING([if your system defines UTMP_FILE])
2134AC_TRY_COMPILE([
2135#include <sys/types.h>
2136#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10002137#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002138# include <paths.h>
2139#endif
2140 ],
2141 [ char *utmp = UTMP_FILE; ],
2142 [ AC_MSG_RESULT(yes) ],
2143 [ AC_MSG_RESULT(no)
2144 system_utmp_path=no ]
2145)
2146if test -z "$conf_utmp_location"; then
2147 if test x"$system_utmp_path" = x"no" ; then
2148 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
2149 if test -f $f ; then
2150 conf_utmp_location=$f
2151 fi
2152 done
2153 if test -z "$conf_utmp_location"; then
2154 AC_DEFINE(DISABLE_UTMP)
2155 fi
2156 fi
2157fi
2158if test -n "$conf_utmp_location"; then
2159 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location")
2160fi
2161
2162dnl wtmp detection
2163AC_MSG_CHECKING([if your system defines WTMP_FILE])
2164AC_TRY_COMPILE([
2165#include <sys/types.h>
2166#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10002167#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002168# include <paths.h>
2169#endif
2170 ],
2171 [ char *wtmp = WTMP_FILE; ],
2172 [ AC_MSG_RESULT(yes) ],
2173 [ AC_MSG_RESULT(no)
2174 system_wtmp_path=no ]
2175)
2176if test -z "$conf_wtmp_location"; then
2177 if test x"$system_wtmp_path" = x"no" ; then
2178 for f in /usr/adm/wtmp /var/log/wtmp; do
2179 if test -f $f ; then
2180 conf_wtmp_location=$f
2181 fi
2182 done
2183 if test -z "$conf_wtmp_location"; then
2184 AC_DEFINE(DISABLE_WTMP)
2185 fi
2186 fi
2187fi
2188if test -n "$conf_wtmp_location"; then
2189 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location")
2190fi
2191
2192
2193dnl utmpx detection - I don't know any system so perverse as to require
2194dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
2195dnl there, though.
2196AC_MSG_CHECKING([if your system defines UTMPX_FILE])
2197AC_TRY_COMPILE([
2198#include <sys/types.h>
2199#include <utmp.h>
2200#ifdef HAVE_UTMPX_H
2201#include <utmpx.h>
2202#endif
Damien Miller2994e082000-06-04 15:51:47 +10002203#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002204# include <paths.h>
2205#endif
2206 ],
2207 [ char *utmpx = UTMPX_FILE; ],
2208 [ AC_MSG_RESULT(yes) ],
2209 [ AC_MSG_RESULT(no)
2210 system_utmpx_path=no ]
2211)
2212if test -z "$conf_utmpx_location"; then
2213 if test x"$system_utmpx_path" = x"no" ; then
2214 AC_DEFINE(DISABLE_UTMPX)
2215 fi
2216else
2217 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location")
2218fi
2219
2220dnl wtmpx detection
2221AC_MSG_CHECKING([if your system defines WTMPX_FILE])
2222AC_TRY_COMPILE([
2223#include <sys/types.h>
2224#include <utmp.h>
2225#ifdef HAVE_UTMPX_H
2226#include <utmpx.h>
2227#endif
Damien Miller2994e082000-06-04 15:51:47 +10002228#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002229# include <paths.h>
2230#endif
2231 ],
2232 [ char *wtmpx = WTMPX_FILE; ],
2233 [ AC_MSG_RESULT(yes) ],
2234 [ AC_MSG_RESULT(no)
2235 system_wtmpx_path=no ]
2236)
2237if test -z "$conf_wtmpx_location"; then
2238 if test x"$system_wtmpx_path" = x"no" ; then
2239 AC_DEFINE(DISABLE_WTMPX)
2240 fi
2241else
2242 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location")
2243fi
2244
Damien Miller4018c192000-04-30 09:30:44 +10002245
Damien Miller29ea30d2000-03-17 10:54:15 +11002246if test ! -z "$blibpath" ; then
2247 LDFLAGS="$LDFLAGS -blibpath:$blibpath"
2248 AC_MSG_WARN([Please check and edit -blibpath in LDFLAGS in Makefile])
2249fi
2250
Tim Rice4cec93f2002-02-26 08:40:48 -08002251dnl remove pam and dl because they are in $LIBPAM
2252if test "$PAM_MSG" = yes ; then
2253 LIBS=`echo $LIBS | sed 's/-lpam -ldl //'`
2254fi
2255
Damien Millerbac2d8a2000-09-05 16:13:06 +11002256AC_EXEEXT
Tim Rice13aae5e2001-10-21 17:53:58 -07002257AC_CONFIG_FILES([Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds])
2258AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10002259
Damien Miller7b22d652000-06-18 14:07:04 +10002260# Print summary of options
2261
Damien Miller7b22d652000-06-18 14:07:04 +10002262# Someone please show me a better way :)
2263A=`eval echo ${prefix}` ; A=`eval echo ${A}`
2264B=`eval echo ${bindir}` ; B=`eval echo ${B}`
2265C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
2266D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00002267E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00002268F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10002269G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Tim Rice59ea0a02001-03-10 13:50:45 -08002270H=`eval echo ${user_path}` ; H=`eval echo ${H}`
Damien Miller7b22d652000-06-18 14:07:04 +10002271
2272echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00002273echo "OpenSSH has been configured with the following options:"
Damien Miller7b22d652000-06-18 14:07:04 +10002274echo " User binaries: $B"
2275echo " System binaries: $C"
2276echo " Configuration files: $D"
2277echo " Askpass program: $E"
2278echo " Manual pages: $F"
2279echo " PID file: $G"
Tim Rice59ea0a02001-03-10 13:50:45 -08002280echo " sshd default user PATH: $H"
Damien Miller897741e2001-04-16 10:41:46 +10002281echo " Manpage format: $MANTYPE"
Damien Miller7b22d652000-06-18 14:07:04 +10002282echo " PAM support: ${PAM_MSG}"
2283echo " KerberosIV support: $KRB4_MSG"
Damien Miller85de5802001-09-18 14:01:11 +10002284echo " Smartcard support: $SCARD_MSG"
Damien Miller7b22d652000-06-18 14:07:04 +10002285echo " AFS support: $AFS_MSG"
2286echo " S/KEY support: $SKEY_MSG"
2287echo " TCP Wrappers support: $TCPW_MSG"
2288echo " MD5 password support: $MD5_MSG"
2289echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
2290echo " Use IPv4 by default hack: $IPV4_HACK_MSG"
2291echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
Damien Miller6c21c512002-01-22 21:57:53 +11002292echo " BSD Auth support: $BSD_AUTH_MSG"
2293echo " Random number source: $RAND_MSG"
2294if test ! -z "$USE_RAND_HELPER" ; then
2295 echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
Damien Miller60396b02001-02-18 17:01:00 +11002296fi
2297
Damien Miller7b22d652000-06-18 14:07:04 +10002298echo ""
2299
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00002300echo " Host: ${host}"
2301echo " Compiler: ${CC}"
2302echo " Compiler flags: ${CFLAGS}"
2303echo "Preprocessor flags: ${CPPFLAGS}"
2304echo " Linker flags: ${LDFLAGS}"
Tim Rice4cec93f2002-02-26 08:40:48 -08002305echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}"
Damien Miller7b22d652000-06-18 14:07:04 +10002306
2307echo ""
2308
Damien Miller82cf0ce2000-12-20 13:34:48 +11002309if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002310 echo "PAM is enabled. You may need to install a PAM control file "
2311 echo "for sshd, otherwise password authentication may fail. "
2312 echo "Example PAM control files can be found in the contrib/ "
2313 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11002314 echo ""
2315fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00002316
2317if test ! -z "$NO_SFTP"; then
Damien Miller6c21c512002-01-22 21:57:53 +11002318 echo "sftp-server will be disabled. Your compiler does not "
2319 echo "support 64bit integers."
2320 echo ""
2321fi
2322
2323if test ! -z "$RAND_HELPER_CMDHASH" ; then
2324 echo "WARNING: you are using the builtin random number collection "
2325 echo "service. Please read WARNING.RNG and request that your OS "
2326 echo "vendor includes kernel-based random number collection in "
2327 echo "future versions of your OS."
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00002328 echo ""
2329fi
Damien Miller60396b02001-02-18 17:01:00 +11002330