blob: 670764f52dc91b018999f115b5e78a65f5a48d1b [file] [log] [blame]
Tim Rice88f2ab52002-03-17 12:17:34 -08001# $Id: configure.ac,v 1.26 2002/03/17 20:17:35 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 Lindstrom784e2342002-03-08 03:50:57 +0000118 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 \
Ben Lindstrom7577fd82002-03-08 03:11:07 +0000328 rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
Tim Rice4cec93f2002-02-26 08:40:48 -0800329 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 Rice7d2d1f12002-02-26 22:05:11 -0800652 if test $ac_cv_lib_dl_dlopen = yes; then
653 LIBPAM="-lpam -ldl"
654 else
655 LIBPAM="-lpam"
656 fi
657 AC_SUBST(LIBPAM)
Damien Millera22ba012000-03-02 23:09:20 +1100658 fi
659 ]
660)
Damien Millera22ba012000-03-02 23:09:20 +1100661
Damien Millera64b57a2001-01-17 10:44:13 +1100662# Check for older PAM
663if test "x$PAM_MSG" = "xyes" ; then
Damien Millera22ba012000-03-02 23:09:20 +1100664 # Check PAM strerror arguments (old PAM)
665 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
666 AC_TRY_COMPILE(
667 [
Damien Miller81171112000-04-23 11:14:01 +1000668#include <stdlib.h>
669#include <security/pam_appl.h>
Damien Millera22ba012000-03-02 23:09:20 +1100670 ],
671 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
672 [AC_MSG_RESULT(no)],
673 [
674 AC_DEFINE(HAVE_OLD_PAM)
675 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +1000676 PAM_MSG="yes (old library)"
Damien Millera22ba012000-03-02 23:09:20 +1100677 ]
Damien Millera64b57a2001-01-17 10:44:13 +1100678 )
Damien Millera22ba012000-03-02 23:09:20 +1100679fi
680
681# The big search for OpenSSL
682AC_ARG_WITH(ssl-dir,
683 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
684 [
Ben Lindstrom23e13712000-10-29 22:49:19 +0000685 if test "x$withval" != "xno" ; then
Damien Millera22ba012000-03-02 23:09:20 +1100686 tryssldir=$withval
687 fi
688 ]
689)
690
691saved_LIBS="$LIBS"
Damien Millera1ad4802000-03-15 10:04:54 +1100692saved_LDFLAGS="$LDFLAGS"
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000693saved_CPPFLAGS="$CPPFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +1100694if test "x$prefix" != "xNONE" ; then
695 tryssldir="$tryssldir $prefix"
696fi
Damien Miller61e50f12000-05-08 20:49:37 +1000697AC_CACHE_CHECK([for OpenSSL directory], ac_cv_openssldir, [
Damien Millera1b61e12000-09-16 17:02:16 +1100698 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 +1100699 CPPFLAGS="$saved_CPPFLAGS"
700 LDFLAGS="$saved_LDFLAGS"
Damien Miller3b512e12000-05-17 23:29:18 +1000701 LIBS="$saved_LIBS -lcrypto"
Damien Millerccdefb62001-02-19 12:56:39 +1100702
703 # Skip directories if they don't exist
704 if test ! -z "$ssldir" -a ! -d "$ssldir" ; then
705 continue;
706 fi
707 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
708 # Try to use $ssldir/lib if it exists, otherwise
709 # $ssldir
710 if test -d "$ssldir/lib" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000711 LDFLAGS="-L$ssldir/lib $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/lib $LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100714 fi
715 else
Damien Millerb68af622001-03-28 21:05:26 +1000716 LDFLAGS="-L$ssldir $saved_LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100717 if test ! -z "$need_dash_r" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000718 LDFLAGS="-R$ssldir $LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100719 fi
720 fi
721 # Try to use $ssldir/include if it exists, otherwise
722 # $ssldir
723 if test -d "$ssldir/include" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000724 CPPFLAGS="-I$ssldir/include $saved_CPPFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100725 else
Damien Millerb68af622001-03-28 21:05:26 +1000726 CPPFLAGS="-I$ssldir $saved_CPPFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100727 fi
728 fi
Damien Miller61e50f12000-05-08 20:49:37 +1000729
Damien Miller3b512e12000-05-17 23:29:18 +1000730 # Basic test to check for compatible version and correct linking
731 # *does not* test for RSA - that comes later.
732 AC_TRY_RUN(
733 [
Damien Millere59ce622000-05-01 20:54:17 +1000734#include <string.h>
735#include <openssl/rand.h>
Damien Miller81171112000-04-23 11:14:01 +1000736int main(void)
737{
Damien Miller3b512e12000-05-17 23:29:18 +1000738 char a[2048];
739 memset(a, 0, sizeof(a));
Damien Miller81171112000-04-23 11:14:01 +1000740 RAND_add(a, sizeof(a), sizeof(a));
Damien Miller3b512e12000-05-17 23:29:18 +1000741 return(RAND_status() <= 0);
Damien Miller81171112000-04-23 11:14:01 +1000742}
Damien Miller3b512e12000-05-17 23:29:18 +1000743 ],
744 [
745 found_crypto=1
746 break;
747 ], []
748 )
Damien Miller61e50f12000-05-08 20:49:37 +1000749
750 if test ! -z "$found_crypto" ; then
751 break;
752 fi
Damien Millerb85dcad2000-03-11 11:37:00 +1100753 done
754
Damien Miller61e50f12000-05-08 20:49:37 +1000755 if test -z "$found_crypto" ; then
Damien Miller5dfe9762001-02-16 12:05:39 +1100756 AC_MSG_ERROR([Could not find working OpenSSL library, please install or check config.log])
Damien Millerb85dcad2000-03-11 11:37:00 +1100757 fi
Damien Miller61e50f12000-05-08 20:49:37 +1000758 if test -z "$ssldir" ; then
759 ssldir="(system)"
760 fi
Damien Millera22ba012000-03-02 23:09:20 +1100761
Damien Miller61e50f12000-05-08 20:49:37 +1000762 ac_cv_openssldir=$ssldir
763])
764
Damien Milleredb82922000-06-20 13:25:52 +1000765if (test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)") ; then
Damien Miller61e50f12000-05-08 20:49:37 +1000766 AC_DEFINE(HAVE_OPENSSL)
767 dnl Need to recover ssldir - test above runs in subshell
768 ssldir=$ac_cv_openssldir
Damien Millera64b57a2001-01-17 10:44:13 +1100769 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
Damien Millerccdefb62001-02-19 12:56:39 +1100770 # Try to use $ssldir/lib if it exists, otherwise
771 # $ssldir
772 if test -d "$ssldir/lib" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000773 LDFLAGS="-L$ssldir/lib $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/lib $LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100776 fi
777 else
Damien Millerb68af622001-03-28 21:05:26 +1000778 LDFLAGS="-L$ssldir $saved_LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100779 if test ! -z "$need_dash_r" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000780 LDFLAGS="-R$ssldir $LDFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100781 fi
Damien Millera64b57a2001-01-17 10:44:13 +1100782 fi
Damien Millerccdefb62001-02-19 12:56:39 +1100783 # Try to use $ssldir/include if it exists, otherwise
784 # $ssldir
785 if test -d "$ssldir/include" ; then
Damien Millerb68af622001-03-28 21:05:26 +1000786 CPPFLAGS="-I$ssldir/include $saved_CPPFLAGS"
Damien Millerccdefb62001-02-19 12:56:39 +1100787 else
Damien Millerb68af622001-03-28 21:05:26 +1000788 CPPFLAGS="-I$ssldir $saved_CPPFLAGS"
Damien Millera64b57a2001-01-17 10:44:13 +1100789 fi
Damien Miller29ea30d2000-03-17 10:54:15 +1100790 fi
Damien Millera22ba012000-03-02 23:09:20 +1100791fi
Damien Miller3b512e12000-05-17 23:29:18 +1000792LIBS="$saved_LIBS -lcrypto"
Damien Miller61e50f12000-05-08 20:49:37 +1000793
Damien Miller3b512e12000-05-17 23:29:18 +1000794# Now test RSA support
795saved_LIBS="$LIBS"
796AC_MSG_CHECKING([for RSA support])
797for WANTS_RSAREF in "" 1 ; do
798 if test -z "$WANTS_RSAREF" ; then
799 LIBS="$saved_LIBS"
800 else
801 LIBS="$saved_LIBS -lRSAglue -lrsaref"
802 fi
803 AC_TRY_RUN([
804#include <string.h>
805#include <openssl/rand.h>
806#include <openssl/rsa.h>
807#include <openssl/bn.h>
808#include <openssl/sha.h>
809int main(void)
810{
811 int num; RSA *key; static unsigned char p_in[] = "blahblah";
812 unsigned char c[256], p[256];
813 memset(c, 0, sizeof(c)); RAND_add(c, sizeof(c), sizeof(c));
814 if ((key=RSA_generate_key(512, 3, NULL, NULL))==NULL) return(1);
815 num = RSA_public_encrypt(sizeof(p_in) - 1, p_in, c, key, RSA_PKCS1_PADDING);
816 return(-1 == RSA_private_decrypt(num, c, p, key, RSA_PKCS1_PADDING));
817}
818 ],
819 [
820 rsa_works=1
821 break;
822 ], [])
823done
Ben Lindstrom23fec142001-06-09 02:16:28 +0000824LIBS="$saved_LIBS"
Damien Miller3b512e12000-05-17 23:29:18 +1000825
826if test ! -z "$no_rsa" ; then
827 AC_MSG_RESULT(disabled)
Damien Miller7b22d652000-06-18 14:07:04 +1000828 RSA_MSG="disabled"
Damien Miller3b512e12000-05-17 23:29:18 +1000829else
830 if test -z "$rsa_works" ; then
831 AC_MSG_WARN([*** No RSA support found *** ])
Damien Miller7b22d652000-06-18 14:07:04 +1000832 RSA_MSG="no"
Damien Miller3b512e12000-05-17 23:29:18 +1000833 else
834 if test -z "$WANTS_RSAREF" ; then
835 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +1000836 RSA_MSG="yes"
Damien Miller3b512e12000-05-17 23:29:18 +1000837 else
Damien Miller7b22d652000-06-18 14:07:04 +1000838 RSA_MSG="yes (using RSAref)"
Damien Miller3b512e12000-05-17 23:29:18 +1000839 AC_MSG_RESULT(using RSAref)
Ben Lindstrom23fec142001-06-09 02:16:28 +0000840 LIBS="$LIBS -lcrypto -lRSAglue -lrsaref"
Damien Miller3b512e12000-05-17 23:29:18 +1000841 fi
842 fi
843fi
Damien Millera22ba012000-03-02 23:09:20 +1100844
Damien Millerec932372002-01-22 22:16:03 +1100845# Sanity check OpenSSL headers
846AC_MSG_CHECKING([whether OpenSSL's headers match the library])
847AC_TRY_RUN(
848 [
849#include <string.h>
850#include <openssl/opensslv.h>
851int main(void) { return(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
852 ],
853 [
854 AC_MSG_RESULT(yes)
855 ],
856 [
857 AC_MSG_RESULT(no)
858 AC_MSG_ERROR(Your OpenSSL headers do not match your library)
859 ]
860)
861
Damien Millera64b57a2001-01-17 10:44:13 +1100862# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
863# version in OpenSSL. Skip this for PAM
864if test "x$PAM_MSG" = "xno" -a "x$check_for_libcrypt_later" = "x1"; then
Damien Miller95aa2d62001-03-01 09:16:11 +1100865 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
Damien Millera64b57a2001-01-17 10:44:13 +1100866fi
867
Damien Miller6c21c512002-01-22 21:57:53 +1100868
869### Configure cryptographic random number support
870
871# Check wheter OpenSSL seeds itself
872AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
873AC_TRY_RUN(
874 [
875#include <string.h>
876#include <openssl/rand.h>
877int main(void) { return(RAND_status() == 1 ? 0 : 1); }
878 ],
879 [
880 OPENSSL_SEEDS_ITSELF=yes
881 AC_MSG_RESULT(yes)
882 ],
883 [
884 AC_MSG_RESULT(no)
885 # Default to use of the rand helper if OpenSSL doesn't
886 # seed itself
887 USE_RAND_HELPER=yes
888 ]
889)
890
891
892# Do we want to force the use of the rand helper?
893AC_ARG_WITH(rand-helper,
894 [ --with-rand-helper Use subprocess to gather strong randomness ],
895 [
896 if test "x$withval" = "xno" ; then
897 # Force use of OpenSSL's internal RNG, even if
898 # the previous test showed it to be unseeded.
899 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
900 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
901 OPENSSL_SEEDS_ITSELF=yes
902 USE_RAND_HELPER=""
903 fi
904 else
905 USE_RAND_HELPER=yes
906 fi
907 ],
908)
909
910# Which randomness source do we use?
911if test ! -z "$OPENSSL_SEEDS_ITSELF" -a -z "$USE_RAND_HELPER" ; then
912 # OpenSSL only
913 AC_DEFINE(OPENSSL_PRNG_ONLY)
914 RAND_MSG="OpenSSL internal ONLY"
915 INSTALL_SSH_RAND_HELPER=""
Tim Rice1e2c6002002-01-30 22:14:03 -0800916elif test ! -z "$USE_RAND_HELPER" ; then
917 # install rand helper
Damien Miller6c21c512002-01-22 21:57:53 +1100918 RAND_MSG="ssh-rand-helper"
919 INSTALL_SSH_RAND_HELPER="yes"
920fi
921AC_SUBST(INSTALL_SSH_RAND_HELPER)
922
923### Configuration of ssh-rand-helper
924
925# PRNGD TCP socket
926AC_ARG_WITH(prngd-port,
927 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
928 [
Damien Millere996d722002-01-23 11:20:59 +1100929 case "$withval" in
930 no)
931 withval=""
932 ;;
933 [[0-9]]*)
934 ;;
935 *)
936 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
937 ;;
938 esac
939 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +1100940 PRNGD_PORT="$withval"
941 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT)
942 fi
943 ]
944)
945
946# PRNGD Unix domain socket
947AC_ARG_WITH(prngd-socket,
948 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
949 [
Damien Millere996d722002-01-23 11:20:59 +1100950 case "$withval" in
951 yes)
Damien Miller6c21c512002-01-22 21:57:53 +1100952 withval="/var/run/egd-pool"
Damien Millere996d722002-01-23 11:20:59 +1100953 ;;
954 no)
955 withval=""
956 ;;
957 /*)
958 ;;
959 *)
960 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
961 ;;
962 esac
963
964 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +1100965 if test ! -z "$PRNGD_PORT" ; then
966 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
967 fi
Damien Miller6385ba02002-01-23 08:12:36 +1100968 if test ! -r "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +1100969 AC_MSG_WARN(Entropy socket is not readable)
970 fi
971 PRNGD_SOCKET="$withval"
972 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
973 fi
Tim Rice4cec93f2002-02-26 08:40:48 -0800974 ],
975 [
976 # Check for existing socket only if we don't have a random device already
977 if test "$USE_RAND_HELPER" = yes ; then
978 AC_MSG_CHECKING(for PRNGD/EGD socket)
979 # Insert other locations here
980 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
981 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
982 PRNGD_SOCKET="$sock"
983 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
984 break;
985 fi
986 done
987 if test ! -z "$PRNGD_SOCKET" ; then
988 AC_MSG_RESULT($PRNGD_SOCKET)
989 else
990 AC_MSG_RESULT(not found)
991 fi
992 fi
Damien Miller6c21c512002-01-22 21:57:53 +1100993 ]
994)
995
996# Change default command timeout for hashing entropy source
997entropy_timeout=200
998AC_ARG_WITH(entropy-timeout,
999 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
1000 [
1001 if test "x$withval" != "xno" ; then
1002 entropy_timeout=$withval
1003 fi
1004 ]
1005)
1006
1007AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1008
Tim Rice88f2ab52002-03-17 12:17:34 -08001009# We do this little dance with the search path to insure
1010# that programs that we select for use by installed programs
1011# (which may be run by the super-user) come from trusted
1012# locations before they come from the user's private area.
1013# This should help avoid accidentally configuring some
1014# random version of a program in someone's personal bin.
1015
1016OPATH=$PATH
1017PATH=/bin:/usr/bin
1018test -L /bin && PATH=/usr/bin
1019test -d /sbin && PATH=$PATH:/sbin
1020test -d /usr/sbin && PATH=$PATH:/usr/sbin
1021PATH=$PATH:/etc:$OPATH
1022
Damien Miller6c21c512002-01-22 21:57:53 +11001023# These programs are used by the command hashing source to gather entropy
1024OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
1025OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
1026OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
1027OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
1028OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
1029OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
1030OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
1031OSSH_PATH_ENTROPY_PROG(PROG_W, w)
1032OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
1033OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
1034OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
1035OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
1036OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
1037OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
1038OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
1039OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
Tim Rice88f2ab52002-03-17 12:17:34 -08001040# restore PATH
1041PATH=$OPATH
Damien Miller6c21c512002-01-22 21:57:53 +11001042
1043# Where does ssh-rand-helper get its randomness from?
1044INSTALL_SSH_PRNG_CMDS=""
1045if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
1046 if test ! -z "$PRNGD_PORT" ; then
1047 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
1048 elif test ! -z "$PRNGD_SOCKET" ; then
1049 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
1050 else
1051 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
1052 RAND_HELPER_CMDHASH=yes
1053 INSTALL_SSH_PRNG_CMDS="yes"
1054 fi
1055fi
1056AC_SUBST(INSTALL_SSH_PRNG_CMDS)
1057
1058
Ben Lindstromb5628642000-10-18 00:02:25 +00001059# Cheap hack to ensure NEWS-OS libraries are arranged right.
1060if test ! -z "$SONY" ; then
1061 LIBS="$LIBS -liberty";
1062fi
1063
Damien Millera22ba012000-03-02 23:09:20 +11001064# Checks for data types
Damien Millere0f45742000-01-18 09:12:06 +11001065AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +11001066AC_CHECK_SIZEOF(short int, 2)
1067AC_CHECK_SIZEOF(int, 4)
1068AC_CHECK_SIZEOF(long int, 4)
1069AC_CHECK_SIZEOF(long long int, 8)
1070
Damien Millera22ba012000-03-02 23:09:20 +11001071# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11001072AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
1073 AC_TRY_COMPILE(
1074 [ #include <sys/types.h> ],
1075 [ u_int a; a = 1;],
1076 [ ac_cv_have_u_int="yes" ],
1077 [ ac_cv_have_u_int="no" ]
1078 )
1079])
1080if test "x$ac_cv_have_u_int" = "xyes" ; then
1081 AC_DEFINE(HAVE_U_INT)
1082 have_u_int=1
1083fi
1084
Damien Miller61e50f12000-05-08 20:49:37 +10001085AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
1086 AC_TRY_COMPILE(
1087 [ #include <sys/types.h> ],
1088 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
1089 [ ac_cv_have_intxx_t="yes" ],
1090 [ ac_cv_have_intxx_t="no" ]
1091 )
1092])
1093if test "x$ac_cv_have_intxx_t" = "xyes" ; then
1094 AC_DEFINE(HAVE_INTXX_T)
1095 have_intxx_t=1
1096fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001097
1098if (test -z "$have_intxx_t" && \
1099 test "x$ac_cv_header_stdint_h" = "xyes")
1100then
1101 AC_MSG_CHECKING([for intXX_t types in stdint.h])
1102 AC_TRY_COMPILE(
1103 [ #include <stdint.h> ],
1104 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
1105 [
1106 AC_DEFINE(HAVE_INTXX_T)
1107 AC_MSG_RESULT(yes)
1108 ],
1109 [ AC_MSG_RESULT(no) ]
1110 )
1111fi
1112
Damien Miller578783e2000-09-23 14:12:24 +11001113AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
1114 AC_TRY_COMPILE(
1115 [ #include <sys/types.h> ],
1116 [ int64_t a; a = 1;],
1117 [ ac_cv_have_int64_t="yes" ],
1118 [ ac_cv_have_int64_t="no" ]
1119 )
1120])
1121if test "x$ac_cv_have_int64_t" = "xyes" ; then
1122 AC_DEFINE(HAVE_INT64_T)
1123 have_int64_t=1
1124fi
1125
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001126if test -z "$have_int64_t" ; then
1127 AC_MSG_CHECKING([for int64_t type in sys/socket.h])
1128 AC_TRY_COMPILE(
1129 [ #include <sys/socket.h> ],
1130 [ int64_t a; a = 1],
1131 [
1132 AC_DEFINE(HAVE_INT64_T)
1133 AC_MSG_RESULT(yes)
1134 ],
1135 [ AC_MSG_RESULT(no) ]
1136 )
1137fi
1138
Tim Rice4cec93f2002-02-26 08:40:48 -08001139if test -z "$have_int64_t" ; then
1140 AC_MSG_CHECKING([for int64_t type in sys/bitypes.h])
1141 AC_TRY_COMPILE(
1142 [ #include <sys/bitypes.h> ],
1143 [ int64_t a; a = 1],
1144 [
1145 AC_DEFINE(HAVE_INT64_T)
1146 AC_MSG_RESULT(yes)
1147 ],
1148 [ AC_MSG_RESULT(no) ]
1149 )
1150fi
1151
Damien Miller61e50f12000-05-08 20:49:37 +10001152AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
1153 AC_TRY_COMPILE(
1154 [ #include <sys/types.h> ],
1155 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
1156 [ ac_cv_have_u_intxx_t="yes" ],
1157 [ ac_cv_have_u_intxx_t="no" ]
1158 )
1159])
1160if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
1161 AC_DEFINE(HAVE_U_INTXX_T)
1162 have_u_intxx_t=1
1163fi
Damien Millerc6398ef1999-11-20 12:18:40 +11001164
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001165if test -z "$have_u_intxx_t" ; then
1166 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
1167 AC_TRY_COMPILE(
1168 [ #include <sys/socket.h> ],
1169 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
1170 [
1171 AC_DEFINE(HAVE_U_INTXX_T)
1172 AC_MSG_RESULT(yes)
1173 ],
1174 [ AC_MSG_RESULT(no) ]
1175 )
1176fi
1177
Damien Miller578783e2000-09-23 14:12:24 +11001178AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
1179 AC_TRY_COMPILE(
1180 [ #include <sys/types.h> ],
1181 [ u_int64_t a; a = 1;],
1182 [ ac_cv_have_u_int64_t="yes" ],
1183 [ ac_cv_have_u_int64_t="no" ]
1184 )
1185])
1186if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
1187 AC_DEFINE(HAVE_U_INT64_T)
1188 have_u_int64_t=1
1189fi
1190
Tim Rice4cec93f2002-02-26 08:40:48 -08001191if test -z "$have_u_int64_t" ; then
1192 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
1193 AC_TRY_COMPILE(
1194 [ #include <sys/bitypes.h> ],
1195 [ u_int64_t a; a = 1],
1196 [
1197 AC_DEFINE(HAVE_U_INT64_T)
1198 AC_MSG_RESULT(yes)
1199 ],
1200 [ AC_MSG_RESULT(no) ]
1201 )
1202fi
1203
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001204if test -z "$have_u_intxx_t" ; then
1205 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
1206 AC_TRY_COMPILE(
1207 [
1208#include <sys/types.h>
1209 ],
1210 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
1211 [ ac_cv_have_uintxx_t="yes" ],
1212 [ ac_cv_have_uintxx_t="no" ]
1213 )
1214 ])
1215 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
1216 AC_DEFINE(HAVE_UINTXX_T)
1217 fi
1218fi
1219
1220if test -z "$have_uintxx_t" ; then
1221 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
1222 AC_TRY_COMPILE(
1223 [ #include <stdint.h> ],
1224 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
1225 [
1226 AC_DEFINE(HAVE_UINTXX_T)
1227 AC_MSG_RESULT(yes)
1228 ],
1229 [ AC_MSG_RESULT(no) ]
1230 )
1231fi
1232
Damien Milleredb82922000-06-20 13:25:52 +10001233if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
1234 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11001235then
1236 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
1237 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +10001238 [
1239#include <sys/bitypes.h>
1240 ],
Damien Millerb29ea912000-01-15 14:12:03 +11001241 [
Damien Miller70494d12000-04-03 15:57:06 +10001242 int8_t a; int16_t b; int32_t c;
1243 u_int8_t e; u_int16_t f; u_int32_t g;
1244 a = b = c = e = f = g = 1;
Damien Millerb29ea912000-01-15 14:12:03 +11001245 ],
1246 [
1247 AC_DEFINE(HAVE_U_INTXX_T)
1248 AC_DEFINE(HAVE_INTXX_T)
1249 AC_MSG_RESULT(yes)
1250 ],
1251 [AC_MSG_RESULT(no)]
1252 )
1253fi
1254
Damien Miller58be7382001-09-15 21:31:54 +10001255
1256AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
1257 AC_TRY_COMPILE(
1258 [
1259#include <sys/types.h>
1260 ],
1261 [ u_char foo; foo = 125; ],
1262 [ ac_cv_have_u_char="yes" ],
1263 [ ac_cv_have_u_char="no" ]
1264 )
1265])
1266if test "x$ac_cv_have_u_char" = "xyes" ; then
1267 AC_DEFINE(HAVE_U_CHAR)
1268fi
1269
Tim Rice13aae5e2001-10-21 17:53:58 -07001270TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11001271
Tim Rice200a5c02002-02-26 22:12:34 -08001272AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
Tim Rice4cec93f2002-02-26 08:40:48 -08001273
Damien Miller61e50f12000-05-08 20:49:37 +10001274AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
1275 AC_TRY_COMPILE(
1276 [
1277#include <sys/types.h>
1278 ],
1279 [ size_t foo; foo = 1235; ],
1280 [ ac_cv_have_size_t="yes" ],
1281 [ ac_cv_have_size_t="no" ]
1282 )
1283])
1284if test "x$ac_cv_have_size_t" = "xyes" ; then
1285 AC_DEFINE(HAVE_SIZE_T)
1286fi
Damien Miller95058511999-12-29 10:36:45 +11001287
Damien Miller615f9392000-05-17 22:53:33 +10001288AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
1289 AC_TRY_COMPILE(
1290 [
1291#include <sys/types.h>
1292 ],
1293 [ ssize_t foo; foo = 1235; ],
1294 [ ac_cv_have_ssize_t="yes" ],
1295 [ ac_cv_have_ssize_t="no" ]
1296 )
1297])
1298if test "x$ac_cv_have_ssize_t" = "xyes" ; then
1299 AC_DEFINE(HAVE_SSIZE_T)
1300fi
1301
Ben Lindstrom0d5af602001-01-09 00:50:29 +00001302AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
1303 AC_TRY_COMPILE(
1304 [
1305#include <time.h>
1306 ],
1307 [ clock_t foo; foo = 1235; ],
1308 [ ac_cv_have_clock_t="yes" ],
1309 [ ac_cv_have_clock_t="no" ]
1310 )
1311])
1312if test "x$ac_cv_have_clock_t" = "xyes" ; then
1313 AC_DEFINE(HAVE_CLOCK_T)
1314fi
1315
Damien Millerb54b40e2000-06-23 08:23:34 +10001316AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
1317 AC_TRY_COMPILE(
1318 [
1319#include <sys/types.h>
1320#include <sys/socket.h>
1321 ],
1322 [ sa_family_t foo; foo = 1235; ],
1323 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +11001324 [ AC_TRY_COMPILE(
1325 [
1326#include <sys/types.h>
1327#include <sys/socket.h>
1328#include <netinet/in.h>
1329 ],
1330 [ sa_family_t foo; foo = 1235; ],
1331 [ ac_cv_have_sa_family_t="yes" ],
1332
Damien Millerb54b40e2000-06-23 08:23:34 +10001333 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +11001334 )]
Damien Millerb54b40e2000-06-23 08:23:34 +10001335 )
1336])
1337if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
1338 AC_DEFINE(HAVE_SA_FAMILY_T)
1339fi
1340
Damien Miller0f91b4e2000-06-18 15:43:25 +10001341AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
1342 AC_TRY_COMPILE(
1343 [
1344#include <sys/types.h>
1345 ],
1346 [ pid_t foo; foo = 1235; ],
1347 [ ac_cv_have_pid_t="yes" ],
1348 [ ac_cv_have_pid_t="no" ]
1349 )
1350])
1351if test "x$ac_cv_have_pid_t" = "xyes" ; then
1352 AC_DEFINE(HAVE_PID_T)
1353fi
1354
1355AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
1356 AC_TRY_COMPILE(
1357 [
1358#include <sys/types.h>
1359 ],
1360 [ mode_t foo; foo = 1235; ],
1361 [ ac_cv_have_mode_t="yes" ],
1362 [ ac_cv_have_mode_t="no" ]
1363 )
1364])
1365if test "x$ac_cv_have_mode_t" = "xyes" ; then
1366 AC_DEFINE(HAVE_MODE_T)
1367fi
1368
Damien Miller61e50f12000-05-08 20:49:37 +10001369
1370AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
1371 AC_TRY_COMPILE(
1372 [
Damien Miller81171112000-04-23 11:14:01 +10001373#include <sys/types.h>
1374#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001375 ],
1376 [ struct sockaddr_storage s; ],
1377 [ ac_cv_have_struct_sockaddr_storage="yes" ],
1378 [ ac_cv_have_struct_sockaddr_storage="no" ]
1379 )
1380])
1381if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
1382 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)
1383fi
Damien Miller34132e52000-01-14 15:45:46 +11001384
Damien Miller61e50f12000-05-08 20:49:37 +10001385AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
1386 AC_TRY_COMPILE(
1387 [
Damien Miller7b22d652000-06-18 14:07:04 +10001388#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001389#include <netinet/in.h>
1390 ],
1391 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
1392 [ ac_cv_have_struct_sockaddr_in6="yes" ],
1393 [ ac_cv_have_struct_sockaddr_in6="no" ]
1394 )
1395])
1396if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
1397 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)
1398fi
Damien Miller34132e52000-01-14 15:45:46 +11001399
Damien Miller61e50f12000-05-08 20:49:37 +10001400AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
1401 AC_TRY_COMPILE(
1402 [
Damien Miller7b22d652000-06-18 14:07:04 +10001403#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001404#include <netinet/in.h>
1405 ],
1406 [ struct in6_addr s; s.s6_addr[0] = 0; ],
1407 [ ac_cv_have_struct_in6_addr="yes" ],
1408 [ ac_cv_have_struct_in6_addr="no" ]
1409 )
1410])
1411if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
1412 AC_DEFINE(HAVE_STRUCT_IN6_ADDR)
1413fi
Damien Miller34132e52000-01-14 15:45:46 +11001414
Damien Miller61e50f12000-05-08 20:49:37 +10001415AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
1416 AC_TRY_COMPILE(
1417 [
Damien Miller81171112000-04-23 11:14:01 +10001418#include <sys/types.h>
1419#include <sys/socket.h>
1420#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001421 ],
1422 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
1423 [ ac_cv_have_struct_addrinfo="yes" ],
1424 [ ac_cv_have_struct_addrinfo="no" ]
1425 )
1426])
1427if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
1428 AC_DEFINE(HAVE_STRUCT_ADDRINFO)
1429fi
1430
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001431AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
1432 AC_TRY_COMPILE(
1433 [ #include <sys/time.h> ],
1434 [ struct timeval tv; tv.tv_sec = 1;],
1435 [ ac_cv_have_struct_timeval="yes" ],
1436 [ ac_cv_have_struct_timeval="no" ]
1437 )
1438])
1439if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
1440 AC_DEFINE(HAVE_STRUCT_TIMEVAL)
1441 have_struct_timeval=1
1442fi
1443
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001444# If we don't have int64_t then we can't compile sftp-server. So don't
1445# even attempt to do it.
1446if test "x$ac_cv_have_int64_t" = "xno" -a \
1447 "x$ac_cv_sizeof_long_int" != "x8" -a \
1448 "x$ac_cv_sizeof_long_long_int" = "x0" ; then
1449 NO_SFTP='#'
Tim Ricebee3f222001-03-11 17:32:12 -08001450else
1451dnl test snprintf (broken on SCO w/gcc)
1452 AC_TRY_RUN(
1453 [
1454#include <stdio.h>
1455#include <string.h>
1456#ifdef HAVE_SNPRINTF
1457main()
1458{
1459 char buf[50];
1460 char expected_out[50];
1461 int mazsize = 50 ;
1462#if (SIZEOF_LONG_INT == 8)
1463 long int num = 0x7fffffffffffffff;
1464#else
Kevin Steves6482ec82001-07-15 02:09:28 +00001465 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08001466#endif
1467 strcpy(expected_out, "9223372036854775807");
1468 snprintf(buf, mazsize, "%lld", num);
1469 if(strcmp(buf, expected_out) != 0)
1470 exit(1);
1471 exit(0);
1472}
1473#else
1474main() { exit(0); }
1475#endif
1476 ], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ]
1477 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001478fi
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001479AC_SUBST(NO_SFTP)
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001480
Damien Miller78315eb2000-09-29 23:01:36 +11001481dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10001482OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
1483OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
1484OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
1485OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
1486OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10001487OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001488OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
1489OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10001490OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001491OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
1492OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
1493OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
1494OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00001495OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
1496OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
1497OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
1498OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Tim Rice13aae5e2001-10-21 17:53:58 -07001499
1500AC_CHECK_MEMBERS([struct stat.st_blksize])
andre2ff7b5d2000-06-03 14:57:40 +00001501
Damien Miller61e50f12000-05-08 20:49:37 +10001502AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
1503 ac_cv_have_ss_family_in_struct_ss, [
1504 AC_TRY_COMPILE(
1505 [
Damien Miller81171112000-04-23 11:14:01 +10001506#include <sys/types.h>
1507#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001508 ],
1509 [ struct sockaddr_storage s; s.ss_family = 1; ],
1510 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
1511 [ ac_cv_have_ss_family_in_struct_ss="no" ],
1512 )
1513])
1514if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
1515 AC_DEFINE(HAVE_SS_FAMILY_IN_SS)
1516fi
1517
Damien Miller61e50f12000-05-08 20:49:37 +10001518AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
1519 ac_cv_have___ss_family_in_struct_ss, [
1520 AC_TRY_COMPILE(
1521 [
Damien Miller81171112000-04-23 11:14:01 +10001522#include <sys/types.h>
1523#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001524 ],
1525 [ struct sockaddr_storage s; s.__ss_family = 1; ],
1526 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
1527 [ ac_cv_have___ss_family_in_struct_ss="no" ]
1528 )
1529])
1530if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
1531 AC_DEFINE(HAVE___SS_FAMILY_IN_SS)
1532fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11001533
Damien Millerad833b32000-08-23 10:46:23 +10001534AC_CACHE_CHECK([for pw_class field in struct passwd],
1535 ac_cv_have_pw_class_in_struct_passwd, [
1536 AC_TRY_COMPILE(
1537 [
Damien Millerad833b32000-08-23 10:46:23 +10001538#include <pwd.h>
1539 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00001540 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10001541 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
1542 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
1543 )
1544])
1545if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
1546 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD)
1547fi
1548
Kevin Steves82456952001-06-22 21:14:18 +00001549AC_CACHE_CHECK([for pw_expire field in struct passwd],
1550 ac_cv_have_pw_expire_in_struct_passwd, [
1551 AC_TRY_COMPILE(
1552 [
1553#include <pwd.h>
1554 ],
1555 [ struct passwd p; p.pw_expire = 0; ],
1556 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
1557 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
1558 )
1559])
1560if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
1561 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD)
1562fi
1563
1564AC_CACHE_CHECK([for pw_change field in struct passwd],
1565 ac_cv_have_pw_change_in_struct_passwd, [
1566 AC_TRY_COMPILE(
1567 [
1568#include <pwd.h>
1569 ],
1570 [ struct passwd p; p.pw_change = 0; ],
1571 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
1572 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
1573 )
1574])
1575if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
1576 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD)
1577fi
Damien Miller61e50f12000-05-08 20:49:37 +10001578
1579AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
1580 AC_TRY_LINK([],
1581 [ extern char *__progname; printf("%s", __progname); ],
1582 [ ac_cv_libc_defines___progname="yes" ],
1583 [ ac_cv_libc_defines___progname="no" ]
1584 )
1585])
1586if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
1587 AC_DEFINE(HAVE___PROGNAME)
1588fi
1589
Damien Miller4f8e6692001-07-14 13:22:53 +10001590AC_CACHE_CHECK([whether getopt has optreset support],
1591 ac_cv_have_getopt_optreset, [
1592 AC_TRY_LINK(
1593 [
1594#include <getopt.h>
1595 ],
1596 [ extern int optreset; optreset = 0; ],
1597 [ ac_cv_have_getopt_optreset="yes" ],
1598 [ ac_cv_have_getopt_optreset="no" ]
1599 )
1600])
1601if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
1602 AC_DEFINE(HAVE_GETOPT_OPTRESET)
1603fi
Damien Millera22ba012000-03-02 23:09:20 +11001604
Damien Millerecbb26d2000-07-15 14:59:14 +10001605AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
1606 AC_TRY_LINK([],
1607 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
1608 [ ac_cv_libc_defines_sys_errlist="yes" ],
1609 [ ac_cv_libc_defines_sys_errlist="no" ]
1610 )
1611])
1612if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
1613 AC_DEFINE(HAVE_SYS_ERRLIST)
1614fi
1615
1616
Damien Miller11fa2cc2000-08-16 10:35:58 +10001617AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
1618 AC_TRY_LINK([],
1619 [ extern int sys_nerr; printf("%i", sys_nerr);],
1620 [ ac_cv_libc_defines_sys_nerr="yes" ],
1621 [ ac_cv_libc_defines_sys_nerr="no" ]
1622 )
1623])
1624if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
1625 AC_DEFINE(HAVE_SYS_NERR)
1626fi
1627
1628
Damien Millerc79bc0d2001-03-28 13:03:42 +10001629# Check whether user wants Kerberos support
Damien Miller85de5802001-09-18 14:01:11 +10001630SCARD_MSG="no"
1631AC_ARG_WITH(smartcard,
1632 [ --with-smartcard Enable smartcard support],
1633 [
1634 if test "x$withval" != "xno" ; then
1635 if test "x$withval" != "xyes" ; then
1636 CPPFLAGS="$CPPFLAGS -I${withval}"
1637 LDFLAGS="$LDFLAGS -L${withval}"
1638 if test ! -z "$need_dash_r" ; then
1639 LDFLAGS="$LDFLAGS -R${withval}"
1640 fi
1641 if test ! -z "$blibpath" ; then
1642 blibpath="$blibpath:${withval}"
1643 fi
1644 fi
1645 AC_CHECK_HEADERS(sectok.h)
1646 if test "$ac_cv_header_sectok_h" != yes; then
1647 AC_MSG_ERROR(Can't find sectok.h)
1648 fi
1649 AC_CHECK_LIB(sectok, sectok_open)
1650 if test "$ac_cv_lib_sectok_sectok_open" != yes; then
1651 AC_MSG_ERROR(Can't find libsectok)
1652 fi
1653 AC_DEFINE(SMARTCARD)
1654 SCARD_MSG="yes"
1655 fi
1656 ]
1657)
1658
1659# Check whether user wants Kerberos support
Damien Millerc79bc0d2001-03-28 13:03:42 +10001660KRB4_MSG="no"
1661AC_ARG_WITH(kerberos4,
1662 [ --with-kerberos4=PATH Enable Kerberos 4 support],
1663 [
1664 if test "x$withval" != "xno" ; then
Damien Millerc79bc0d2001-03-28 13:03:42 +10001665 if test "x$withval" != "xyes" ; then
1666 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1667 LDFLAGS="$LDFLAGS -L${withval}/lib"
1668 if test ! -z "$need_dash_r" ; then
1669 LDFLAGS="$LDFLAGS -R${withval}/lib"
1670 fi
1671 if test ! -z "$blibpath" ; then
1672 blibpath="$blibpath:${withval}/lib"
1673 fi
1674 else
1675 if test -d /usr/include/kerberosIV ; then
1676 CPPFLAGS="$CPPFLAGS -I/usr/include/kerberosIV"
1677 fi
1678 fi
1679
1680 AC_CHECK_HEADERS(krb.h)
Damien Millerc79bc0d2001-03-28 13:03:42 +10001681 if test "$ac_cv_header_krb_h" != yes; then
1682 AC_MSG_WARN([Cannot find krb.h, build may fail])
1683 fi
Damien Miller98344742001-03-28 14:37:06 +10001684 AC_CHECK_LIB(krb, main)
Damien Millerc79bc0d2001-03-28 13:03:42 +10001685 if test "$ac_cv_lib_krb_main" != yes; then
Damien Miller98344742001-03-28 14:37:06 +10001686 AC_CHECK_LIB(krb4, main)
1687 if test "$ac_cv_lib_krb4_main" != yes; then
1688 AC_MSG_WARN([Cannot find libkrb nor libkrb4, build may fail])
1689 else
1690 KLIBS="-lkrb4"
1691 fi
1692 else
1693 KLIBS="-lkrb"
Damien Millerc79bc0d2001-03-28 13:03:42 +10001694 fi
Damien Miller98344742001-03-28 14:37:06 +10001695 AC_CHECK_LIB(des, des_cbc_encrypt)
1696 if test "$ac_cv_lib_des_des_cbc_encrypt" != yes; then
1697 AC_CHECK_LIB(des425, des_cbc_encrypt)
1698 if test "$ac_cv_lib_des425_des_cbc_encrypt" != yes; then
1699 AC_MSG_WARN([Cannot find libdes nor libdes425, build may fail])
1700 else
1701 KLIBS="-ldes425"
1702 fi
1703 else
1704 KLIBS="-ldes"
1705 fi
Damien Millerc79bc0d2001-03-28 13:03:42 +10001706 AC_CHECK_LIB(resolv, dn_expand, , )
1707 KRB4=yes
1708 KRB4_MSG="yes"
1709 AC_DEFINE(KRB4)
1710 fi
1711 ]
1712)
1713
1714# Check whether user wants AFS support
1715AFS_MSG="no"
1716AC_ARG_WITH(afs,
1717 [ --with-afs=PATH Enable AFS support],
1718 [
1719 if test "x$withval" != "xno" ; then
1720
1721 if test "x$withval" != "xyes" ; then
1722 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1723 LDFLAGS="$LDFLAGS -L${withval}/lib"
1724 fi
1725
1726 if test -z "$KRB4" ; then
1727 AC_MSG_WARN([AFS requires Kerberos IV support, build may fail])
1728 fi
1729
1730 LIBS="-lkafs $LIBS"
1731 if test ! -z "$AFS_LIBS" ; then
1732 LIBS="$LIBS $AFS_LIBS"
1733 fi
1734 AC_DEFINE(AFS)
1735 AFS_MSG="yes"
1736 fi
1737 ]
1738)
1739LIBS="$LIBS $KLIBS"
1740
Damien Millera22ba012000-03-02 23:09:20 +11001741# Looking for programs, paths and files
1742AC_ARG_WITH(rsh,
1743 [ --with-rsh=PATH Specify path to remote shell program ],
1744 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001745 if test "x$withval" != "$no" ; then
Damien Miller90dcc052000-07-08 10:17:40 +10001746 rsh_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11001747 fi
1748 ],
1749 [
1750 AC_PATH_PROG(rsh_path, rsh)
1751 ]
1752)
1753
1754AC_ARG_WITH(xauth,
1755 [ --with-xauth=PATH Specify path to xauth program ],
1756 [
Ben Lindstrom76020ba2000-10-25 16:55:00 +00001757 if test "x$withval" != "xno" ; then
Damien Miller7b22d652000-06-18 14:07:04 +10001758 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11001759 fi
1760 ],
1761 [
Damien Miller78315eb2000-09-29 23:01:36 +11001762 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 +10001763 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11001764 xauth_path="/usr/openwin/bin/xauth"
1765 fi
1766 ]
1767)
1768
Damien Millera19cf472000-11-29 13:28:50 +11001769if test -z "$xauth_path" ; then
1770 XAUTH_PATH="undefined"
1771 AC_SUBST(XAUTH_PATH)
1772else
Damien Millera22ba012000-03-02 23:09:20 +11001773 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
Damien Millera19cf472000-11-29 13:28:50 +11001774 XAUTH_PATH=$xauth_path
1775 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11001776fi
1777if test ! -z "$rsh_path" ; then
1778 AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path")
1779fi
1780
1781# Check for mail directory (last resort if we cannot get it from headers)
1782if test ! -z "$MAIL" ; then
1783 maildir=`dirname $MAIL`
1784 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir")
1785fi
1786
Damien Millera22ba012000-03-02 23:09:20 +11001787if test -z "$no_dev_ptmx" ; then
Damien Miller204ad072000-03-02 23:56:12 +11001788 AC_CHECK_FILE("/dev/ptmx",
1789 [
1790 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
1791 have_dev_ptmx=1
1792 ]
1793 )
Damien Millera22ba012000-03-02 23:09:20 +11001794fi
Damien Miller204ad072000-03-02 23:56:12 +11001795AC_CHECK_FILE("/dev/ptc",
1796 [
1797 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
1798 have_dev_ptc=1
1799 ]
1800)
1801
Damien Millera22ba012000-03-02 23:09:20 +11001802# Options from here on. Some of these are preset by platform above
Ben Lindstrom9841b0a2001-06-09 02:26:58 +00001803AC_ARG_WITH(mantype,
Damien Miller897741e2001-04-16 10:41:46 +10001804 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11001805 [
Damien Miller897741e2001-04-16 10:41:46 +10001806 case "$withval" in
1807 man|cat|doc)
1808 MANTYPE=$withval
1809 ;;
1810 *)
1811 AC_MSG_ERROR(invalid man type: $withval)
1812 ;;
1813 esac
Damien Miller670a4b82000-01-22 13:53:11 +11001814 ]
1815)
Ben Lindstrombc709922001-04-18 18:04:21 +00001816if test -z "$MANTYPE"; then
Tim Rice07183b82001-04-25 21:40:28 -07001817 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, /usr/bin:/usr/ucb)
Ben Lindstrombc709922001-04-18 18:04:21 +00001818 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
1819 MANTYPE=doc
1820 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
1821 MANTYPE=man
1822 else
1823 MANTYPE=cat
1824 fi
1825fi
Damien Miller670a4b82000-01-22 13:53:11 +11001826AC_SUBST(MANTYPE)
Ben Lindstrombc709922001-04-18 18:04:21 +00001827if test "$MANTYPE" = "doc"; then
1828 mansubdir=man;
1829else
1830 mansubdir=$MANTYPE;
1831fi
1832AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11001833
Damien Millera22ba012000-03-02 23:09:20 +11001834# Check whether to enable MD5 passwords
Damien Miller7b22d652000-06-18 14:07:04 +10001835MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11001836AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11001837 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11001838 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001839 if test "x$withval" != "xno" ; then
Damien Miller8bdeee21999-12-30 15:50:54 +11001840 AC_DEFINE(HAVE_MD5_PASSWORDS)
Damien Miller7b22d652000-06-18 14:07:04 +10001841 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11001842 fi
1843 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11001844)
1845
Damien Millera22ba012000-03-02 23:09:20 +11001846# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11001847AC_ARG_WITH(shadow,
1848 [ --without-shadow Disable shadow password support],
1849 [
1850 if test "x$withval" = "xno" ; then
1851 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10001852 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11001853 fi
1854 ]
1855)
1856
Damien Miller1f335fb2000-06-26 11:31:33 +10001857if test -z "$disable_shadow" ; then
1858 AC_MSG_CHECKING([if the systems has expire shadow information])
1859 AC_TRY_COMPILE(
1860 [
1861#include <sys/types.h>
1862#include <shadow.h>
1863 struct spwd sp;
1864 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
1865 [ sp_expire_available=yes ], []
1866 )
1867
1868 if test "x$sp_expire_available" = "xyes" ; then
1869 AC_MSG_RESULT(yes)
1870 AC_DEFINE(HAS_SHADOW_EXPIRE)
1871 else
1872 AC_MSG_RESULT(no)
1873 fi
1874fi
1875
Damien Millera22ba012000-03-02 23:09:20 +11001876# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11001877if test ! -z "$IPADDR_IN_DISPLAY" ; then
1878 DISPLAY_HACK_MSG="yes"
1879 AC_DEFINE(IPADDR_IN_DISPLAY)
1880else
1881 DISPLAY_HACK_MSG="no"
1882 AC_ARG_WITH(ipaddr-display,
1883 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
1884 [
1885 if test "x$withval" != "xno" ; then
1886 AC_DEFINE(IPADDR_IN_DISPLAY)
1887 DISPLAY_HACK_MSG="yes"
1888 fi
1889 ]
1890 )
1891fi
Damien Miller76112de1999-12-21 11:18:08 +11001892
Damien Millera22ba012000-03-02 23:09:20 +11001893# Whether to mess with the default path
Damien Miller7b22d652000-06-18 14:07:04 +10001894SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11001895AC_ARG_WITH(default-path,
Damien Miller5a3e6831999-12-27 09:48:56 +11001896 [ --with-default-path=PATH Specify default \$PATH environment for server],
1897 [
1898 if test "x$withval" != "xno" ; then
Tim Rice59ea0a02001-03-10 13:50:45 -08001899 user_path="$withval"
Damien Miller7b22d652000-06-18 14:07:04 +10001900 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11001901 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08001902 ],
1903 [
1904 AC_TRY_RUN(
1905 [
1906/* find out what STDPATH is */
1907#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08001908#ifdef HAVE_PATHS_H
1909# include <paths.h>
1910#endif
1911#ifndef _PATH_STDPATH
1912# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
1913#endif
1914#include <sys/types.h>
1915#include <sys/stat.h>
1916#include <fcntl.h>
1917#define DATA "conftest.stdpath"
1918
1919main()
1920{
1921 FILE *fd;
1922 int rc;
1923
1924 fd = fopen(DATA,"w");
1925 if(fd == NULL)
1926 exit(1);
1927
1928 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
1929 exit(1);
1930
1931 exit(0);
1932}
1933 ], [ user_path=`cat conftest.stdpath` ],
1934 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
1935 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
1936 )
1937# make sure $bindir is in USER_PATH so scp will work
1938 t_bindir=`eval echo ${bindir}`
1939 case $t_bindir in
1940 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
1941 esac
1942 case $t_bindir in
1943 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
1944 esac
1945 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
1946 if test $? -ne 0 ; then
1947 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
1948 if test $? -ne 0 ; then
1949 user_path=$user_path:$t_bindir
1950 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
1951 fi
1952 fi
Damien Miller5a3e6831999-12-27 09:48:56 +11001953 ]
1954)
Tim Rice59ea0a02001-03-10 13:50:45 -08001955AC_DEFINE_UNQUOTED(USER_PATH, "$user_path")
1956AC_SUBST(user_path)
Damien Miller5a3e6831999-12-27 09:48:56 +11001957
Damien Millera22ba012000-03-02 23:09:20 +11001958# Whether to force IPv4 by default (needed on broken glibc Linux)
Damien Miller7b22d652000-06-18 14:07:04 +10001959IPV4_HACK_MSG="no"
Damien Miller7d80e342000-01-19 14:36:49 +11001960AC_ARG_WITH(ipv4-default,
1961 [ --with-ipv4-default Use IPv4 by connections unless '-6' specified],
1962 [
1963 if test "x$withval" != "xno" ; then
1964 AC_DEFINE(IPV4_DEFAULT)
Damien Miller7b22d652000-06-18 14:07:04 +10001965 IPV4_HACK_MSG="yes"
Damien Miller7d80e342000-01-19 14:36:49 +11001966 fi
1967 ]
1968)
1969
Damien Miller61e50f12000-05-08 20:49:37 +10001970AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Miller7b22d652000-06-18 14:07:04 +10001971IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11001972AC_ARG_WITH(4in6,
1973 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
1974 [
1975 if test "x$withval" != "xno" ; then
1976 AC_MSG_RESULT(yes)
1977 AC_DEFINE(IPV4_IN_IPV6)
Damien Miller7b22d652000-06-18 14:07:04 +10001978 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11001979 else
1980 AC_MSG_RESULT(no)
1981 fi
1982 ],[
1983 if test "x$inet6_default_4in6" = "xyes"; then
1984 AC_MSG_RESULT([yes (default)])
1985 AC_DEFINE(IPV4_IN_IPV6)
Damien Miller7b22d652000-06-18 14:07:04 +10001986 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11001987 else
1988 AC_MSG_RESULT([no (default)])
1989 fi
1990 ]
1991)
1992
Damien Miller60396b02001-02-18 17:01:00 +11001993# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11001994BSD_AUTH_MSG=no
Damien Miller60396b02001-02-18 17:01:00 +11001995AC_ARG_WITH(bsd-auth,
1996 [ --with-bsd-auth Enable BSD auth support],
1997 [
1998 if test "x$withval" != "xno" ; then
1999 AC_DEFINE(BSD_AUTH)
Damien Miller6c21c512002-01-22 21:57:53 +11002000 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11002001 fi
2002 ]
2003)
2004
Damien Miller78315eb2000-09-29 23:01:36 +11002005AC_MSG_CHECKING(whether to install ssh as suid root)
2006AC_ARG_ENABLE(suid-ssh,
2007[ --enable-suid-ssh Install ssh as suid root (default)
2008 --disable-suid-ssh Install ssh without suid bit],
2009[ case "$enableval" in
2010 no)
2011 AC_MSG_RESULT(no)
2012 SSHMODE=0711
2013 ;;
2014 *) AC_MSG_RESULT(yes)
Ben Lindstrom8e2aa5b2001-07-24 17:00:13 +00002015 SSHMODE=4711
Damien Miller78315eb2000-09-29 23:01:36 +11002016 ;;
2017 esac ],
2018 AC_MSG_RESULT(yes)
Ben Lindstrom8e2aa5b2001-07-24 17:00:13 +00002019 SSHMODE=4711
Damien Miller78315eb2000-09-29 23:01:36 +11002020)
2021AC_SUBST(SSHMODE)
2022
2023
Damien Millera22ba012000-03-02 23:09:20 +11002024# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11002025piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11002026# make sure the directory exists
2027if test ! -d $piddir ; then
2028 piddir=`eval echo ${sysconfdir}`
2029 case $piddir in
2030 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
2031 esac
2032fi
2033
Tim Rice88f2ab52002-03-17 12:17:34 -08002034AC_ARG_WITH(pid-dir,
2035 [ --with-pid-dir=PATH Specify location of ssh.pid file],
2036 [
2037 if test "x$withval" != "xno" ; then
2038 piddir=$withval
2039 if test ! -d $piddir ; then
2040 AC_MSG_WARN([** no $piddir directory on this system **])
2041 fi
2042 fi
2043 ]
2044)
2045
Ben Lindstrom226cfa02001-01-22 05:34:40 +00002046AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir")
Damien Millerb13c73e2000-01-17 22:02:17 +11002047AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11002048
andre2ff7b5d2000-06-03 14:57:40 +00002049dnl allow user to disable some login recording features
2050AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00002051 [ --disable-lastlog disable use of lastlog even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002052 [ AC_DEFINE(DISABLE_LASTLOG) ]
2053)
2054AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00002055 [ --disable-utmp disable use of utmp even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002056 [ AC_DEFINE(DISABLE_UTMP) ]
2057)
2058AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00002059 [ --disable-utmpx disable use of utmpx even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002060 [ AC_DEFINE(DISABLE_UTMPX) ]
2061)
2062AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00002063 [ --disable-wtmp disable use of wtmp even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002064 [ AC_DEFINE(DISABLE_WTMP) ]
2065)
2066AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00002067 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002068 [ AC_DEFINE(DISABLE_WTMPX) ]
2069)
2070AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00002071 [ --disable-libutil disable use of libutil (login() etc.) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002072 [ AC_DEFINE(DISABLE_LOGIN) ]
2073)
2074AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00002075 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002076 [ AC_DEFINE(DISABLE_PUTUTLINE) ]
2077)
2078AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00002079 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00002080 [ AC_DEFINE(DISABLE_PUTUTXLINE) ]
2081)
2082AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00002083 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11002084 [
2085 if test "x$withval" = "xno" ; then
2086 AC_DEFINE(DISABLE_LASTLOG)
2087 else
2088 conf_lastlog_location=$withval
2089 fi
2090 ]
2091)
andre2ff7b5d2000-06-03 14:57:40 +00002092
2093dnl lastlog, [uw]tmpx? detection
2094dnl NOTE: set the paths in the platform section to avoid the
2095dnl need for command-line parameters
2096dnl lastlog and [uw]tmp are subject to a file search if all else fails
2097
2098dnl lastlog detection
2099dnl NOTE: the code itself will detect if lastlog is a directory
2100AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
2101AC_TRY_COMPILE([
2102#include <sys/types.h>
2103#include <utmp.h>
2104#ifdef HAVE_LASTLOG_H
2105# include <lastlog.h>
2106#endif
Damien Miller2994e082000-06-04 15:51:47 +10002107#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002108# include <paths.h>
2109#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002110#ifdef HAVE_LOGIN_H
2111# include <login.h>
2112#endif
andre2ff7b5d2000-06-03 14:57:40 +00002113 ],
2114 [ char *lastlog = LASTLOG_FILE; ],
2115 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10002116 [
2117 AC_MSG_RESULT(no)
2118 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
2119 AC_TRY_COMPILE([
2120#include <sys/types.h>
2121#include <utmp.h>
2122#ifdef HAVE_LASTLOG_H
2123# include <lastlog.h>
2124#endif
2125#ifdef HAVE_PATHS_H
2126# include <paths.h>
2127#endif
2128 ],
2129 [ char *lastlog = _PATH_LASTLOG; ],
2130 [ AC_MSG_RESULT(yes) ],
2131 [
andree441aa32000-06-12 22:34:38 +00002132 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10002133 system_lastlog_path=no
2134 ])
2135 ]
andre2ff7b5d2000-06-03 14:57:40 +00002136)
Damien Miller2994e082000-06-04 15:51:47 +10002137
andre2ff7b5d2000-06-03 14:57:40 +00002138if test -z "$conf_lastlog_location"; then
2139 if test x"$system_lastlog_path" = x"no" ; then
2140 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10002141 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00002142 conf_lastlog_location=$f
2143 fi
2144 done
2145 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00002146 AC_MSG_WARN([** Cannot find lastlog **])
2147 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00002148 fi
2149 fi
2150fi
2151
2152if test -n "$conf_lastlog_location"; then
2153 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location")
2154fi
2155
2156dnl utmp detection
2157AC_MSG_CHECKING([if your system defines UTMP_FILE])
2158AC_TRY_COMPILE([
2159#include <sys/types.h>
2160#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10002161#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002162# include <paths.h>
2163#endif
2164 ],
2165 [ char *utmp = UTMP_FILE; ],
2166 [ AC_MSG_RESULT(yes) ],
2167 [ AC_MSG_RESULT(no)
2168 system_utmp_path=no ]
2169)
2170if test -z "$conf_utmp_location"; then
2171 if test x"$system_utmp_path" = x"no" ; then
2172 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
2173 if test -f $f ; then
2174 conf_utmp_location=$f
2175 fi
2176 done
2177 if test -z "$conf_utmp_location"; then
2178 AC_DEFINE(DISABLE_UTMP)
2179 fi
2180 fi
2181fi
2182if test -n "$conf_utmp_location"; then
2183 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location")
2184fi
2185
2186dnl wtmp detection
2187AC_MSG_CHECKING([if your system defines WTMP_FILE])
2188AC_TRY_COMPILE([
2189#include <sys/types.h>
2190#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10002191#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002192# include <paths.h>
2193#endif
2194 ],
2195 [ char *wtmp = WTMP_FILE; ],
2196 [ AC_MSG_RESULT(yes) ],
2197 [ AC_MSG_RESULT(no)
2198 system_wtmp_path=no ]
2199)
2200if test -z "$conf_wtmp_location"; then
2201 if test x"$system_wtmp_path" = x"no" ; then
2202 for f in /usr/adm/wtmp /var/log/wtmp; do
2203 if test -f $f ; then
2204 conf_wtmp_location=$f
2205 fi
2206 done
2207 if test -z "$conf_wtmp_location"; then
2208 AC_DEFINE(DISABLE_WTMP)
2209 fi
2210 fi
2211fi
2212if test -n "$conf_wtmp_location"; then
2213 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location")
2214fi
2215
2216
2217dnl utmpx detection - I don't know any system so perverse as to require
2218dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
2219dnl there, though.
2220AC_MSG_CHECKING([if your system defines UTMPX_FILE])
2221AC_TRY_COMPILE([
2222#include <sys/types.h>
2223#include <utmp.h>
2224#ifdef HAVE_UTMPX_H
2225#include <utmpx.h>
2226#endif
Damien Miller2994e082000-06-04 15:51:47 +10002227#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002228# include <paths.h>
2229#endif
2230 ],
2231 [ char *utmpx = UTMPX_FILE; ],
2232 [ AC_MSG_RESULT(yes) ],
2233 [ AC_MSG_RESULT(no)
2234 system_utmpx_path=no ]
2235)
2236if test -z "$conf_utmpx_location"; then
2237 if test x"$system_utmpx_path" = x"no" ; then
2238 AC_DEFINE(DISABLE_UTMPX)
2239 fi
2240else
2241 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location")
2242fi
2243
2244dnl wtmpx detection
2245AC_MSG_CHECKING([if your system defines WTMPX_FILE])
2246AC_TRY_COMPILE([
2247#include <sys/types.h>
2248#include <utmp.h>
2249#ifdef HAVE_UTMPX_H
2250#include <utmpx.h>
2251#endif
Damien Miller2994e082000-06-04 15:51:47 +10002252#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002253# include <paths.h>
2254#endif
2255 ],
2256 [ char *wtmpx = WTMPX_FILE; ],
2257 [ AC_MSG_RESULT(yes) ],
2258 [ AC_MSG_RESULT(no)
2259 system_wtmpx_path=no ]
2260)
2261if test -z "$conf_wtmpx_location"; then
2262 if test x"$system_wtmpx_path" = x"no" ; then
2263 AC_DEFINE(DISABLE_WTMPX)
2264 fi
2265else
2266 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location")
2267fi
2268
Damien Miller4018c192000-04-30 09:30:44 +10002269
Damien Miller29ea30d2000-03-17 10:54:15 +11002270if test ! -z "$blibpath" ; then
2271 LDFLAGS="$LDFLAGS -blibpath:$blibpath"
2272 AC_MSG_WARN([Please check and edit -blibpath in LDFLAGS in Makefile])
2273fi
2274
Tim Rice4cec93f2002-02-26 08:40:48 -08002275dnl remove pam and dl because they are in $LIBPAM
2276if test "$PAM_MSG" = yes ; then
Tim Rice7d2d1f12002-02-26 22:05:11 -08002277 LIBS=`echo $LIBS | sed 's/-lpam //'`
2278fi
2279if test "$ac_cv_lib_pam_pam_set_item" = yes ; then
2280 LIBS=`echo $LIBS | sed 's/-ldl //'`
Tim Rice4cec93f2002-02-26 08:40:48 -08002281fi
2282
Damien Millerbac2d8a2000-09-05 16:13:06 +11002283AC_EXEEXT
Tim Rice13aae5e2001-10-21 17:53:58 -07002284AC_CONFIG_FILES([Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds])
2285AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10002286
Damien Miller7b22d652000-06-18 14:07:04 +10002287# Print summary of options
2288
Damien Miller7b22d652000-06-18 14:07:04 +10002289# Someone please show me a better way :)
2290A=`eval echo ${prefix}` ; A=`eval echo ${A}`
2291B=`eval echo ${bindir}` ; B=`eval echo ${B}`
2292C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
2293D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00002294E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00002295F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10002296G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Tim Rice59ea0a02001-03-10 13:50:45 -08002297H=`eval echo ${user_path}` ; H=`eval echo ${H}`
Damien Miller7b22d652000-06-18 14:07:04 +10002298
2299echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00002300echo "OpenSSH has been configured with the following options:"
Damien Miller7b22d652000-06-18 14:07:04 +10002301echo " User binaries: $B"
2302echo " System binaries: $C"
2303echo " Configuration files: $D"
2304echo " Askpass program: $E"
2305echo " Manual pages: $F"
2306echo " PID file: $G"
Tim Rice59ea0a02001-03-10 13:50:45 -08002307echo " sshd default user PATH: $H"
Damien Miller897741e2001-04-16 10:41:46 +10002308echo " Manpage format: $MANTYPE"
Damien Miller7b22d652000-06-18 14:07:04 +10002309echo " PAM support: ${PAM_MSG}"
2310echo " KerberosIV support: $KRB4_MSG"
Damien Miller85de5802001-09-18 14:01:11 +10002311echo " Smartcard support: $SCARD_MSG"
Damien Miller7b22d652000-06-18 14:07:04 +10002312echo " AFS support: $AFS_MSG"
2313echo " S/KEY support: $SKEY_MSG"
2314echo " TCP Wrappers support: $TCPW_MSG"
2315echo " MD5 password support: $MD5_MSG"
2316echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
2317echo " Use IPv4 by default hack: $IPV4_HACK_MSG"
2318echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
Damien Miller6c21c512002-01-22 21:57:53 +11002319echo " BSD Auth support: $BSD_AUTH_MSG"
2320echo " Random number source: $RAND_MSG"
2321if test ! -z "$USE_RAND_HELPER" ; then
2322 echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
Damien Miller60396b02001-02-18 17:01:00 +11002323fi
2324
Damien Miller7b22d652000-06-18 14:07:04 +10002325echo ""
2326
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00002327echo " Host: ${host}"
2328echo " Compiler: ${CC}"
2329echo " Compiler flags: ${CFLAGS}"
2330echo "Preprocessor flags: ${CPPFLAGS}"
2331echo " Linker flags: ${LDFLAGS}"
Tim Rice4cec93f2002-02-26 08:40:48 -08002332echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}"
Damien Miller7b22d652000-06-18 14:07:04 +10002333
2334echo ""
2335
Damien Miller82cf0ce2000-12-20 13:34:48 +11002336if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002337 echo "PAM is enabled. You may need to install a PAM control file "
2338 echo "for sshd, otherwise password authentication may fail. "
2339 echo "Example PAM control files can be found in the contrib/ "
2340 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11002341 echo ""
2342fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00002343
2344if test ! -z "$NO_SFTP"; then
Damien Miller6c21c512002-01-22 21:57:53 +11002345 echo "sftp-server will be disabled. Your compiler does not "
2346 echo "support 64bit integers."
2347 echo ""
2348fi
2349
2350if test ! -z "$RAND_HELPER_CMDHASH" ; then
2351 echo "WARNING: you are using the builtin random number collection "
2352 echo "service. Please read WARNING.RNG and request that your OS "
2353 echo "vendor includes kernel-based random number collection in "
2354 echo "future versions of your OS."
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00002355 echo ""
2356fi
Damien Miller60396b02001-02-18 17:01:00 +11002357