blob: ac9a456a8b7363e407fbb4702b675e81a144a6eb [file] [log] [blame]
Damien Miller5dfe9762001-02-16 12:05:39 +11001# $Id: configure.in,v 1.242 2001/02/16 01:05:39 djm Exp $
Damien Millere9cf3572001-02-09 12:55:35 +11002
Damien Millerab18c411999-11-11 10:40:23 +11003AC_INIT(ssh.c)
Damien Miller7f6ea021999-10-28 13:25:17 +10004
5AC_CONFIG_HEADER(config.h)
Damien Miller856799b2000-03-15 21:18:10 +11006AC_PROG_CC
Damien Miller76112de1999-12-21 11:18:08 +11007AC_CANONICAL_HOST
Damien Miller7f6ea021999-10-28 13:25:17 +10008
Damien Millera22ba012000-03-02 23:09:20 +11009# Checks for programs.
Damien Millerab18c411999-11-11 10:40:23 +110010AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +100011AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110012AC_PROG_INSTALL
Ben Lindstrom582d3982001-02-06 22:54:30 +000013AC_PATH_PROG(AR, ar)
Damien Millere79334a1999-12-29 10:03:37 +110014AC_PATH_PROG(PERL, perl)
15AC_SUBST(PERL)
Damien Miller8d1fd572000-05-17 21:34:07 +100016AC_PATH_PROG(ENT, ent)
17AC_SUBST(ENT)
Damien Miller78315eb2000-09-29 23:01:36 +110018AC_PATH_PROGS(FILEPRIV, filepriv, true, /sbin:/usr/sbin)
Damien Miller4864e8f2001-02-08 10:07:08 +110019AC_PATH_PROG(TEST_MINUS_S_SH, bash)
20AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
21AC_PATH_PROG(TEST_MINUS_S_SH, sh)
Damien Miller2e1b0821999-12-25 10:11:29 +110022
Damien Miller3f62aba2000-11-29 11:56:35 +110023if test -z "$AR" ; then
24 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
25fi
26
Damien Millerad833b32000-08-23 10:46:23 +100027# Use LOGIN_PROGRAM from environment if possible
28if test ! -z "$LOGIN_PROGRAM" ; then
29 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM")
30else
31 # Search for login
32 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
33 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
34 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
35 fi
36fi
37
Damien Miller166bd442000-03-16 10:48:25 +110038if test -z "$LD" ; then
39 LD=$CC
40fi
41AC_SUBST(LD)
42
43# C Compiler features
44AC_C_INLINE
45if test "$GCC" = "yes"; then
46 CFLAGS="$CFLAGS -Wall"
47fi
48
Damien Millera22ba012000-03-02 23:09:20 +110049# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +110050case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +110051*-*-aix*)
52 AFS_LIBS="-lld"
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +000053 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Millerdb819592000-03-14 13:44:01 +110054 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Damien Milleredb82922000-06-20 13:25:52 +100055 if (test "$LD" != "gcc" && test -z "$blibpath"); then
Damien Miller29ea30d2000-03-17 10:54:15 +110056 blibpath="/usr/lib:/lib:/usr/local/lib"
57 fi
Damien Millerd2c208a2000-05-17 22:00:02 +100058 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)])
Damien Millereca71f82000-01-20 22:38:27 +110059 AC_DEFINE(BROKEN_GETADDRINFO)
andree441aa32000-06-12 22:34:38 +000060 MANTYPE='$(CATMAN)'
61 mansubdir=cat
andre60f3c982000-06-03 16:18:19 +000062 dnl AIX handles lastlog as part of its login message
63 AC_DEFINE(DISABLE_LASTLOG)
Damien Miller5fc85652000-07-09 23:53:07 +100064 MANTYPE='$(CATMAN)'
65 mansubdir=cat
Damien Miller75b1d102000-01-07 14:01:41 +110066 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +110067*-*-cygwin*)
Damien Milleref767ac2000-10-17 23:14:08 +110068 LIBS="$LIBS -lregex /usr/lib/textmode.o"
Damien Millerbac2d8a2000-09-05 16:13:06 +110069 AC_DEFINE(HAVE_CYGWIN)
Damien Millerbac2d8a2000-09-05 16:13:06 +110070 AC_DEFINE(DISABLE_SHADOW)
71 AC_DEFINE(IPV4_DEFAULT)
72 AC_DEFINE(IP_TOS_IS_BROKEN)
73 AC_DEFINE(BROKEN_VHANGUP)
Damien Millerbac2d8a2000-09-05 16:13:06 +110074 no_libsocket=1
75 no_libnsl=1
76 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +000077*-*-dgux*)
78 AC_DEFINE(IP_TOS_IS_BROKEN)
79 ;;
Damien Miller76112de1999-12-21 11:18:08 +110080*-*-hpux10*)
81 if test -z "$GCC"; then
Damien Millerfda78d92000-05-20 15:33:44 +100082 CFLAGS="$CFLAGS -Ae"
Damien Miller76112de1999-12-21 11:18:08 +110083 fi
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +000084 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE"
Damien Miller9a947342000-08-30 10:03:33 +110085 IPADDR_IN_DISPLAY=yes
Damien Millerb0785672000-08-23 09:10:39 +100086 AC_DEFINE(USE_PIPES)
Damien Miller8a1e6a62000-09-16 15:55:52 +110087 AC_DEFINE(DISABLE_SHADOW)
Damien Millerd6f204d2000-09-23 13:57:27 +110088 AC_DEFINE(DISABLE_UTMP)
Kevin Steves8848b242000-10-18 13:11:44 +000089 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Damien Miller8a1e6a62000-09-16 15:55:52 +110090 LIBS="$LIBS -lsec"
Damien Miller670a4b82000-01-22 13:53:11 +110091 MANTYPE='$(CATMAN)'
92 mansubdir=cat
Damien Miller76112de1999-12-21 11:18:08 +110093 ;;
Damien Miller1bead332000-04-30 00:47:29 +100094*-*-hpux11*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +000095 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE"
Damien Miller9a947342000-08-30 10:03:33 +110096 IPADDR_IN_DISPLAY=yes
Damien Miller82cf0ce2000-12-20 13:34:48 +110097 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller5552d7a2000-08-30 09:53:24 +110098 AC_DEFINE(USE_PIPES)
Damien Miller8a1e6a62000-09-16 15:55:52 +110099 AC_DEFINE(DISABLE_SHADOW)
Damien Millerd6f204d2000-09-23 13:57:27 +1100100 AC_DEFINE(DISABLE_UTMP)
Kevin Steves8848b242000-10-18 13:11:44 +0000101 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Damien Miller8a1e6a62000-09-16 15:55:52 +1100102 LIBS="$LIBS -lsec"
Damien Miller1bead332000-04-30 00:47:29 +1000103 MANTYPE='$(CATMAN)'
104 mansubdir=cat
105 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100106*-*-irix5*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000107 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller9e110892000-06-07 21:05:46 +1000108 LDFLAGS="$LDFLAGS"
Damien Miller190d5a82000-09-30 09:43:19 +1100109 PATH="$PATH:/usr/etc"
Damien Miller07278932000-01-22 14:05:37 +1100110 MANTYPE='$(CATMAN)'
Damien Miller1808f382000-01-06 12:03:12 +1100111 no_libsocket=1
112 no_libnsl=1
Damien Miller11fa2cc2000-08-16 10:35:58 +1000113 AC_DEFINE(BROKEN_INET_NTOA)
Damien Miller1808f382000-01-06 12:03:12 +1100114 ;;
115*-*-irix6*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000116 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller9e110892000-06-07 21:05:46 +1000117 LDFLAGS="$LDFLAGS"
Damien Miller190d5a82000-09-30 09:43:19 +1100118 PATH="$PATH:/usr/etc"
Damien Miller07278932000-01-22 14:05:37 +1100119 MANTYPE='$(CATMAN)'
Damien Miller91606b12000-06-28 08:22:29 +1000120 AC_DEFINE(WITH_IRIX_ARRAY)
121 AC_DEFINE(WITH_IRIX_PROJECT)
122 AC_DEFINE(WITH_IRIX_AUDIT)
Ben Lindstrom4a1d9162000-11-21 10:45:31 +0000123 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS)])
Damien Millerbeb4ba51999-12-28 15:09:35 +1100124 no_libsocket=1
125 no_libnsl=1
Damien Miller11fa2cc2000-08-16 10:35:58 +1000126 AC_DEFINE(BROKEN_INET_NTOA)
Ben Lindstrom75214f92000-12-01 21:19:51 +0000127 mansubdir=man
Damien Millerbeb4ba51999-12-28 15:09:35 +1100128 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100129*-*-linux*)
130 no_dev_ptmx=1
Damien Millera64b57a2001-01-17 10:44:13 +1100131 check_for_libcrypt_later=1
Damien Miller7bcb0892000-03-11 20:45:40 +1100132 AC_DEFINE(DONT_TRY_OTHER_AF)
Damien Miller4e997202000-07-09 21:21:52 +1000133 AC_DEFINE(PAM_TTY_KLUDGE)
Damien Miller7bcb0892000-03-11 20:45:40 +1100134 inet6_default_4in6=yes
Damien Millerb29ea912000-01-15 14:12:03 +1100135 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000136mips-sony-bsd|mips-sony-newsos4)
137 AC_DEFINE(HAVE_NEWS4)
138 SONY=1
139 AC_CHECK_LIB(iberty, xatexit, AC_DEFINE(HAVE_XATEXIT),
Damien Miller5dfe9762001-02-16 12:05:39 +1100140 AC_MSG_ERROR([*** libiberty missing - please install first or check config.log ***])
Ben Lindstromb5628642000-10-18 00:02:25 +0000141 )
142 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100143*-*-netbsd*)
Damien Millera22ba012000-03-02 23:09:20 +1100144 need_dash_r=1
Damien Milleree1c0b32000-01-21 00:18:15 +1100145 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000146*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000147 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100148 conf_utmp_location=/etc/utmp
149 conf_wtmp_location=/usr/adm/wtmp
150 MAIL=/usr/spool/mail
Damien Miller0f91b4e2000-06-18 15:43:25 +1000151 AC_DEFINE(HAVE_NEXT)
Ben Lindstromb4df15d2000-10-15 00:17:36 +0000152 AC_DEFINE(BROKEN_REALPATH)
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000153 AC_DEFINE(USE_PIPES)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000154 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Ben Lindstrom321ae732000-12-31 15:00:23 +0000155 CFLAGS="$CFLAGS"
Damien Miller0f91b4e2000-06-18 15:43:25 +1000156 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100157*-*-solaris*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000158 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller08c788a2000-03-16 07:52:29 +1100159 LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib -L/usr/ucblib -R/usr/ucblib"
Damien Millera22ba012000-03-02 23:09:20 +1100160 need_dash_r=1
Damien Miller82cf0ce2000-12-20 13:34:48 +1100161 AC_DEFINE(PAM_SUN_CODEBASE)
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 Miller36ccb5c2000-08-09 16:34:27 +1000178 conf_utmp_location=/etc/utmp
179 conf_wtmp_location=/var/adm/wtmp
180 conf_lastlog_location=/var/adm/lastlog
Damien Millerb0785672000-08-23 09:10:39 +1000181 AC_DEFINE(USE_PIPES)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000182 MANTYPE='$(CATMAN)'
183 mansubdir=cat
Damien Millerdfc83f42000-05-20 15:02:59 +1000184 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000185*-ncr-sysv*)
186 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
187 LDFLAGS="$LDFLAGS -L/usr/local/lib"
188 MANTYPE='$(CATMAN)'
189 mansubdir=cat
190 LIBS="$LIBS -lc89 -lnsl -lgen -lsocket"
191 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000192*-sni-sysv*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000193 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller2ae714f2000-07-11 09:29:50 +1000194 LDFLAGS="$LDFLAGS -L/usr/local/lib -L/usr/ucblib"
195 MANTYPE='$(CATMAN)'
Damien Millerfd9885e2001-01-10 08:16:53 +1100196 IPADDR_IN_DISPLAY=yes
197 AC_DEFINE(USE_PIPES)
Damien Miller2ae714f2000-07-11 09:29:50 +1000198 AC_DEFINE(IP_TOS_IS_BROKEN)
199 mansubdir=cat
Damien Millerb2dc28e2000-07-12 09:18:33 +1000200 LIBS="$LIBS -lgen -lnsl -lucb"
Damien Miller2ae714f2000-07-11 09:29:50 +1000201 ;;
Damien Miller78315eb2000-09-29 23:01:36 +1100202*-*-sysv4.2*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000203 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller78315eb2000-09-29 23:01:36 +1100204 LDFLAGS="$LDFLAGS -L/usr/local/lib"
205 MANTYPE='$(CATMAN)'
206 mansubdir=cat
Damien Miller78315eb2000-09-29 23:01:36 +1100207 enable_suid_ssh=no
Damien Miller5dfe9762001-02-16 12:05:39 +1100208 AC_DEFINE(USE_PIPES)
Damien Miller78315eb2000-09-29 23:01:36 +1100209 ;;
210*-*-sysv5*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000211 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller78315eb2000-09-29 23:01:36 +1100212 LDFLAGS="$LDFLAGS -L/usr/local/lib"
213 MANTYPE='$(CATMAN)'
214 mansubdir=cat
Damien Miller78315eb2000-09-29 23:01:36 +1100215 enable_suid_ssh=no
Damien Miller5dfe9762001-02-16 12:05:39 +1100216 AC_DEFINE(USE_PIPES)
Damien Miller78315eb2000-09-29 23:01:36 +1100217 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100218*-*-sysv*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000219 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Millerdb819592000-03-14 13:44:01 +1100220 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Damien Miller0e1cf7c2000-01-26 12:15:30 +1100221 MANTYPE='$(CATMAN)'
222 mansubdir=cat
Damien Miller75b1d102000-01-07 14:01:41 +1100223 LIBS="$LIBS -lgen -lsocket"
224 ;;
Damien Miller78315eb2000-09-29 23:01:36 +1100225*-*-sco3.2v4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000226 CPPFLAGS="$CPPFLAGS -Dftruncate=chsize -I/usr/local/include"
Damien Miller78315eb2000-09-29 23:01:36 +1100227 LDFLAGS="$LDFLAGS -L/usr/local/lib"
228 MANTYPE='$(CATMAN)'
Ben Lindstrom980754c2000-11-12 00:04:24 +0000229 LIBS="$LIBS -lgen -lsocket -los -lprot -lx -ltinfo -lm"
Damien Miller5dfe9762001-02-16 12:05:39 +1100230 mansubdir=cat
Damien Miller78315eb2000-09-29 23:01:36 +1100231 rsh_path="/usr/bin/rcmd"
Damien Miller5dfe9762001-02-16 12:05:39 +1100232 RANLIB=true
233 no_dev_ptmx=1
234 AC_DEFINE(BROKEN_SYS_TERMIO_H)
235 AC_DEFINE(USE_PIPES)
Damien Miller78315eb2000-09-29 23:01:36 +1100236 AC_DEFINE(HAVE_SCO_PROTECTED_PW)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000237 AC_DEFINE(DISABLE_SHADOW)
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000238 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
Damien Miller78315eb2000-09-29 23:01:36 +1100239 ;;
240*-*-sco3.2v5*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000241 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Millera66626b2000-06-13 18:57:53 +1000242 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Damien Miller5dfe9762001-02-16 12:05:39 +1100243 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000244 MANTYPE='$(CATMAN)'
245 mansubdir=cat
Damien Millera66626b2000-06-13 18:57:53 +1000246 no_dev_ptmx=1
Damien Miller78315eb2000-09-29 23:01:36 +1100247 rsh_path="/usr/bin/rcmd"
Damien Miller5dfe9762001-02-16 12:05:39 +1100248 AC_DEFINE(USE_PIPES)
Damien Miller78315eb2000-09-29 23:01:36 +1100249 AC_DEFINE(HAVE_SCO_PROTECTED_PW)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000250 AC_DEFINE(DISABLE_SHADOW)
Ben Lindstrom42717bf2000-12-28 15:46:20 +0000251 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
Damien Millera66626b2000-06-13 18:57:53 +1000252 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000253*-dec-osf*)
254# This is untested
255 if test ! -z "USE_SIA" ; then
256 AC_MSG_CHECKING(for Digital Unix Security Integration Architecture)
257 if test -f /etc/sia/matrix.conf; then
258 AC_MSG_RESULT(yes)
259 AC_DEFINE(HAVE_OSF_SIA)
260 AC_DEFINE(DISABLE_LOGIN)
261 LIBS="$LIBS -lsecurity -ldb -lm -laud"
262 else
263 AC_MSG_RESULT(no)
264 fi
265 fi
266 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100267esac
268
Damien Millere37bfc12000-06-05 09:37:43 +1000269# Allow user to specify flags
270AC_ARG_WITH(cflags,
271 [ --with-cflags Specify additional flags to pass to compiler],
272 [
273 if test "x$withval" != "xno" ; then
274 CFLAGS="$CFLAGS $withval"
275 fi
276 ]
277)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000278AC_ARG_WITH(cppflags,
279 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
280 [
281 if test "x$withval" != "xno"; then
282 CPPFLAGS="$CPPFLAGS $withval"
283 fi
284 ]
285)
Damien Millere37bfc12000-06-05 09:37:43 +1000286AC_ARG_WITH(ldflags,
Ben Lindstrom2ed98182000-11-06 07:15:43 +0000287 [ --with-ldflags Specify additional flags to pass to linker],
Damien Millere37bfc12000-06-05 09:37:43 +1000288 [
289 if test "x$withval" != "xno" ; then
290 LDFLAGS="$LDFLAGS $withval"
291 fi
292 ]
293)
294AC_ARG_WITH(libs,
295 [ --with-libs Specify additional libraries to link with],
296 [
297 if test "x$withval" != "xno" ; then
298 LIBS="$LIBS $withval"
299 fi
300 ]
301)
302
Ben Lindstrom4e5a0aa2001-02-15 18:16:22 +0000303AC_ARG_WITH(pcre,
304 [ --with-pcre Override built in regex library with pcre],
305 [
306
307 AC_CHECK_LIB(pcre, pcre_info,
308 [
309 AC_DEFINE(HAVE_LIBPCRE)
310 LIBS="$LIBS -lpcreposix -lpcre"
311 no_comp_check="yes"
312 ],
313 [ AC_MSG_ERROR([*** Can not locate pcre libraries.]) ]
314 )
315 ]
316)
Damien Millere37bfc12000-06-05 09:37:43 +1000317
Damien Millera22ba012000-03-02 23:09:20 +1100318# Checks for libraries.
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000319if test -z "$no_libsocket" ; then
320 AC_CHECK_LIB(nsl, yp_match, , )
321fi
322if test -z "$no_libnsl" ; then
323 AC_CHECK_LIB(socket, main, , )
324fi
325
326AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen")
Damien Miller5dfe9762001-02-16 12:05:39 +1100327AC_CHECK_LIB(z, deflate, ,AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***]))
Damien Millerab18c411999-11-11 10:40:23 +1100328AC_CHECK_LIB(util, login, AC_DEFINE(HAVE_LIBUTIL_LOGIN) LIBS="$LIBS -lutil")
Damien Miller6f9c3372000-10-25 10:06:04 +1100329
Ben Lindstrom4e5a0aa2001-02-15 18:16:22 +0000330# We don't want to check if we did an pcre override.
331if test -z "$no_comp_check" ; then
332 AC_CHECK_FUNC(regcomp,
333 [ AC_DEFINE(HAVE_REGCOMP)],
334 [
335 AC_CHECK_LIB(pcre, pcre_info,
336 [
337 AC_DEFINE(HAVE_LIBPCRE)
338 LIBS="$LIBS -lpcreposix -lpcre"
339 ],
340 [
341 AC_MSG_ERROR([*** No regex library found.])
342 ])
343 ]
344 )
345fi
Damien Millerab18c411999-11-11 10:40:23 +1100346
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000347dnl UnixWare 2.x
348AC_CHECK_FUNC(strcasecmp,
349 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
350)
351AC_CHECK_FUNC(utimes,
352 [], [ AC_CHECK_LIB(c89, utimes, LIBS="$LIBS -lc89") ]
353)
Damien Millerab18c411999-11-11 10:40:23 +1100354
Damien Millera22ba012000-03-02 23:09:20 +1100355# Checks for header files.
Ben Lindstrom2320b192001-02-15 03:46:28 +0000356AC_CHECK_HEADERS(bstring.h endian.h floatingpoint.h getopt.h lastlog.h limits.h login.h login_cap.h maillock.h netdb.h netgroup.h netinet/in_systm.h paths.h poll.h pty.h regex.h shadow.h security/pam_appl.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h sys/poll.h sys/queue.h sys/select.h sys/stat.h sys/stropts.h sys/sysmacros.h sys/time.h sys/ttcompat.h sys/un.h stddef.h time.h ttyent.h usersec.h util.h utime.h utmp.h utmpx.h vis.h)
Damien Millerab18c411999-11-11 10:40:23 +1100357
Damien Millerc547bf12001-02-16 10:18:12 +1100358# Check whether user wants Kerberos support
359KRB4_MSG="no"
360AC_ARG_WITH(kerberos4,
361 [ --with-kerberos4=PATH Enable Kerberos 4 support],
362 [
363 if test "x$withval" != "xno" ; then
364
365 if test "x$withval" != "xyes" ; then
366 CPPFLAGS="$CPPFLAGS -I${withval}/include"
367 LDFLAGS="$LDFLAGS -L${withval}/lib"
368 if test ! -z "$need_dash_r" ; then
369 LDFLAGS="$LDFLAGS -R${withval}/lib"
370 fi
371 if test ! -z "$blibpath" ; then
372 blibpath="$blibpath:${withval}/lib"
373 fi
374 else
375 if test -d /usr/include/kerberosIV ; then
376 CPPFLAGS="$CPPFLAGS -I/usr/include/kerberosIV"
377 fi
378 fi
379
380 AC_CHECK_HEADERS(krb.h)
381 AC_CHECK_LIB(krb, main)
382 if test "$ac_cv_header_krb_h" != yes; then
383 AC_MSG_WARN([Cannot find krb.h, build may fail])
384 fi
385 if test "$ac_cv_lib_krb_main" != yes; then
386 AC_MSG_WARN([Cannot find libkrb, build may fail])
387 fi
388
389 KLIBS="-lkrb -ldes"
390 AC_CHECK_LIB(resolv, dn_expand, , )
391 KRB4=yes
392 KRB4_MSG="yes"
393 AC_DEFINE(KRB4)
394 fi
395 ]
396)
397
398# Check whether user wants AFS support
399AFS_MSG="no"
400AC_ARG_WITH(afs,
401 [ --with-afs=PATH Enable AFS support],
402 [
403 if test "x$withval" != "xno" ; then
404
405 if test "x$withval" != "xyes" ; then
406 CPPFLAGS="$CPPFLAGS -I${withval}/include"
407 LDFLAGS="$LDFLAGS -L${withval}/lib"
408 fi
409
410 if test -z "$KRB4" ; then
411 AC_MSG_WARN([AFS requires Kerberos IV support, build may fail])
412 fi
413
414 LIBS="$LIBS -lkafs"
415 if test ! -z "$AFS_LIBS" ; then
416 LIBS="$LIBS $AFS_LIBS"
417 fi
418 AC_DEFINE(AFS)
419 AFS_MSG="yes"
420 fi
421 ]
422)
423LIBS="$LIBS $KLIBS"
424
425# Check whether user wants S/Key support
426SKEY_MSG="no"
427AC_ARG_WITH(skey,
428 [ --with-skey=PATH Enable S/Key support],
429 [
430 if test "x$withval" != "xno" ; then
431
432 if test "x$withval" != "xyes" ; then
433 CPPFLAGS="$CPPFLAGS -I${withval}/include"
434 LDFLAGS="$LDFLAGS -L${withval}/lib"
435 fi
436
437 AC_DEFINE(SKEY)
438 LIBS="-lskey $LIBS"
439 SKEY_MSG="yes"
440
441 AC_CHECK_FUNC(skey_keyinfo,
442 [],
443 [
444 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
445 ])
446 fi
447 ]
448)
449
450# Check whether user wants TCP wrappers support
451TCPW_MSG="no"
452AC_ARG_WITH(tcp-wrappers,
453 [ --with-tcp-wrappers Enable tcpwrappers support],
454 [
455 if test "x$withval" != "xno" ; then
456 saved_LIBS="$LIBS"
457 LIBS="-lwrap $LIBS"
458 AC_MSG_CHECKING(for libwrap)
459 AC_TRY_LINK(
460 [
461#include <tcpd.h>
462 int deny_severity = 0, allow_severity = 0;
463 ],
464 [hosts_access(0);],
465 [
466 AC_MSG_RESULT(yes)
467 AC_DEFINE(LIBWRAP)
468 TCPW_MSG="yes"
469 ],
470 [
471 AC_MSG_ERROR([*** libwrap missing])
472 ]
473 )
474 fi
475 ]
476)
477
Damien Millerad833b32000-08-23 10:46:23 +1000478dnl Checks for library functions.
Ben Lindstrom34bb0c72001-02-13 02:40:56 +0000479AC_CHECK_FUNCS(arc4random atexit b64_ntop bcopy bindresvport_sa clock fchown fchmod freeaddrinfo futimes gai_strerror getcwd getaddrinfo getgrouplist getnameinfo getrlimit getrusage getttyent inet_aton inet_ntoa innetgr login_getcapbool md5_crypt memmove mkdtemp on_exit openpty realpath rresvport_af setdtablesize setenv seteuid setlogin setproctitle setreuid setrlimit setsid sigaction sigvec snprintf strerror strlcat strlcpy strmode strsep strtok_r sysconf tcgetpgrp utimes vsnprintf vhangup vis waitpid _getpty __b64_ntop)
Damien Millerad833b32000-08-23 10:46:23 +1000480dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +0000481AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +1000482dnl Checks for libutil functions
Ben Lindstrome2fb8d32000-12-28 00:07:07 +0000483AC_CHECK_HEADERS(libutil.h)
andre2ff7b5d2000-06-03 14:57:40 +0000484AC_CHECK_FUNCS(login logout updwtmp logwtmp)
Damien Millerad833b32000-08-23 10:46:23 +1000485dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000486AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +0000487AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +1000488dnl Checks for utmpx functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000489AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
andre2ff7b5d2000-06-03 14:57:40 +0000490AC_CHECK_FUNCS(setutxent utmpxname)
Damien Millercedfecc1999-11-15 14:36:53 +1100491
Damien Miller5fc85652000-07-09 23:53:07 +1000492AC_CHECK_FUNC(getuserattr,
493 [AC_DEFINE(HAVE_GETUSERATTR)],
494 [AC_CHECK_LIB(s, getuserattr, [LIBS="$LIBS -ls"; AC_DEFINE(HAVE_GETUSERATTR)])]
495)
496
Damien Miller04f80141999-11-19 15:32:34 +1100497AC_CHECK_FUNC(login,
498 [AC_DEFINE(HAVE_LOGIN)],
499 [AC_CHECK_LIB(bsd, login, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_LOGIN)])]
500)
501
502AC_CHECK_FUNC(daemon,
503 [AC_DEFINE(HAVE_DAEMON)],
504 [AC_CHECK_LIB(bsd, daemon, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
505)
506
Damien Miller9fb07e42000-03-05 16:22:59 +1100507AC_CHECK_FUNC(getpagesize,
508 [AC_DEFINE(HAVE_GETPAGESIZE)],
509 [AC_CHECK_LIB(ucb, getpagesize, [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
510)
511
Damien Millercb170cb2000-07-01 16:52:55 +1000512# Check for broken snprintf
513if test "x$ac_cv_func_snprintf" = "xyes" ; then
514 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
515 AC_TRY_RUN(
516 [
517#include <stdio.h>
518int main(void){char b[5];snprintf(b,5,"123456789");return(b[4]!='\0');}
519 ],
520 [AC_MSG_RESULT(yes)],
521 [
522 AC_MSG_RESULT(no)
523 AC_DEFINE(BROKEN_SNPRINTF)
524 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
525 ]
526 )
527fi
528
Damien Miller606f8802000-09-16 15:39:56 +1100529AC_FUNC_GETPGRP
530
Ben Lindstromec3830a2001-01-25 00:07:33 +0000531AC_FUNC_STRFTIME
532
Damien Millera64b57a2001-01-17 10:44:13 +1100533# Check for PAM libs
Damien Miller7b22d652000-06-18 14:07:04 +1000534PAM_MSG="no"
Damien Millera22ba012000-03-02 23:09:20 +1100535AC_ARG_WITH(pam,
Damien Millera64b57a2001-01-17 10:44:13 +1100536 [ --with-pam Enable PAM support ],
Damien Millera22ba012000-03-02 23:09:20 +1100537 [
Damien Millera64b57a2001-01-17 10:44:13 +1100538 if test "x$withval" != "xno" ; then
539 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" ; then
540 AC_MSG_ERROR([PAM headers not found])
541 fi
542
543 AC_CHECK_LIB(dl, dlopen, , )
544 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
545 AC_CHECK_FUNCS(pam_getenvlist)
546
547 disable_shadow=yes
548 PAM_MSG="yes"
549
550 AC_DEFINE(USE_PAM)
Damien Millera22ba012000-03-02 23:09:20 +1100551 fi
552 ]
553)
Damien Millera22ba012000-03-02 23:09:20 +1100554
Damien Millera64b57a2001-01-17 10:44:13 +1100555# Check for older PAM
556if test "x$PAM_MSG" = "xyes" ; then
Damien Millera22ba012000-03-02 23:09:20 +1100557 # Check PAM strerror arguments (old PAM)
558 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
559 AC_TRY_COMPILE(
560 [
Damien Miller81171112000-04-23 11:14:01 +1000561#include <stdlib.h>
562#include <security/pam_appl.h>
Damien Millera22ba012000-03-02 23:09:20 +1100563 ],
564 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
565 [AC_MSG_RESULT(no)],
566 [
567 AC_DEFINE(HAVE_OLD_PAM)
568 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +1000569 PAM_MSG="yes (old library)"
Damien Millera22ba012000-03-02 23:09:20 +1100570 ]
Damien Millera64b57a2001-01-17 10:44:13 +1100571 )
Damien Millera22ba012000-03-02 23:09:20 +1100572fi
573
574# The big search for OpenSSL
575AC_ARG_WITH(ssl-dir,
576 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
577 [
Ben Lindstrom23e13712000-10-29 22:49:19 +0000578 if test "x$withval" != "xno" ; then
Damien Millera22ba012000-03-02 23:09:20 +1100579 tryssldir=$withval
580 fi
581 ]
582)
583
584saved_LIBS="$LIBS"
Damien Millera1ad4802000-03-15 10:04:54 +1100585saved_LDFLAGS="$LDFLAGS"
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000586saved_CPPFLAGS="$CPPFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +1100587if test "x$prefix" != "xNONE" ; then
588 tryssldir="$tryssldir $prefix"
589fi
Damien Miller61e50f12000-05-08 20:49:37 +1000590AC_CACHE_CHECK([for OpenSSL directory], ac_cv_openssldir, [
Damien Millera22ba012000-03-02 23:09:20 +1100591
Damien Millera1b61e12000-09-16 17:02:16 +1100592 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 Millera64b57a2001-01-17 10:44:13 +1100593 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
Damien Miller61e50f12000-05-08 20:49:37 +1000594 LDFLAGS="$saved_LDFLAGS -L$ssldir/lib -L$ssldir"
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000595 CPPFLAGS="$saved_CPPFLAGS -I$ssldir/include"
Damien Miller61e50f12000-05-08 20:49:37 +1000596 if test ! -z "$need_dash_r" ; then
597 LDFLAGS="$LDFLAGS -R$ssldir/lib -R$ssldir"
598 fi
Damien Millera1ad4802000-03-15 10:04:54 +1100599 else
Damien Miller61e50f12000-05-08 20:49:37 +1000600 LDFLAGS="$saved_LDFLAGS"
Damien Millerb85dcad2000-03-11 11:37:00 +1100601 fi
602
Damien Miller3b512e12000-05-17 23:29:18 +1000603 LIBS="$saved_LIBS -lcrypto"
Damien Miller61e50f12000-05-08 20:49:37 +1000604
Damien Miller3b512e12000-05-17 23:29:18 +1000605 # Basic test to check for compatible version and correct linking
606 # *does not* test for RSA - that comes later.
607 AC_TRY_RUN(
608 [
Damien Millere59ce622000-05-01 20:54:17 +1000609#include <string.h>
610#include <openssl/rand.h>
Damien Miller81171112000-04-23 11:14:01 +1000611int main(void)
612{
Damien Miller3b512e12000-05-17 23:29:18 +1000613 char a[2048];
614 memset(a, 0, sizeof(a));
Damien Miller81171112000-04-23 11:14:01 +1000615 RAND_add(a, sizeof(a), sizeof(a));
Damien Miller3b512e12000-05-17 23:29:18 +1000616 return(RAND_status() <= 0);
Damien Miller81171112000-04-23 11:14:01 +1000617}
Damien Miller3b512e12000-05-17 23:29:18 +1000618 ],
619 [
620 found_crypto=1
621 break;
622 ], []
623 )
Damien Miller61e50f12000-05-08 20:49:37 +1000624
625 if test ! -z "$found_crypto" ; then
626 break;
627 fi
Damien Millerb85dcad2000-03-11 11:37:00 +1100628 done
629
Damien Miller61e50f12000-05-08 20:49:37 +1000630 if test -z "$found_crypto" ; then
Damien Miller5dfe9762001-02-16 12:05:39 +1100631 AC_MSG_ERROR([Could not find working OpenSSL library, please install or check config.log])
Damien Millerb85dcad2000-03-11 11:37:00 +1100632 fi
Damien Miller61e50f12000-05-08 20:49:37 +1000633 if test -z "$ssldir" ; then
634 ssldir="(system)"
635 fi
Damien Millera22ba012000-03-02 23:09:20 +1100636
Damien Miller61e50f12000-05-08 20:49:37 +1000637 ac_cv_openssldir=$ssldir
638])
639
Damien Milleredb82922000-06-20 13:25:52 +1000640if (test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)") ; then
Damien Miller61e50f12000-05-08 20:49:37 +1000641 AC_DEFINE(HAVE_OPENSSL)
642 dnl Need to recover ssldir - test above runs in subshell
643 ssldir=$ac_cv_openssldir
Damien Millera64b57a2001-01-17 10:44:13 +1100644
645 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
646 CPPFLAGS="$saved_CPPFLAGS -I$ssldir/include"
647 LDFLAGS="$saved_LDFLAGS -L$ssldir/lib -L$ssldir"
648 if test ! -z "$need_dash_r" ; then
649 LDFLAGS="$LDFLAGS -R$ssldir/lib -R$ssldir"
650 fi
651 if test ! -z "$blibpath" ; then
652 blibpath="$blibpath:$ssldir:$ssldir/lib"
653 fi
Damien Miller29ea30d2000-03-17 10:54:15 +1100654 fi
Damien Millera22ba012000-03-02 23:09:20 +1100655fi
Damien Miller3b512e12000-05-17 23:29:18 +1000656LIBS="$saved_LIBS -lcrypto"
Damien Miller61e50f12000-05-08 20:49:37 +1000657
Damien Miller3b512e12000-05-17 23:29:18 +1000658# Now test RSA support
659saved_LIBS="$LIBS"
660AC_MSG_CHECKING([for RSA support])
661for WANTS_RSAREF in "" 1 ; do
662 if test -z "$WANTS_RSAREF" ; then
663 LIBS="$saved_LIBS"
664 else
665 LIBS="$saved_LIBS -lRSAglue -lrsaref"
666 fi
667 AC_TRY_RUN([
668#include <string.h>
669#include <openssl/rand.h>
670#include <openssl/rsa.h>
671#include <openssl/bn.h>
672#include <openssl/sha.h>
673int main(void)
674{
675 int num; RSA *key; static unsigned char p_in[] = "blahblah";
676 unsigned char c[256], p[256];
677 memset(c, 0, sizeof(c)); RAND_add(c, sizeof(c), sizeof(c));
678 if ((key=RSA_generate_key(512, 3, NULL, NULL))==NULL) return(1);
679 num = RSA_public_encrypt(sizeof(p_in) - 1, p_in, c, key, RSA_PKCS1_PADDING);
680 return(-1 == RSA_private_decrypt(num, c, p, key, RSA_PKCS1_PADDING));
681}
682 ],
683 [
684 rsa_works=1
685 break;
686 ], [])
687done
688
689if test ! -z "$no_rsa" ; then
690 AC_MSG_RESULT(disabled)
Damien Miller7b22d652000-06-18 14:07:04 +1000691 RSA_MSG="disabled"
Damien Miller3b512e12000-05-17 23:29:18 +1000692else
693 if test -z "$rsa_works" ; then
694 AC_MSG_WARN([*** No RSA support found *** ])
Damien Miller7b22d652000-06-18 14:07:04 +1000695 RSA_MSG="no"
Damien Miller3b512e12000-05-17 23:29:18 +1000696 else
697 if test -z "$WANTS_RSAREF" ; then
698 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +1000699 RSA_MSG="yes"
Damien Miller3b512e12000-05-17 23:29:18 +1000700 else
Damien Miller7b22d652000-06-18 14:07:04 +1000701 RSA_MSG="yes (using RSAref)"
Damien Miller3b512e12000-05-17 23:29:18 +1000702 AC_MSG_RESULT(using RSAref)
703 LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref"
704 fi
705 fi
706fi
Damien Millera22ba012000-03-02 23:09:20 +1100707
Damien Millera64b57a2001-01-17 10:44:13 +1100708# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
709# version in OpenSSL. Skip this for PAM
710if test "x$PAM_MSG" = "xno" -a "x$check_for_libcrypt_later" = "x1"; then
711 AC_CHECK_LIB(crypt, crypt, , )
712fi
713
Ben Lindstromb5628642000-10-18 00:02:25 +0000714# Cheap hack to ensure NEWS-OS libraries are arranged right.
715if test ! -z "$SONY" ; then
716 LIBS="$LIBS -liberty";
717fi
718
Damien Millera22ba012000-03-02 23:09:20 +1100719# Checks for data types
Damien Millere0f45742000-01-18 09:12:06 +1100720AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +1100721AC_CHECK_SIZEOF(short int, 2)
722AC_CHECK_SIZEOF(int, 4)
723AC_CHECK_SIZEOF(long int, 4)
724AC_CHECK_SIZEOF(long long int, 8)
725
Damien Millera22ba012000-03-02 23:09:20 +1100726# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +1100727AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
728 AC_TRY_COMPILE(
729 [ #include <sys/types.h> ],
730 [ u_int a; a = 1;],
731 [ ac_cv_have_u_int="yes" ],
732 [ ac_cv_have_u_int="no" ]
733 )
734])
735if test "x$ac_cv_have_u_int" = "xyes" ; then
736 AC_DEFINE(HAVE_U_INT)
737 have_u_int=1
738fi
739
Damien Miller61e50f12000-05-08 20:49:37 +1000740AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
741 AC_TRY_COMPILE(
742 [ #include <sys/types.h> ],
743 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
744 [ ac_cv_have_intxx_t="yes" ],
745 [ ac_cv_have_intxx_t="no" ]
746 )
747])
748if test "x$ac_cv_have_intxx_t" = "xyes" ; then
749 AC_DEFINE(HAVE_INTXX_T)
750 have_intxx_t=1
751fi
752
Damien Miller578783e2000-09-23 14:12:24 +1100753AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
754 AC_TRY_COMPILE(
755 [ #include <sys/types.h> ],
756 [ int64_t a; a = 1;],
757 [ ac_cv_have_int64_t="yes" ],
758 [ ac_cv_have_int64_t="no" ]
759 )
760])
761if test "x$ac_cv_have_int64_t" = "xyes" ; then
762 AC_DEFINE(HAVE_INT64_T)
763 have_int64_t=1
764fi
765
Damien Miller61e50f12000-05-08 20:49:37 +1000766AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
767 AC_TRY_COMPILE(
768 [ #include <sys/types.h> ],
769 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
770 [ ac_cv_have_u_intxx_t="yes" ],
771 [ ac_cv_have_u_intxx_t="no" ]
772 )
773])
774if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
775 AC_DEFINE(HAVE_U_INTXX_T)
776 have_u_intxx_t=1
777fi
Damien Millerc6398ef1999-11-20 12:18:40 +1100778
Damien Miller578783e2000-09-23 14:12:24 +1100779AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
780 AC_TRY_COMPILE(
781 [ #include <sys/types.h> ],
782 [ u_int64_t a; a = 1;],
783 [ ac_cv_have_u_int64_t="yes" ],
784 [ ac_cv_have_u_int64_t="no" ]
785 )
786])
787if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
788 AC_DEFINE(HAVE_U_INT64_T)
789 have_u_int64_t=1
790fi
791
Damien Milleredb82922000-06-20 13:25:52 +1000792if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
793 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +1100794then
795 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
796 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +1000797 [
798#include <sys/bitypes.h>
799 ],
Damien Millerb29ea912000-01-15 14:12:03 +1100800 [
Damien Miller70494d12000-04-03 15:57:06 +1000801 int8_t a; int16_t b; int32_t c;
802 u_int8_t e; u_int16_t f; u_int32_t g;
803 a = b = c = e = f = g = 1;
Damien Millerb29ea912000-01-15 14:12:03 +1100804 ],
805 [
806 AC_DEFINE(HAVE_U_INTXX_T)
807 AC_DEFINE(HAVE_INTXX_T)
808 AC_MSG_RESULT(yes)
809 ],
810 [AC_MSG_RESULT(no)]
811 )
812fi
813
Damien Millerd6121d22000-03-17 23:26:46 +1100814if test -z "$have_u_intxx_t" ; then
Damien Miller61e50f12000-05-08 20:49:37 +1000815 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
816 AC_TRY_COMPILE(
817 [
818#include <sys/types.h>
819 ],
820 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
821 [ ac_cv_have_uintxx_t="yes" ],
822 [ ac_cv_have_uintxx_t="no" ]
823 )
824 ])
825 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
826 AC_DEFINE(HAVE_UINTXX_T)
827 fi
Damien Millerd6121d22000-03-17 23:26:46 +1100828fi
Damien Millerc6398ef1999-11-20 12:18:40 +1100829
Damien Miller61e50f12000-05-08 20:49:37 +1000830AC_CACHE_CHECK([for socklen_t], ac_cv_have_socklen_t, [
831 AC_TRY_COMPILE(
832 [
Damien Miller81171112000-04-23 11:14:01 +1000833#include <sys/types.h>
834#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000835 ],
836 [socklen_t foo; foo = 1235;],
837 [ ac_cv_have_socklen_t="yes" ],
838 [ ac_cv_have_socklen_t="no" ]
839 )
840])
841if test "x$ac_cv_have_socklen_t" = "xyes" ; then
842 AC_DEFINE(HAVE_SOCKLEN_T)
843fi
Damien Miller74d0d4a1999-12-29 02:24:35 +1100844
Damien Miller61e50f12000-05-08 20:49:37 +1000845AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
846 AC_TRY_COMPILE(
847 [
848#include <sys/types.h>
849 ],
850 [ size_t foo; foo = 1235; ],
851 [ ac_cv_have_size_t="yes" ],
852 [ ac_cv_have_size_t="no" ]
853 )
854])
855if test "x$ac_cv_have_size_t" = "xyes" ; then
856 AC_DEFINE(HAVE_SIZE_T)
857fi
Damien Miller95058511999-12-29 10:36:45 +1100858
Damien Miller615f9392000-05-17 22:53:33 +1000859AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
860 AC_TRY_COMPILE(
861 [
862#include <sys/types.h>
863 ],
864 [ ssize_t foo; foo = 1235; ],
865 [ ac_cv_have_ssize_t="yes" ],
866 [ ac_cv_have_ssize_t="no" ]
867 )
868])
869if test "x$ac_cv_have_ssize_t" = "xyes" ; then
870 AC_DEFINE(HAVE_SSIZE_T)
871fi
872
Ben Lindstrom0d5af602001-01-09 00:50:29 +0000873AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
874 AC_TRY_COMPILE(
875 [
876#include <time.h>
877 ],
878 [ clock_t foo; foo = 1235; ],
879 [ ac_cv_have_clock_t="yes" ],
880 [ ac_cv_have_clock_t="no" ]
881 )
882])
883if test "x$ac_cv_have_clock_t" = "xyes" ; then
884 AC_DEFINE(HAVE_CLOCK_T)
885fi
886
Damien Millerb54b40e2000-06-23 08:23:34 +1000887AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
888 AC_TRY_COMPILE(
889 [
890#include <sys/types.h>
891#include <sys/socket.h>
892 ],
893 [ sa_family_t foo; foo = 1235; ],
894 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +1100895 [ AC_TRY_COMPILE(
896 [
897#include <sys/types.h>
898#include <sys/socket.h>
899#include <netinet/in.h>
900 ],
901 [ sa_family_t foo; foo = 1235; ],
902 [ ac_cv_have_sa_family_t="yes" ],
903
Damien Millerb54b40e2000-06-23 08:23:34 +1000904 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +1100905 )]
Damien Millerb54b40e2000-06-23 08:23:34 +1000906 )
907])
908if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
909 AC_DEFINE(HAVE_SA_FAMILY_T)
910fi
911
Damien Miller0f91b4e2000-06-18 15:43:25 +1000912AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
913 AC_TRY_COMPILE(
914 [
915#include <sys/types.h>
916 ],
917 [ pid_t foo; foo = 1235; ],
918 [ ac_cv_have_pid_t="yes" ],
919 [ ac_cv_have_pid_t="no" ]
920 )
921])
922if test "x$ac_cv_have_pid_t" = "xyes" ; then
923 AC_DEFINE(HAVE_PID_T)
924fi
925
926AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
927 AC_TRY_COMPILE(
928 [
929#include <sys/types.h>
930 ],
931 [ mode_t foo; foo = 1235; ],
932 [ ac_cv_have_mode_t="yes" ],
933 [ ac_cv_have_mode_t="no" ]
934 )
935])
936if test "x$ac_cv_have_mode_t" = "xyes" ; then
937 AC_DEFINE(HAVE_MODE_T)
938fi
939
Damien Miller61e50f12000-05-08 20:49:37 +1000940
941AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
942 AC_TRY_COMPILE(
943 [
Damien Miller81171112000-04-23 11:14:01 +1000944#include <sys/types.h>
945#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000946 ],
947 [ struct sockaddr_storage s; ],
948 [ ac_cv_have_struct_sockaddr_storage="yes" ],
949 [ ac_cv_have_struct_sockaddr_storage="no" ]
950 )
951])
952if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
953 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)
954fi
Damien Miller34132e52000-01-14 15:45:46 +1100955
Damien Miller61e50f12000-05-08 20:49:37 +1000956AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
957 AC_TRY_COMPILE(
958 [
Damien Miller7b22d652000-06-18 14:07:04 +1000959#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000960#include <netinet/in.h>
961 ],
962 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
963 [ ac_cv_have_struct_sockaddr_in6="yes" ],
964 [ ac_cv_have_struct_sockaddr_in6="no" ]
965 )
966])
967if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
968 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)
969fi
Damien Miller34132e52000-01-14 15:45:46 +1100970
Damien Miller61e50f12000-05-08 20:49:37 +1000971AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
972 AC_TRY_COMPILE(
973 [
Damien Miller7b22d652000-06-18 14:07:04 +1000974#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000975#include <netinet/in.h>
976 ],
977 [ struct in6_addr s; s.s6_addr[0] = 0; ],
978 [ ac_cv_have_struct_in6_addr="yes" ],
979 [ ac_cv_have_struct_in6_addr="no" ]
980 )
981])
982if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
983 AC_DEFINE(HAVE_STRUCT_IN6_ADDR)
984fi
Damien Miller34132e52000-01-14 15:45:46 +1100985
Damien Miller61e50f12000-05-08 20:49:37 +1000986AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
987 AC_TRY_COMPILE(
988 [
Damien Miller81171112000-04-23 11:14:01 +1000989#include <sys/types.h>
990#include <sys/socket.h>
991#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000992 ],
993 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
994 [ ac_cv_have_struct_addrinfo="yes" ],
995 [ ac_cv_have_struct_addrinfo="no" ]
996 )
997])
998if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
999 AC_DEFINE(HAVE_STRUCT_ADDRINFO)
1000fi
1001
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001002AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
1003 AC_TRY_COMPILE(
1004 [ #include <sys/time.h> ],
1005 [ struct timeval tv; tv.tv_sec = 1;],
1006 [ ac_cv_have_struct_timeval="yes" ],
1007 [ ac_cv_have_struct_timeval="no" ]
1008 )
1009])
1010if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
1011 AC_DEFINE(HAVE_STRUCT_TIMEVAL)
1012 have_struct_timeval=1
1013fi
1014
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001015# If we don't have int64_t then we can't compile sftp-server. So don't
1016# even attempt to do it.
1017if test "x$ac_cv_have_int64_t" = "xno" -a \
1018 "x$ac_cv_sizeof_long_int" != "x8" -a \
1019 "x$ac_cv_sizeof_long_long_int" = "x0" ; then
1020 NO_SFTP='#'
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001021fi
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001022AC_SUBST(NO_SFTP)
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001023
Damien Miller78315eb2000-09-29 23:01:36 +11001024dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10001025OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
1026OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
1027OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
1028OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
1029OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10001030OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001031OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
1032OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10001033OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001034OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
1035OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
1036OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
1037OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00001038OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
1039OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
1040OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
1041OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Damien Miller78315eb2000-09-29 23:01:36 +11001042AC_STRUCT_ST_BLKSIZE
andre2ff7b5d2000-06-03 14:57:40 +00001043
Damien Miller942da032000-08-18 13:59:06 +10001044AC_CACHE_CHECK([for sun_len field in struct sockaddr_un],
1045 ac_cv_have_sun_len_in_struct_sockaddr_un, [
1046 AC_TRY_COMPILE(
1047 [
1048#include <sys/types.h>
1049#include <sys/socket.h>
1050 ],
1051 [ struct sockaddr_un s; s.sun_len = 1; ],
1052 [ ac_cv_have_sun_len_in_struct_sockaddr_un="yes" ],
1053 [ ac_cv_have_sun_len_in_struct_sockaddr_un="no" ],
1054 )
1055])
1056if test "x$ac_cv_have_sun_len_in_struct_sockaddr_un" = "xyes" ; then
1057 AC_DEFINE(HAVE_SUN_LEN_IN_SOCKADDR_UN)
1058fi
1059
Damien Miller61e50f12000-05-08 20:49:37 +10001060AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
1061 ac_cv_have_ss_family_in_struct_ss, [
1062 AC_TRY_COMPILE(
1063 [
Damien Miller81171112000-04-23 11:14:01 +10001064#include <sys/types.h>
1065#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001066 ],
1067 [ struct sockaddr_storage s; s.ss_family = 1; ],
1068 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
1069 [ ac_cv_have_ss_family_in_struct_ss="no" ],
1070 )
1071])
1072if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
1073 AC_DEFINE(HAVE_SS_FAMILY_IN_SS)
1074fi
1075
Damien Miller61e50f12000-05-08 20:49:37 +10001076AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
1077 ac_cv_have___ss_family_in_struct_ss, [
1078 AC_TRY_COMPILE(
1079 [
Damien Miller81171112000-04-23 11:14:01 +10001080#include <sys/types.h>
1081#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001082 ],
1083 [ struct sockaddr_storage s; s.__ss_family = 1; ],
1084 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
1085 [ ac_cv_have___ss_family_in_struct_ss="no" ]
1086 )
1087])
1088if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
1089 AC_DEFINE(HAVE___SS_FAMILY_IN_SS)
1090fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11001091
Damien Millerad833b32000-08-23 10:46:23 +10001092AC_CACHE_CHECK([for pw_class field in struct passwd],
1093 ac_cv_have_pw_class_in_struct_passwd, [
1094 AC_TRY_COMPILE(
1095 [
Damien Millerad833b32000-08-23 10:46:23 +10001096#include <pwd.h>
1097 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00001098 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10001099 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
1100 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
1101 )
1102])
1103if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
1104 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD)
1105fi
1106
Damien Miller61e50f12000-05-08 20:49:37 +10001107
1108AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
1109 AC_TRY_LINK([],
1110 [ extern char *__progname; printf("%s", __progname); ],
1111 [ ac_cv_libc_defines___progname="yes" ],
1112 [ ac_cv_libc_defines___progname="no" ]
1113 )
1114])
1115if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
1116 AC_DEFINE(HAVE___PROGNAME)
1117fi
1118
Damien Millera22ba012000-03-02 23:09:20 +11001119
Damien Millerecbb26d2000-07-15 14:59:14 +10001120AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
1121 AC_TRY_LINK([],
1122 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
1123 [ ac_cv_libc_defines_sys_errlist="yes" ],
1124 [ ac_cv_libc_defines_sys_errlist="no" ]
1125 )
1126])
1127if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
1128 AC_DEFINE(HAVE_SYS_ERRLIST)
1129fi
1130
1131
Damien Miller11fa2cc2000-08-16 10:35:58 +10001132AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
1133 AC_TRY_LINK([],
1134 [ extern int sys_nerr; printf("%i", sys_nerr);],
1135 [ ac_cv_libc_defines_sys_nerr="yes" ],
1136 [ ac_cv_libc_defines_sys_nerr="no" ]
1137 )
1138])
1139if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
1140 AC_DEFINE(HAVE_SYS_NERR)
1141fi
1142
1143
Damien Millera22ba012000-03-02 23:09:20 +11001144# Looking for programs, paths and files
1145AC_ARG_WITH(rsh,
1146 [ --with-rsh=PATH Specify path to remote shell program ],
1147 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001148 if test "x$withval" != "$no" ; then
Damien Miller90dcc052000-07-08 10:17:40 +10001149 rsh_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11001150 fi
1151 ],
1152 [
1153 AC_PATH_PROG(rsh_path, rsh)
1154 ]
1155)
1156
1157AC_ARG_WITH(xauth,
1158 [ --with-xauth=PATH Specify path to xauth program ],
1159 [
Ben Lindstrom76020ba2000-10-25 16:55:00 +00001160 if test "x$withval" != "xno" ; then
Damien Miller7b22d652000-06-18 14:07:04 +10001161 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11001162 fi
1163 ],
1164 [
Damien Miller78315eb2000-09-29 23:01:36 +11001165 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 +10001166 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11001167 xauth_path="/usr/openwin/bin/xauth"
1168 fi
1169 ]
1170)
1171
Damien Millera19cf472000-11-29 13:28:50 +11001172if test -z "$xauth_path" ; then
1173 XAUTH_PATH="undefined"
1174 AC_SUBST(XAUTH_PATH)
1175else
Damien Millera22ba012000-03-02 23:09:20 +11001176 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
Damien Millera19cf472000-11-29 13:28:50 +11001177 XAUTH_PATH=$xauth_path
1178 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11001179fi
1180if test ! -z "$rsh_path" ; then
1181 AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path")
1182fi
1183
1184# Check for mail directory (last resort if we cannot get it from headers)
1185if test ! -z "$MAIL" ; then
1186 maildir=`dirname $MAIL`
1187 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir")
1188fi
1189
Damien Millera22ba012000-03-02 23:09:20 +11001190if test -z "$no_dev_ptmx" ; then
Damien Miller204ad072000-03-02 23:56:12 +11001191 AC_CHECK_FILE("/dev/ptmx",
1192 [
1193 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
1194 have_dev_ptmx=1
1195 ]
1196 )
Damien Millera22ba012000-03-02 23:09:20 +11001197fi
Damien Miller204ad072000-03-02 23:56:12 +11001198AC_CHECK_FILE("/dev/ptc",
1199 [
1200 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
1201 have_dev_ptc=1
1202 ]
1203)
1204
Damien Millera22ba012000-03-02 23:09:20 +11001205# Options from here on. Some of these are preset by platform above
1206
Damien Millera22ba012000-03-02 23:09:20 +11001207# Check for user-specified random device, otherwise check /dev/urandom
1208AC_ARG_WITH(random,
Damien Miller0736c4d2001-01-25 10:51:46 +11001209 [ --with-random=FILE read entropy from FILE (default=/dev/urandom)],
Damien Millera22ba012000-03-02 23:09:20 +11001210 [
Damien Miller040f3832000-04-03 14:50:43 +10001211 if test "x$withval" != "xno" ; then
1212 RANDOM_POOL="$withval";
1213 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
1214 fi
Damien Millera22ba012000-03-02 23:09:20 +11001215 ],
1216 [
1217 # Check for random device
1218 AC_CHECK_FILE("/dev/urandom",
1219 [
1220 RANDOM_POOL="/dev/urandom";
1221 AC_SUBST(RANDOM_POOL)
1222 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
1223 ]
1224 )
1225 ]
1226)
1227
1228# Check for EGD pool file
1229AC_ARG_WITH(egd-pool,
Damien Miller0736c4d2001-01-25 10:51:46 +11001230 [ --with-egd-pool=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
Damien Millera22ba012000-03-02 23:09:20 +11001231 [
Damien Miller040f3832000-04-03 14:50:43 +10001232 if test "x$withval" != "xno" ; then
1233 EGD_SOCKET="$withval";
1234 AC_DEFINE_UNQUOTED(EGD_SOCKET, "$EGD_SOCKET")
1235 fi
Damien Miller0736c4d2001-01-25 10:51:46 +11001236 ],
1237 [
1238 # Check for existing socket only if we don't have a random device already
1239 if test -z "$RANDOM_POOL" ; then
1240 AC_MSG_CHECKING(for PRNGD/EGD socket)
1241 # Insert other locations here
Damien Miller4864e8f2001-02-08 10:07:08 +11001242 for egdsock in /var/run/egd-pool /etc/entropy /tmp/entropy ; do
Damien Millerd8ab0d42001-02-13 12:11:17 +11001243 if test -r $egdsock && $TEST_MINUS_S_SH -c "test -S $egdsock -o -p $egdsock" ; then
Damien Miller0736c4d2001-01-25 10:51:46 +11001244 EGD_SOCKET="$egdsock"
1245 AC_DEFINE_UNQUOTED(EGD_SOCKET, "$EGD_SOCKET")
Damien Miller0736c4d2001-01-25 10:51:46 +11001246 break;
1247 fi
1248 done
Damien Miller4864e8f2001-02-08 10:07:08 +11001249 if test -x "$EGD_SOCKET" ; then
1250 AC_MSG_RESULT($EGD_SOCKET)
1251 else
1252 AC_MSG_RESULT(not found)
1253 fi
Damien Miller0736c4d2001-01-25 10:51:46 +11001254 fi
Damien Millera22ba012000-03-02 23:09:20 +11001255 ]
1256)
1257
Damien Miller0736c4d2001-01-25 10:51:46 +11001258
Damien Miller0437b332000-05-02 09:56:41 +10001259# detect pathnames for entropy gathering commands, if we need them
1260INSTALL_SSH_PRNG_CMDS=""
1261rm -f prng_commands
Damien Milleredb82922000-06-20 13:25:52 +10001262if (test -z "$RANDOM_POOL" && test -z "$EGD_SOCKET") ; then
Damien Miller11e37f62000-04-08 18:23:30 +10001263 # Use these commands to collect entropy
Damien Miller61e50f12000-05-08 20:49:37 +10001264 OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
1265 OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
1266 OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
1267 OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
1268 OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
1269 OSSH_PATH_ENTROPY_PROG(PROG_W, w)
1270 OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
1271 OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
1272 OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
1273 OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
1274 OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
1275 OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
1276 OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
1277 OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
Damien Miller0437b332000-05-02 09:56:41 +10001278
1279 INSTALL_SSH_PRNG_CMDS="yes"
Damien Miller11e37f62000-04-08 18:23:30 +10001280fi
Damien Miller0437b332000-05-02 09:56:41 +10001281AC_SUBST(INSTALL_SSH_PRNG_CMDS)
1282
Damien Miller11e37f62000-04-08 18:23:30 +10001283
Damien Miller670a4b82000-01-22 13:53:11 +11001284AC_ARG_WITH(catman,
1285 [ --with-catman=man|cat Install preformatted manpages[no]],
1286 [
1287 MANTYPE='$(CATMAN)'
1288 if test x"$withval" != x"yes" ; then
1289 mansubdir=$withval
1290 else
1291 mansubdir=cat
1292 fi
1293 ], [
1294 if test -z "$MANTYPE" ; then
1295 MANTYPE='$(TROFFMAN)'
1296 mansubdir=man
1297 fi
1298 ]
1299)
1300AC_SUBST(MANTYPE)
1301AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11001302
Damien Millera22ba012000-03-02 23:09:20 +11001303# Check whether to enable MD5 passwords
Damien Miller7b22d652000-06-18 14:07:04 +10001304MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11001305AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11001306 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11001307 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001308 if test "x$withval" != "xno" ; then
Damien Miller8bdeee21999-12-30 15:50:54 +11001309 AC_DEFINE(HAVE_MD5_PASSWORDS)
Damien Miller7b22d652000-06-18 14:07:04 +10001310 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11001311 fi
1312 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11001313)
1314
Damien Millera22ba012000-03-02 23:09:20 +11001315# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11001316AC_ARG_WITH(shadow,
1317 [ --without-shadow Disable shadow password support],
1318 [
1319 if test "x$withval" = "xno" ; then
1320 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10001321 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11001322 fi
1323 ]
1324)
1325
Damien Miller1f335fb2000-06-26 11:31:33 +10001326if test -z "$disable_shadow" ; then
1327 AC_MSG_CHECKING([if the systems has expire shadow information])
1328 AC_TRY_COMPILE(
1329 [
1330#include <sys/types.h>
1331#include <shadow.h>
1332 struct spwd sp;
1333 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
1334 [ sp_expire_available=yes ], []
1335 )
1336
1337 if test "x$sp_expire_available" = "xyes" ; then
1338 AC_MSG_RESULT(yes)
1339 AC_DEFINE(HAS_SHADOW_EXPIRE)
1340 else
1341 AC_MSG_RESULT(no)
1342 fi
1343fi
1344
Damien Millera22ba012000-03-02 23:09:20 +11001345# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11001346if test ! -z "$IPADDR_IN_DISPLAY" ; then
1347 DISPLAY_HACK_MSG="yes"
1348 AC_DEFINE(IPADDR_IN_DISPLAY)
1349else
1350 DISPLAY_HACK_MSG="no"
1351 AC_ARG_WITH(ipaddr-display,
1352 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
1353 [
1354 if test "x$withval" != "xno" ; then
1355 AC_DEFINE(IPADDR_IN_DISPLAY)
1356 DISPLAY_HACK_MSG="yes"
1357 fi
1358 ]
1359 )
1360fi
Damien Miller76112de1999-12-21 11:18:08 +11001361
Damien Millera22ba012000-03-02 23:09:20 +11001362# Whether to mess with the default path
Damien Miller7b22d652000-06-18 14:07:04 +10001363SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11001364AC_ARG_WITH(default-path,
Damien Miller5a3e6831999-12-27 09:48:56 +11001365 [ --with-default-path=PATH Specify default \$PATH environment for server],
1366 [
1367 if test "x$withval" != "xno" ; then
Damien Millere68f92b2000-10-02 21:42:15 +11001368 AC_DEFINE_UNQUOTED(USER_PATH, "$withval")
Damien Miller7b22d652000-06-18 14:07:04 +10001369 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11001370 fi
1371 ]
1372)
1373
Damien Millera22ba012000-03-02 23:09:20 +11001374# Whether to force IPv4 by default (needed on broken glibc Linux)
Damien Miller7b22d652000-06-18 14:07:04 +10001375IPV4_HACK_MSG="no"
Damien Miller7d80e342000-01-19 14:36:49 +11001376AC_ARG_WITH(ipv4-default,
1377 [ --with-ipv4-default Use IPv4 by connections unless '-6' specified],
1378 [
1379 if test "x$withval" != "xno" ; then
1380 AC_DEFINE(IPV4_DEFAULT)
Damien Miller7b22d652000-06-18 14:07:04 +10001381 IPV4_HACK_MSG="yes"
Damien Miller7d80e342000-01-19 14:36:49 +11001382 fi
1383 ]
1384)
1385
Damien Miller61e50f12000-05-08 20:49:37 +10001386AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Miller7b22d652000-06-18 14:07:04 +10001387IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11001388AC_ARG_WITH(4in6,
1389 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
1390 [
1391 if test "x$withval" != "xno" ; then
1392 AC_MSG_RESULT(yes)
1393 AC_DEFINE(IPV4_IN_IPV6)
Damien Miller7b22d652000-06-18 14:07:04 +10001394 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11001395 else
1396 AC_MSG_RESULT(no)
1397 fi
1398 ],[
1399 if test "x$inet6_default_4in6" = "xyes"; then
1400 AC_MSG_RESULT([yes (default)])
1401 AC_DEFINE(IPV4_IN_IPV6)
Damien Miller7b22d652000-06-18 14:07:04 +10001402 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11001403 else
1404 AC_MSG_RESULT([no (default)])
1405 fi
1406 ]
1407)
1408
Damien Miller78315eb2000-09-29 23:01:36 +11001409AC_MSG_CHECKING(whether to install ssh as suid root)
1410AC_ARG_ENABLE(suid-ssh,
1411[ --enable-suid-ssh Install ssh as suid root (default)
1412 --disable-suid-ssh Install ssh without suid bit],
1413[ case "$enableval" in
1414 no)
1415 AC_MSG_RESULT(no)
1416 SSHMODE=0711
1417 ;;
1418 *) AC_MSG_RESULT(yes)
1419 SSHMODE=04711
1420 ;;
1421 esac ],
1422 AC_MSG_RESULT(yes)
1423 SSHMODE=04711
1424)
1425AC_SUBST(SSHMODE)
1426
1427
Damien Millera22ba012000-03-02 23:09:20 +11001428# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11001429piddir=/var/run
Damien Miller5eed6a22000-01-16 12:05:18 +11001430AC_ARG_WITH(pid-dir,
1431 [ --with-pid-dir=PATH Specify location of ssh.pid file],
1432 [
1433 if test "x$withval" != "xno" ; then
Damien Millerb13c73e2000-01-17 22:02:17 +11001434 piddir=$withval
Damien Miller5eed6a22000-01-16 12:05:18 +11001435 fi
1436 ]
1437)
Damien Miller4018c192000-04-30 09:30:44 +10001438
Damien Miller78315eb2000-09-29 23:01:36 +11001439# make sure the directory exists
1440if test ! -d $piddir ; then
1441 piddir=`eval echo ${sysconfdir}`
1442 case $piddir in
1443 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
1444 esac
1445fi
1446
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001447AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir")
Damien Millerb13c73e2000-01-17 22:02:17 +11001448AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11001449
andre2ff7b5d2000-06-03 14:57:40 +00001450dnl allow user to disable some login recording features
1451AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00001452 [ --disable-lastlog disable use of lastlog even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001453 [ AC_DEFINE(DISABLE_LASTLOG) ]
1454)
1455AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00001456 [ --disable-utmp disable use of utmp even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001457 [ AC_DEFINE(DISABLE_UTMP) ]
1458)
1459AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00001460 [ --disable-utmpx disable use of utmpx even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001461 [ AC_DEFINE(DISABLE_UTMPX) ]
1462)
1463AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00001464 [ --disable-wtmp disable use of wtmp even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001465 [ AC_DEFINE(DISABLE_WTMP) ]
1466)
1467AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00001468 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001469 [ AC_DEFINE(DISABLE_WTMPX) ]
1470)
1471AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00001472 [ --disable-libutil disable use of libutil (login() etc.) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001473 [ AC_DEFINE(DISABLE_LOGIN) ]
1474)
1475AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00001476 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001477 [ AC_DEFINE(DISABLE_PUTUTLINE) ]
1478)
1479AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00001480 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001481 [ AC_DEFINE(DISABLE_PUTUTXLINE) ]
1482)
1483AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00001484 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11001485 [
1486 if test "x$withval" = "xno" ; then
1487 AC_DEFINE(DISABLE_LASTLOG)
1488 else
1489 conf_lastlog_location=$withval
1490 fi
1491 ]
1492)
andre2ff7b5d2000-06-03 14:57:40 +00001493
1494dnl lastlog, [uw]tmpx? detection
1495dnl NOTE: set the paths in the platform section to avoid the
1496dnl need for command-line parameters
1497dnl lastlog and [uw]tmp are subject to a file search if all else fails
1498
1499dnl lastlog detection
1500dnl NOTE: the code itself will detect if lastlog is a directory
1501AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
1502AC_TRY_COMPILE([
1503#include <sys/types.h>
1504#include <utmp.h>
1505#ifdef HAVE_LASTLOG_H
1506# include <lastlog.h>
1507#endif
Damien Miller2994e082000-06-04 15:51:47 +10001508#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001509# include <paths.h>
1510#endif
1511 ],
1512 [ char *lastlog = LASTLOG_FILE; ],
1513 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10001514 [
1515 AC_MSG_RESULT(no)
1516 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
1517 AC_TRY_COMPILE([
1518#include <sys/types.h>
1519#include <utmp.h>
1520#ifdef HAVE_LASTLOG_H
1521# include <lastlog.h>
1522#endif
1523#ifdef HAVE_PATHS_H
1524# include <paths.h>
1525#endif
1526 ],
1527 [ char *lastlog = _PATH_LASTLOG; ],
1528 [ AC_MSG_RESULT(yes) ],
1529 [
andree441aa32000-06-12 22:34:38 +00001530 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10001531 system_lastlog_path=no
1532 ])
1533 ]
andre2ff7b5d2000-06-03 14:57:40 +00001534)
Damien Miller2994e082000-06-04 15:51:47 +10001535
andre2ff7b5d2000-06-03 14:57:40 +00001536if test -z "$conf_lastlog_location"; then
1537 if test x"$system_lastlog_path" = x"no" ; then
1538 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10001539 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00001540 conf_lastlog_location=$f
1541 fi
1542 done
1543 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00001544 AC_MSG_WARN([** Cannot find lastlog **])
1545 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00001546 fi
1547 fi
1548fi
1549
1550if test -n "$conf_lastlog_location"; then
1551 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location")
1552fi
1553
1554dnl utmp detection
1555AC_MSG_CHECKING([if your system defines UTMP_FILE])
1556AC_TRY_COMPILE([
1557#include <sys/types.h>
1558#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10001559#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001560# include <paths.h>
1561#endif
1562 ],
1563 [ char *utmp = UTMP_FILE; ],
1564 [ AC_MSG_RESULT(yes) ],
1565 [ AC_MSG_RESULT(no)
1566 system_utmp_path=no ]
1567)
1568if test -z "$conf_utmp_location"; then
1569 if test x"$system_utmp_path" = x"no" ; then
1570 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
1571 if test -f $f ; then
1572 conf_utmp_location=$f
1573 fi
1574 done
1575 if test -z "$conf_utmp_location"; then
1576 AC_DEFINE(DISABLE_UTMP)
1577 fi
1578 fi
1579fi
1580if test -n "$conf_utmp_location"; then
1581 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location")
1582fi
1583
1584dnl wtmp detection
1585AC_MSG_CHECKING([if your system defines WTMP_FILE])
1586AC_TRY_COMPILE([
1587#include <sys/types.h>
1588#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10001589#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001590# include <paths.h>
1591#endif
1592 ],
1593 [ char *wtmp = WTMP_FILE; ],
1594 [ AC_MSG_RESULT(yes) ],
1595 [ AC_MSG_RESULT(no)
1596 system_wtmp_path=no ]
1597)
1598if test -z "$conf_wtmp_location"; then
1599 if test x"$system_wtmp_path" = x"no" ; then
1600 for f in /usr/adm/wtmp /var/log/wtmp; do
1601 if test -f $f ; then
1602 conf_wtmp_location=$f
1603 fi
1604 done
1605 if test -z "$conf_wtmp_location"; then
1606 AC_DEFINE(DISABLE_WTMP)
1607 fi
1608 fi
1609fi
1610if test -n "$conf_wtmp_location"; then
1611 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location")
1612fi
1613
1614
1615dnl utmpx detection - I don't know any system so perverse as to require
1616dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
1617dnl there, though.
1618AC_MSG_CHECKING([if your system defines UTMPX_FILE])
1619AC_TRY_COMPILE([
1620#include <sys/types.h>
1621#include <utmp.h>
1622#ifdef HAVE_UTMPX_H
1623#include <utmpx.h>
1624#endif
Damien Miller2994e082000-06-04 15:51:47 +10001625#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001626# include <paths.h>
1627#endif
1628 ],
1629 [ char *utmpx = UTMPX_FILE; ],
1630 [ AC_MSG_RESULT(yes) ],
1631 [ AC_MSG_RESULT(no)
1632 system_utmpx_path=no ]
1633)
1634if test -z "$conf_utmpx_location"; then
1635 if test x"$system_utmpx_path" = x"no" ; then
1636 AC_DEFINE(DISABLE_UTMPX)
1637 fi
1638else
1639 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location")
1640fi
1641
1642dnl wtmpx detection
1643AC_MSG_CHECKING([if your system defines WTMPX_FILE])
1644AC_TRY_COMPILE([
1645#include <sys/types.h>
1646#include <utmp.h>
1647#ifdef HAVE_UTMPX_H
1648#include <utmpx.h>
1649#endif
Damien Miller2994e082000-06-04 15:51:47 +10001650#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001651# include <paths.h>
1652#endif
1653 ],
1654 [ char *wtmpx = WTMPX_FILE; ],
1655 [ AC_MSG_RESULT(yes) ],
1656 [ AC_MSG_RESULT(no)
1657 system_wtmpx_path=no ]
1658)
1659if test -z "$conf_wtmpx_location"; then
1660 if test x"$system_wtmpx_path" = x"no" ; then
1661 AC_DEFINE(DISABLE_WTMPX)
1662 fi
1663else
1664 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location")
1665fi
1666
Damien Miller4018c192000-04-30 09:30:44 +10001667
1668# Change default command timeout for builtin PRNG
Damien Miller14c12cb2000-06-07 22:20:23 +10001669entropy_timeout=200
Damien Miller4018c192000-04-30 09:30:44 +10001670AC_ARG_WITH(entropy-timeout,
1671 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
1672 [
1673 if test "x$withval" != "xno" ; then
1674 entropy_timeout=$withval
1675 fi
1676 ]
1677)
1678AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1679
1680
Damien Miller29ea30d2000-03-17 10:54:15 +11001681if test ! -z "$blibpath" ; then
1682 LDFLAGS="$LDFLAGS -blibpath:$blibpath"
1683 AC_MSG_WARN([Please check and edit -blibpath in LDFLAGS in Makefile])
1684fi
1685
Damien Millerbac2d8a2000-09-05 16:13:06 +11001686AC_EXEEXT
1687
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +00001688AC_OUTPUT(Makefile openbsd-compat/Makefile ssh_prng_cmds)
Damien Miller0437b332000-05-02 09:56:41 +10001689
Damien Miller7b22d652000-06-18 14:07:04 +10001690# Print summary of options
1691
1692if test x$MANTYPE = x'$(CATMAN)' ; then
1693 MAN_MSG=cat
1694else
1695 MAN_MSG=man
1696fi
1697if test ! -z "$RANDOM_POOL" ; then
1698 RAND_MSG="Device ($RANDOM_POOL)"
1699else
1700 if test ! -z "$EGD_SOCKET" ; then
Damien Miller0736c4d2001-01-25 10:51:46 +11001701 RAND_MSG="EGD/PRNGD ($EGD_SOCKET)"
Damien Miller7b22d652000-06-18 14:07:04 +10001702 else
1703 RAND_MSG="Builtin (timeout $entropy_timeout)"
Damien Miller6f9c3372000-10-25 10:06:04 +11001704 BUILTIN_RNG=1
Damien Miller7b22d652000-06-18 14:07:04 +10001705 fi
1706fi
1707
1708# Someone please show me a better way :)
1709A=`eval echo ${prefix}` ; A=`eval echo ${A}`
1710B=`eval echo ${bindir}` ; B=`eval echo ${B}`
1711C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
1712D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00001713E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Damien Miller7b22d652000-06-18 14:07:04 +10001714F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
1715G=`eval echo ${piddir}` ; G=`eval echo ${G}`
1716
1717echo ""
1718echo "OpenSSH configured has been configured with the following options."
1719echo " User binaries: $B"
1720echo " System binaries: $C"
1721echo " Configuration files: $D"
1722echo " Askpass program: $E"
1723echo " Manual pages: $F"
1724echo " PID file: $G"
1725echo " Random number collection: $RAND_MSG"
1726echo " Manpage format: $MAN_MSG"
1727echo " PAM support: ${PAM_MSG}"
1728echo " KerberosIV support: $KRB4_MSG"
1729echo " AFS support: $AFS_MSG"
1730echo " S/KEY support: $SKEY_MSG"
1731echo " TCP Wrappers support: $TCPW_MSG"
1732echo " MD5 password support: $MD5_MSG"
1733echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
1734echo " Use IPv4 by default hack: $IPV4_HACK_MSG"
1735echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
1736
1737echo ""
1738
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00001739echo " Host: ${host}"
1740echo " Compiler: ${CC}"
1741echo " Compiler flags: ${CFLAGS}"
1742echo "Preprocessor flags: ${CPPFLAGS}"
1743echo " Linker flags: ${LDFLAGS}"
1744echo " Libraries: ${LIBS}"
Damien Miller7b22d652000-06-18 14:07:04 +10001745
1746echo ""
1747
Damien Miller82cf0ce2000-12-20 13:34:48 +11001748if test "x$PAM_MSG" = "xyes" ; then
1749 echo "PAM is enabled. You may need to install a PAM control file for sshd,"
1750 echo "otherwise password authentication may fail. Example PAM control files"
1751 echo "can be found in the contrib/ subdirectory"
1752 echo ""
1753fi
1754
Damien Miller6f9c3372000-10-25 10:06:04 +11001755if test ! -z "$BUILTIN_RNG" ; then
1756 echo "WARNING: you are using the builtin random number collection service."
1757 echo "Please read WARNING.RNG and request that your OS vendor includes"
1758 echo "/dev/random in future versions of their OS."
1759 echo ""
1760fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001761
1762if test ! -z "$NO_SFTP"; then
1763 echo "sftp-server will be disabled. Your compiler does not support"
1764 echo "64bit integers."
1765 echo ""
1766fi