blob: a3ec88c6d646262933c344ea15012815477d73e8 [file] [log] [blame]
Damien Millerdf288022001-02-18 13:07:07 +11001# $Id: configure.in,v 1.245 2001/02/18 02:07:07 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 Miller217f5672001-02-16 12:12:41 +1100239 AC_CHECK_FUNCS(getluid setluid)
Damien Miller78315eb2000-09-29 23:01:36 +1100240 ;;
241*-*-sco3.2v5*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000242 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Millera66626b2000-06-13 18:57:53 +1000243 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Damien Miller5dfe9762001-02-16 12:05:39 +1100244 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000245 MANTYPE='$(CATMAN)'
246 mansubdir=cat
Damien Millera66626b2000-06-13 18:57:53 +1000247 no_dev_ptmx=1
Damien Miller78315eb2000-09-29 23:01:36 +1100248 rsh_path="/usr/bin/rcmd"
Damien Miller5dfe9762001-02-16 12:05:39 +1100249 AC_DEFINE(USE_PIPES)
Damien Miller78315eb2000-09-29 23:01:36 +1100250 AC_DEFINE(HAVE_SCO_PROTECTED_PW)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000251 AC_DEFINE(DISABLE_SHADOW)
Ben Lindstrom42717bf2000-12-28 15:46:20 +0000252 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
Damien Miller217f5672001-02-16 12:12:41 +1100253 AC_CHECK_FUNCS(getluid setluid)
Damien Millera66626b2000-06-13 18:57:53 +1000254 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000255*-dec-osf*)
Damien Millerb8c656e2000-06-28 15:22:41 +1000256 if test ! -z "USE_SIA" ; then
257 AC_MSG_CHECKING(for Digital Unix Security Integration Architecture)
258 if test -f /etc/sia/matrix.conf; then
259 AC_MSG_RESULT(yes)
260 AC_DEFINE(HAVE_OSF_SIA)
261 AC_DEFINE(DISABLE_LOGIN)
262 LIBS="$LIBS -lsecurity -ldb -lm -laud"
263 else
264 AC_MSG_RESULT(no)
265 fi
266 fi
267 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100268esac
269
Damien Millere37bfc12000-06-05 09:37:43 +1000270# Allow user to specify flags
271AC_ARG_WITH(cflags,
272 [ --with-cflags Specify additional flags to pass to compiler],
273 [
274 if test "x$withval" != "xno" ; then
275 CFLAGS="$CFLAGS $withval"
276 fi
277 ]
278)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000279AC_ARG_WITH(cppflags,
280 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
281 [
282 if test "x$withval" != "xno"; then
283 CPPFLAGS="$CPPFLAGS $withval"
284 fi
285 ]
286)
Damien Millere37bfc12000-06-05 09:37:43 +1000287AC_ARG_WITH(ldflags,
Ben Lindstrom2ed98182000-11-06 07:15:43 +0000288 [ --with-ldflags Specify additional flags to pass to linker],
Damien Millere37bfc12000-06-05 09:37:43 +1000289 [
290 if test "x$withval" != "xno" ; then
291 LDFLAGS="$LDFLAGS $withval"
292 fi
293 ]
294)
295AC_ARG_WITH(libs,
296 [ --with-libs Specify additional libraries to link with],
297 [
298 if test "x$withval" != "xno" ; then
299 LIBS="$LIBS $withval"
300 fi
301 ]
302)
303
Ben Lindstrom4e5a0aa2001-02-15 18:16:22 +0000304AC_ARG_WITH(pcre,
305 [ --with-pcre Override built in regex library with pcre],
306 [
307
308 AC_CHECK_LIB(pcre, pcre_info,
309 [
310 AC_DEFINE(HAVE_LIBPCRE)
311 LIBS="$LIBS -lpcreposix -lpcre"
312 no_comp_check="yes"
313 ],
314 [ AC_MSG_ERROR([*** Can not locate pcre libraries.]) ]
315 )
316 ]
317)
Damien Millere37bfc12000-06-05 09:37:43 +1000318
Damien Millera22ba012000-03-02 23:09:20 +1100319# Checks for libraries.
Damien Miller22d5aa72001-02-18 12:49:57 +1100320if test -z "$no_libnsl" ; then
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000321 AC_CHECK_LIB(nsl, yp_match, , )
322fi
Damien Miller22d5aa72001-02-18 12:49:57 +1100323if test -z "$no_libsocket" ; then
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000324 AC_CHECK_LIB(socket, main, , )
325fi
326
Damien Millerdf288022001-02-18 13:07:07 +1100327dnl SCO OS3 needs this for libwrap
328AC_CHECK_LIB(rpc, innetgr, LIBS="-lrpc -lyp -lrpc $LIBS" , , -lyp -lrpc)
329
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000330AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen")
Damien Miller5dfe9762001-02-16 12:05:39 +1100331AC_CHECK_LIB(z, deflate, ,AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***]))
Damien Millerab18c411999-11-11 10:40:23 +1100332AC_CHECK_LIB(util, login, AC_DEFINE(HAVE_LIBUTIL_LOGIN) LIBS="$LIBS -lutil")
Damien Miller6f9c3372000-10-25 10:06:04 +1100333
Ben Lindstrom4e5a0aa2001-02-15 18:16:22 +0000334# We don't want to check if we did an pcre override.
335if test -z "$no_comp_check" ; then
336 AC_CHECK_FUNC(regcomp,
337 [ AC_DEFINE(HAVE_REGCOMP)],
338 [
339 AC_CHECK_LIB(pcre, pcre_info,
340 [
341 AC_DEFINE(HAVE_LIBPCRE)
342 LIBS="$LIBS -lpcreposix -lpcre"
343 ],
344 [
345 AC_MSG_ERROR([*** No regex library found.])
346 ])
347 ]
348 )
349fi
Damien Millerab18c411999-11-11 10:40:23 +1100350
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000351dnl UnixWare 2.x
352AC_CHECK_FUNC(strcasecmp,
353 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
354)
355AC_CHECK_FUNC(utimes,
356 [], [ AC_CHECK_LIB(c89, utimes, LIBS="$LIBS -lc89") ]
357)
Damien Millerab18c411999-11-11 10:40:23 +1100358
Damien Millera22ba012000-03-02 23:09:20 +1100359# Checks for header files.
Ben Lindstrom2320b192001-02-15 03:46:28 +0000360AC_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 +1100361
Damien Millerc547bf12001-02-16 10:18:12 +1100362# Check whether user wants Kerberos support
363KRB4_MSG="no"
364AC_ARG_WITH(kerberos4,
365 [ --with-kerberos4=PATH Enable Kerberos 4 support],
366 [
367 if test "x$withval" != "xno" ; then
368
369 if test "x$withval" != "xyes" ; then
370 CPPFLAGS="$CPPFLAGS -I${withval}/include"
371 LDFLAGS="$LDFLAGS -L${withval}/lib"
372 if test ! -z "$need_dash_r" ; then
373 LDFLAGS="$LDFLAGS -R${withval}/lib"
374 fi
375 if test ! -z "$blibpath" ; then
376 blibpath="$blibpath:${withval}/lib"
377 fi
378 else
379 if test -d /usr/include/kerberosIV ; then
380 CPPFLAGS="$CPPFLAGS -I/usr/include/kerberosIV"
381 fi
382 fi
383
384 AC_CHECK_HEADERS(krb.h)
385 AC_CHECK_LIB(krb, main)
386 if test "$ac_cv_header_krb_h" != yes; then
387 AC_MSG_WARN([Cannot find krb.h, build may fail])
388 fi
389 if test "$ac_cv_lib_krb_main" != yes; then
390 AC_MSG_WARN([Cannot find libkrb, build may fail])
391 fi
392
393 KLIBS="-lkrb -ldes"
394 AC_CHECK_LIB(resolv, dn_expand, , )
395 KRB4=yes
396 KRB4_MSG="yes"
397 AC_DEFINE(KRB4)
398 fi
399 ]
400)
401
402# Check whether user wants AFS support
403AFS_MSG="no"
404AC_ARG_WITH(afs,
405 [ --with-afs=PATH Enable AFS support],
406 [
407 if test "x$withval" != "xno" ; then
408
409 if test "x$withval" != "xyes" ; then
410 CPPFLAGS="$CPPFLAGS -I${withval}/include"
411 LDFLAGS="$LDFLAGS -L${withval}/lib"
412 fi
413
414 if test -z "$KRB4" ; then
415 AC_MSG_WARN([AFS requires Kerberos IV support, build may fail])
416 fi
417
418 LIBS="$LIBS -lkafs"
419 if test ! -z "$AFS_LIBS" ; then
420 LIBS="$LIBS $AFS_LIBS"
421 fi
422 AC_DEFINE(AFS)
423 AFS_MSG="yes"
424 fi
425 ]
426)
427LIBS="$LIBS $KLIBS"
428
429# Check whether user wants S/Key support
430SKEY_MSG="no"
431AC_ARG_WITH(skey,
432 [ --with-skey=PATH Enable S/Key support],
433 [
434 if test "x$withval" != "xno" ; then
435
436 if test "x$withval" != "xyes" ; then
437 CPPFLAGS="$CPPFLAGS -I${withval}/include"
438 LDFLAGS="$LDFLAGS -L${withval}/lib"
439 fi
440
441 AC_DEFINE(SKEY)
442 LIBS="-lskey $LIBS"
443 SKEY_MSG="yes"
444
445 AC_CHECK_FUNC(skey_keyinfo,
446 [],
447 [
448 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
449 ])
450 fi
451 ]
452)
453
454# Check whether user wants TCP wrappers support
455TCPW_MSG="no"
456AC_ARG_WITH(tcp-wrappers,
457 [ --with-tcp-wrappers Enable tcpwrappers support],
458 [
459 if test "x$withval" != "xno" ; then
460 saved_LIBS="$LIBS"
461 LIBS="-lwrap $LIBS"
462 AC_MSG_CHECKING(for libwrap)
463 AC_TRY_LINK(
464 [
465#include <tcpd.h>
466 int deny_severity = 0, allow_severity = 0;
467 ],
468 [hosts_access(0);],
469 [
470 AC_MSG_RESULT(yes)
471 AC_DEFINE(LIBWRAP)
472 TCPW_MSG="yes"
473 ],
474 [
475 AC_MSG_ERROR([*** libwrap missing])
476 ]
477 )
478 fi
479 ]
480)
481
Damien Millerad833b32000-08-23 10:46:23 +1000482dnl Checks for library functions.
Ben Lindstrom34bb0c72001-02-13 02:40:56 +0000483AC_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 +1000484dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +0000485AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +1000486dnl Checks for libutil functions
Ben Lindstrome2fb8d32000-12-28 00:07:07 +0000487AC_CHECK_HEADERS(libutil.h)
andre2ff7b5d2000-06-03 14:57:40 +0000488AC_CHECK_FUNCS(login logout updwtmp logwtmp)
Damien Millerad833b32000-08-23 10:46:23 +1000489dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000490AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +0000491AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +1000492dnl Checks for utmpx functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000493AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
andre2ff7b5d2000-06-03 14:57:40 +0000494AC_CHECK_FUNCS(setutxent utmpxname)
Damien Millercedfecc1999-11-15 14:36:53 +1100495
Damien Miller5fc85652000-07-09 23:53:07 +1000496AC_CHECK_FUNC(getuserattr,
497 [AC_DEFINE(HAVE_GETUSERATTR)],
498 [AC_CHECK_LIB(s, getuserattr, [LIBS="$LIBS -ls"; AC_DEFINE(HAVE_GETUSERATTR)])]
499)
500
Damien Miller04f80141999-11-19 15:32:34 +1100501AC_CHECK_FUNC(login,
502 [AC_DEFINE(HAVE_LOGIN)],
503 [AC_CHECK_LIB(bsd, login, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_LOGIN)])]
504)
505
506AC_CHECK_FUNC(daemon,
507 [AC_DEFINE(HAVE_DAEMON)],
508 [AC_CHECK_LIB(bsd, daemon, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
509)
510
Damien Miller9fb07e42000-03-05 16:22:59 +1100511AC_CHECK_FUNC(getpagesize,
512 [AC_DEFINE(HAVE_GETPAGESIZE)],
513 [AC_CHECK_LIB(ucb, getpagesize, [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
514)
515
Damien Millercb170cb2000-07-01 16:52:55 +1000516# Check for broken snprintf
517if test "x$ac_cv_func_snprintf" = "xyes" ; then
518 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
519 AC_TRY_RUN(
520 [
521#include <stdio.h>
522int main(void){char b[5];snprintf(b,5,"123456789");return(b[4]!='\0');}
523 ],
524 [AC_MSG_RESULT(yes)],
525 [
526 AC_MSG_RESULT(no)
527 AC_DEFINE(BROKEN_SNPRINTF)
528 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
529 ]
530 )
531fi
532
Damien Miller606f8802000-09-16 15:39:56 +1100533AC_FUNC_GETPGRP
534
Ben Lindstromec3830a2001-01-25 00:07:33 +0000535AC_FUNC_STRFTIME
536
Damien Millera64b57a2001-01-17 10:44:13 +1100537# Check for PAM libs
Damien Miller7b22d652000-06-18 14:07:04 +1000538PAM_MSG="no"
Damien Millera22ba012000-03-02 23:09:20 +1100539AC_ARG_WITH(pam,
Damien Millera64b57a2001-01-17 10:44:13 +1100540 [ --with-pam Enable PAM support ],
Damien Millera22ba012000-03-02 23:09:20 +1100541 [
Damien Millera64b57a2001-01-17 10:44:13 +1100542 if test "x$withval" != "xno" ; then
543 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" ; then
544 AC_MSG_ERROR([PAM headers not found])
545 fi
546
547 AC_CHECK_LIB(dl, dlopen, , )
548 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
549 AC_CHECK_FUNCS(pam_getenvlist)
550
551 disable_shadow=yes
552 PAM_MSG="yes"
553
554 AC_DEFINE(USE_PAM)
Damien Millera22ba012000-03-02 23:09:20 +1100555 fi
556 ]
557)
Damien Millera22ba012000-03-02 23:09:20 +1100558
Damien Millera64b57a2001-01-17 10:44:13 +1100559# Check for older PAM
560if test "x$PAM_MSG" = "xyes" ; then
Damien Millera22ba012000-03-02 23:09:20 +1100561 # Check PAM strerror arguments (old PAM)
562 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
563 AC_TRY_COMPILE(
564 [
Damien Miller81171112000-04-23 11:14:01 +1000565#include <stdlib.h>
566#include <security/pam_appl.h>
Damien Millera22ba012000-03-02 23:09:20 +1100567 ],
568 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
569 [AC_MSG_RESULT(no)],
570 [
571 AC_DEFINE(HAVE_OLD_PAM)
572 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +1000573 PAM_MSG="yes (old library)"
Damien Millera22ba012000-03-02 23:09:20 +1100574 ]
Damien Millera64b57a2001-01-17 10:44:13 +1100575 )
Damien Millera22ba012000-03-02 23:09:20 +1100576fi
577
578# The big search for OpenSSL
579AC_ARG_WITH(ssl-dir,
580 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
581 [
Ben Lindstrom23e13712000-10-29 22:49:19 +0000582 if test "x$withval" != "xno" ; then
Damien Millera22ba012000-03-02 23:09:20 +1100583 tryssldir=$withval
584 fi
585 ]
586)
587
588saved_LIBS="$LIBS"
Damien Millera1ad4802000-03-15 10:04:54 +1100589saved_LDFLAGS="$LDFLAGS"
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000590saved_CPPFLAGS="$CPPFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +1100591if test "x$prefix" != "xNONE" ; then
592 tryssldir="$tryssldir $prefix"
593fi
Damien Miller61e50f12000-05-08 20:49:37 +1000594AC_CACHE_CHECK([for OpenSSL directory], ac_cv_openssldir, [
Damien Millera22ba012000-03-02 23:09:20 +1100595
Damien Millera1b61e12000-09-16 17:02:16 +1100596 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 +1100597 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
Damien Miller61e50f12000-05-08 20:49:37 +1000598 LDFLAGS="$saved_LDFLAGS -L$ssldir/lib -L$ssldir"
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000599 CPPFLAGS="$saved_CPPFLAGS -I$ssldir/include"
Damien Miller61e50f12000-05-08 20:49:37 +1000600 if test ! -z "$need_dash_r" ; then
601 LDFLAGS="$LDFLAGS -R$ssldir/lib -R$ssldir"
602 fi
Damien Millera1ad4802000-03-15 10:04:54 +1100603 else
Damien Miller61e50f12000-05-08 20:49:37 +1000604 LDFLAGS="$saved_LDFLAGS"
Damien Millerb85dcad2000-03-11 11:37:00 +1100605 fi
606
Damien Miller3b512e12000-05-17 23:29:18 +1000607 LIBS="$saved_LIBS -lcrypto"
Damien Miller61e50f12000-05-08 20:49:37 +1000608
Damien Miller3b512e12000-05-17 23:29:18 +1000609 # Basic test to check for compatible version and correct linking
610 # *does not* test for RSA - that comes later.
611 AC_TRY_RUN(
612 [
Damien Millere59ce622000-05-01 20:54:17 +1000613#include <string.h>
614#include <openssl/rand.h>
Damien Miller81171112000-04-23 11:14:01 +1000615int main(void)
616{
Damien Miller3b512e12000-05-17 23:29:18 +1000617 char a[2048];
618 memset(a, 0, sizeof(a));
Damien Miller81171112000-04-23 11:14:01 +1000619 RAND_add(a, sizeof(a), sizeof(a));
Damien Miller3b512e12000-05-17 23:29:18 +1000620 return(RAND_status() <= 0);
Damien Miller81171112000-04-23 11:14:01 +1000621}
Damien Miller3b512e12000-05-17 23:29:18 +1000622 ],
623 [
624 found_crypto=1
625 break;
626 ], []
627 )
Damien Miller61e50f12000-05-08 20:49:37 +1000628
629 if test ! -z "$found_crypto" ; then
630 break;
631 fi
Damien Millerb85dcad2000-03-11 11:37:00 +1100632 done
633
Damien Miller61e50f12000-05-08 20:49:37 +1000634 if test -z "$found_crypto" ; then
Damien Miller5dfe9762001-02-16 12:05:39 +1100635 AC_MSG_ERROR([Could not find working OpenSSL library, please install or check config.log])
Damien Millerb85dcad2000-03-11 11:37:00 +1100636 fi
Damien Miller61e50f12000-05-08 20:49:37 +1000637 if test -z "$ssldir" ; then
638 ssldir="(system)"
639 fi
Damien Millera22ba012000-03-02 23:09:20 +1100640
Damien Miller61e50f12000-05-08 20:49:37 +1000641 ac_cv_openssldir=$ssldir
642])
643
Damien Milleredb82922000-06-20 13:25:52 +1000644if (test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)") ; then
Damien Miller61e50f12000-05-08 20:49:37 +1000645 AC_DEFINE(HAVE_OPENSSL)
646 dnl Need to recover ssldir - test above runs in subshell
647 ssldir=$ac_cv_openssldir
Damien Millera64b57a2001-01-17 10:44:13 +1100648
649 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
650 CPPFLAGS="$saved_CPPFLAGS -I$ssldir/include"
651 LDFLAGS="$saved_LDFLAGS -L$ssldir/lib -L$ssldir"
652 if test ! -z "$need_dash_r" ; then
653 LDFLAGS="$LDFLAGS -R$ssldir/lib -R$ssldir"
654 fi
655 if test ! -z "$blibpath" ; then
656 blibpath="$blibpath:$ssldir:$ssldir/lib"
657 fi
Damien Miller29ea30d2000-03-17 10:54:15 +1100658 fi
Damien Millera22ba012000-03-02 23:09:20 +1100659fi
Damien Miller3b512e12000-05-17 23:29:18 +1000660LIBS="$saved_LIBS -lcrypto"
Damien Miller61e50f12000-05-08 20:49:37 +1000661
Damien Miller3b512e12000-05-17 23:29:18 +1000662# Now test RSA support
663saved_LIBS="$LIBS"
664AC_MSG_CHECKING([for RSA support])
665for WANTS_RSAREF in "" 1 ; do
666 if test -z "$WANTS_RSAREF" ; then
667 LIBS="$saved_LIBS"
668 else
669 LIBS="$saved_LIBS -lRSAglue -lrsaref"
670 fi
671 AC_TRY_RUN([
672#include <string.h>
673#include <openssl/rand.h>
674#include <openssl/rsa.h>
675#include <openssl/bn.h>
676#include <openssl/sha.h>
677int main(void)
678{
679 int num; RSA *key; static unsigned char p_in[] = "blahblah";
680 unsigned char c[256], p[256];
681 memset(c, 0, sizeof(c)); RAND_add(c, sizeof(c), sizeof(c));
682 if ((key=RSA_generate_key(512, 3, NULL, NULL))==NULL) return(1);
683 num = RSA_public_encrypt(sizeof(p_in) - 1, p_in, c, key, RSA_PKCS1_PADDING);
684 return(-1 == RSA_private_decrypt(num, c, p, key, RSA_PKCS1_PADDING));
685}
686 ],
687 [
688 rsa_works=1
689 break;
690 ], [])
691done
692
693if test ! -z "$no_rsa" ; then
694 AC_MSG_RESULT(disabled)
Damien Miller7b22d652000-06-18 14:07:04 +1000695 RSA_MSG="disabled"
Damien Miller3b512e12000-05-17 23:29:18 +1000696else
697 if test -z "$rsa_works" ; then
698 AC_MSG_WARN([*** No RSA support found *** ])
Damien Miller7b22d652000-06-18 14:07:04 +1000699 RSA_MSG="no"
Damien Miller3b512e12000-05-17 23:29:18 +1000700 else
701 if test -z "$WANTS_RSAREF" ; then
702 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +1000703 RSA_MSG="yes"
Damien Miller3b512e12000-05-17 23:29:18 +1000704 else
Damien Miller7b22d652000-06-18 14:07:04 +1000705 RSA_MSG="yes (using RSAref)"
Damien Miller3b512e12000-05-17 23:29:18 +1000706 AC_MSG_RESULT(using RSAref)
707 LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref"
708 fi
709 fi
710fi
Damien Millera22ba012000-03-02 23:09:20 +1100711
Damien Millera64b57a2001-01-17 10:44:13 +1100712# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
713# version in OpenSSL. Skip this for PAM
714if test "x$PAM_MSG" = "xno" -a "x$check_for_libcrypt_later" = "x1"; then
715 AC_CHECK_LIB(crypt, crypt, , )
716fi
717
Ben Lindstromb5628642000-10-18 00:02:25 +0000718# Cheap hack to ensure NEWS-OS libraries are arranged right.
719if test ! -z "$SONY" ; then
720 LIBS="$LIBS -liberty";
721fi
722
Damien Millera22ba012000-03-02 23:09:20 +1100723# Checks for data types
Damien Millere0f45742000-01-18 09:12:06 +1100724AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +1100725AC_CHECK_SIZEOF(short int, 2)
726AC_CHECK_SIZEOF(int, 4)
727AC_CHECK_SIZEOF(long int, 4)
728AC_CHECK_SIZEOF(long long int, 8)
729
Damien Millera22ba012000-03-02 23:09:20 +1100730# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +1100731AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
732 AC_TRY_COMPILE(
733 [ #include <sys/types.h> ],
734 [ u_int a; a = 1;],
735 [ ac_cv_have_u_int="yes" ],
736 [ ac_cv_have_u_int="no" ]
737 )
738])
739if test "x$ac_cv_have_u_int" = "xyes" ; then
740 AC_DEFINE(HAVE_U_INT)
741 have_u_int=1
742fi
743
Damien Miller61e50f12000-05-08 20:49:37 +1000744AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
745 AC_TRY_COMPILE(
746 [ #include <sys/types.h> ],
747 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
748 [ ac_cv_have_intxx_t="yes" ],
749 [ ac_cv_have_intxx_t="no" ]
750 )
751])
752if test "x$ac_cv_have_intxx_t" = "xyes" ; then
753 AC_DEFINE(HAVE_INTXX_T)
754 have_intxx_t=1
755fi
756
Damien Miller578783e2000-09-23 14:12:24 +1100757AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
758 AC_TRY_COMPILE(
759 [ #include <sys/types.h> ],
760 [ int64_t a; a = 1;],
761 [ ac_cv_have_int64_t="yes" ],
762 [ ac_cv_have_int64_t="no" ]
763 )
764])
765if test "x$ac_cv_have_int64_t" = "xyes" ; then
766 AC_DEFINE(HAVE_INT64_T)
767 have_int64_t=1
768fi
769
Damien Miller61e50f12000-05-08 20:49:37 +1000770AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
771 AC_TRY_COMPILE(
772 [ #include <sys/types.h> ],
773 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
774 [ ac_cv_have_u_intxx_t="yes" ],
775 [ ac_cv_have_u_intxx_t="no" ]
776 )
777])
778if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
779 AC_DEFINE(HAVE_U_INTXX_T)
780 have_u_intxx_t=1
781fi
Damien Millerc6398ef1999-11-20 12:18:40 +1100782
Damien Miller578783e2000-09-23 14:12:24 +1100783AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
784 AC_TRY_COMPILE(
785 [ #include <sys/types.h> ],
786 [ u_int64_t a; a = 1;],
787 [ ac_cv_have_u_int64_t="yes" ],
788 [ ac_cv_have_u_int64_t="no" ]
789 )
790])
791if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
792 AC_DEFINE(HAVE_U_INT64_T)
793 have_u_int64_t=1
794fi
795
Damien Milleredb82922000-06-20 13:25:52 +1000796if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
797 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +1100798then
799 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
800 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +1000801 [
802#include <sys/bitypes.h>
803 ],
Damien Millerb29ea912000-01-15 14:12:03 +1100804 [
Damien Miller70494d12000-04-03 15:57:06 +1000805 int8_t a; int16_t b; int32_t c;
806 u_int8_t e; u_int16_t f; u_int32_t g;
807 a = b = c = e = f = g = 1;
Damien Millerb29ea912000-01-15 14:12:03 +1100808 ],
809 [
810 AC_DEFINE(HAVE_U_INTXX_T)
811 AC_DEFINE(HAVE_INTXX_T)
812 AC_MSG_RESULT(yes)
813 ],
814 [AC_MSG_RESULT(no)]
815 )
816fi
817
Damien Millerd6121d22000-03-17 23:26:46 +1100818if test -z "$have_u_intxx_t" ; then
Damien Miller61e50f12000-05-08 20:49:37 +1000819 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
820 AC_TRY_COMPILE(
821 [
822#include <sys/types.h>
823 ],
824 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
825 [ ac_cv_have_uintxx_t="yes" ],
826 [ ac_cv_have_uintxx_t="no" ]
827 )
828 ])
829 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
830 AC_DEFINE(HAVE_UINTXX_T)
831 fi
Damien Millerd6121d22000-03-17 23:26:46 +1100832fi
Damien Millerc6398ef1999-11-20 12:18:40 +1100833
Damien Miller61e50f12000-05-08 20:49:37 +1000834AC_CACHE_CHECK([for socklen_t], ac_cv_have_socklen_t, [
835 AC_TRY_COMPILE(
836 [
Damien Miller81171112000-04-23 11:14:01 +1000837#include <sys/types.h>
838#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000839 ],
840 [socklen_t foo; foo = 1235;],
841 [ ac_cv_have_socklen_t="yes" ],
842 [ ac_cv_have_socklen_t="no" ]
843 )
844])
845if test "x$ac_cv_have_socklen_t" = "xyes" ; then
846 AC_DEFINE(HAVE_SOCKLEN_T)
847fi
Damien Miller74d0d4a1999-12-29 02:24:35 +1100848
Damien Miller61e50f12000-05-08 20:49:37 +1000849AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
850 AC_TRY_COMPILE(
851 [
852#include <sys/types.h>
853 ],
854 [ size_t foo; foo = 1235; ],
855 [ ac_cv_have_size_t="yes" ],
856 [ ac_cv_have_size_t="no" ]
857 )
858])
859if test "x$ac_cv_have_size_t" = "xyes" ; then
860 AC_DEFINE(HAVE_SIZE_T)
861fi
Damien Miller95058511999-12-29 10:36:45 +1100862
Damien Miller615f9392000-05-17 22:53:33 +1000863AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
864 AC_TRY_COMPILE(
865 [
866#include <sys/types.h>
867 ],
868 [ ssize_t foo; foo = 1235; ],
869 [ ac_cv_have_ssize_t="yes" ],
870 [ ac_cv_have_ssize_t="no" ]
871 )
872])
873if test "x$ac_cv_have_ssize_t" = "xyes" ; then
874 AC_DEFINE(HAVE_SSIZE_T)
875fi
876
Ben Lindstrom0d5af602001-01-09 00:50:29 +0000877AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
878 AC_TRY_COMPILE(
879 [
880#include <time.h>
881 ],
882 [ clock_t foo; foo = 1235; ],
883 [ ac_cv_have_clock_t="yes" ],
884 [ ac_cv_have_clock_t="no" ]
885 )
886])
887if test "x$ac_cv_have_clock_t" = "xyes" ; then
888 AC_DEFINE(HAVE_CLOCK_T)
889fi
890
Damien Millerb54b40e2000-06-23 08:23:34 +1000891AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
892 AC_TRY_COMPILE(
893 [
894#include <sys/types.h>
895#include <sys/socket.h>
896 ],
897 [ sa_family_t foo; foo = 1235; ],
898 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +1100899 [ AC_TRY_COMPILE(
900 [
901#include <sys/types.h>
902#include <sys/socket.h>
903#include <netinet/in.h>
904 ],
905 [ sa_family_t foo; foo = 1235; ],
906 [ ac_cv_have_sa_family_t="yes" ],
907
Damien Millerb54b40e2000-06-23 08:23:34 +1000908 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +1100909 )]
Damien Millerb54b40e2000-06-23 08:23:34 +1000910 )
911])
912if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
913 AC_DEFINE(HAVE_SA_FAMILY_T)
914fi
915
Damien Miller0f91b4e2000-06-18 15:43:25 +1000916AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
917 AC_TRY_COMPILE(
918 [
919#include <sys/types.h>
920 ],
921 [ pid_t foo; foo = 1235; ],
922 [ ac_cv_have_pid_t="yes" ],
923 [ ac_cv_have_pid_t="no" ]
924 )
925])
926if test "x$ac_cv_have_pid_t" = "xyes" ; then
927 AC_DEFINE(HAVE_PID_T)
928fi
929
930AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
931 AC_TRY_COMPILE(
932 [
933#include <sys/types.h>
934 ],
935 [ mode_t foo; foo = 1235; ],
936 [ ac_cv_have_mode_t="yes" ],
937 [ ac_cv_have_mode_t="no" ]
938 )
939])
940if test "x$ac_cv_have_mode_t" = "xyes" ; then
941 AC_DEFINE(HAVE_MODE_T)
942fi
943
Damien Miller61e50f12000-05-08 20:49:37 +1000944
945AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
946 AC_TRY_COMPILE(
947 [
Damien Miller81171112000-04-23 11:14:01 +1000948#include <sys/types.h>
949#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000950 ],
951 [ struct sockaddr_storage s; ],
952 [ ac_cv_have_struct_sockaddr_storage="yes" ],
953 [ ac_cv_have_struct_sockaddr_storage="no" ]
954 )
955])
956if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
957 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)
958fi
Damien Miller34132e52000-01-14 15:45:46 +1100959
Damien Miller61e50f12000-05-08 20:49:37 +1000960AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
961 AC_TRY_COMPILE(
962 [
Damien Miller7b22d652000-06-18 14:07:04 +1000963#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000964#include <netinet/in.h>
965 ],
966 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
967 [ ac_cv_have_struct_sockaddr_in6="yes" ],
968 [ ac_cv_have_struct_sockaddr_in6="no" ]
969 )
970])
971if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
972 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)
973fi
Damien Miller34132e52000-01-14 15:45:46 +1100974
Damien Miller61e50f12000-05-08 20:49:37 +1000975AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
976 AC_TRY_COMPILE(
977 [
Damien Miller7b22d652000-06-18 14:07:04 +1000978#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000979#include <netinet/in.h>
980 ],
981 [ struct in6_addr s; s.s6_addr[0] = 0; ],
982 [ ac_cv_have_struct_in6_addr="yes" ],
983 [ ac_cv_have_struct_in6_addr="no" ]
984 )
985])
986if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
987 AC_DEFINE(HAVE_STRUCT_IN6_ADDR)
988fi
Damien Miller34132e52000-01-14 15:45:46 +1100989
Damien Miller61e50f12000-05-08 20:49:37 +1000990AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
991 AC_TRY_COMPILE(
992 [
Damien Miller81171112000-04-23 11:14:01 +1000993#include <sys/types.h>
994#include <sys/socket.h>
995#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000996 ],
997 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
998 [ ac_cv_have_struct_addrinfo="yes" ],
999 [ ac_cv_have_struct_addrinfo="no" ]
1000 )
1001])
1002if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
1003 AC_DEFINE(HAVE_STRUCT_ADDRINFO)
1004fi
1005
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001006AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
1007 AC_TRY_COMPILE(
1008 [ #include <sys/time.h> ],
1009 [ struct timeval tv; tv.tv_sec = 1;],
1010 [ ac_cv_have_struct_timeval="yes" ],
1011 [ ac_cv_have_struct_timeval="no" ]
1012 )
1013])
1014if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
1015 AC_DEFINE(HAVE_STRUCT_TIMEVAL)
1016 have_struct_timeval=1
1017fi
1018
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001019# If we don't have int64_t then we can't compile sftp-server. So don't
1020# even attempt to do it.
1021if test "x$ac_cv_have_int64_t" = "xno" -a \
1022 "x$ac_cv_sizeof_long_int" != "x8" -a \
1023 "x$ac_cv_sizeof_long_long_int" = "x0" ; then
1024 NO_SFTP='#'
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001025fi
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001026AC_SUBST(NO_SFTP)
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001027
Damien Miller78315eb2000-09-29 23:01:36 +11001028dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10001029OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
1030OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
1031OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
1032OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
1033OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10001034OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001035OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
1036OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10001037OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001038OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
1039OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
1040OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
1041OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00001042OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
1043OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
1044OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
1045OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Damien Miller78315eb2000-09-29 23:01:36 +11001046AC_STRUCT_ST_BLKSIZE
andre2ff7b5d2000-06-03 14:57:40 +00001047
Damien Miller942da032000-08-18 13:59:06 +10001048AC_CACHE_CHECK([for sun_len field in struct sockaddr_un],
1049 ac_cv_have_sun_len_in_struct_sockaddr_un, [
1050 AC_TRY_COMPILE(
1051 [
1052#include <sys/types.h>
1053#include <sys/socket.h>
1054 ],
1055 [ struct sockaddr_un s; s.sun_len = 1; ],
1056 [ ac_cv_have_sun_len_in_struct_sockaddr_un="yes" ],
1057 [ ac_cv_have_sun_len_in_struct_sockaddr_un="no" ],
1058 )
1059])
1060if test "x$ac_cv_have_sun_len_in_struct_sockaddr_un" = "xyes" ; then
1061 AC_DEFINE(HAVE_SUN_LEN_IN_SOCKADDR_UN)
1062fi
1063
Damien Miller61e50f12000-05-08 20:49:37 +10001064AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
1065 ac_cv_have_ss_family_in_struct_ss, [
1066 AC_TRY_COMPILE(
1067 [
Damien Miller81171112000-04-23 11:14:01 +10001068#include <sys/types.h>
1069#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001070 ],
1071 [ struct sockaddr_storage s; s.ss_family = 1; ],
1072 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
1073 [ ac_cv_have_ss_family_in_struct_ss="no" ],
1074 )
1075])
1076if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
1077 AC_DEFINE(HAVE_SS_FAMILY_IN_SS)
1078fi
1079
Damien Miller61e50f12000-05-08 20:49:37 +10001080AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
1081 ac_cv_have___ss_family_in_struct_ss, [
1082 AC_TRY_COMPILE(
1083 [
Damien Miller81171112000-04-23 11:14:01 +10001084#include <sys/types.h>
1085#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001086 ],
1087 [ struct sockaddr_storage s; s.__ss_family = 1; ],
1088 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
1089 [ ac_cv_have___ss_family_in_struct_ss="no" ]
1090 )
1091])
1092if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
1093 AC_DEFINE(HAVE___SS_FAMILY_IN_SS)
1094fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11001095
Damien Millerad833b32000-08-23 10:46:23 +10001096AC_CACHE_CHECK([for pw_class field in struct passwd],
1097 ac_cv_have_pw_class_in_struct_passwd, [
1098 AC_TRY_COMPILE(
1099 [
Damien Millerad833b32000-08-23 10:46:23 +10001100#include <pwd.h>
1101 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00001102 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10001103 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
1104 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
1105 )
1106])
1107if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
1108 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD)
1109fi
1110
Damien Miller61e50f12000-05-08 20:49:37 +10001111
1112AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
1113 AC_TRY_LINK([],
1114 [ extern char *__progname; printf("%s", __progname); ],
1115 [ ac_cv_libc_defines___progname="yes" ],
1116 [ ac_cv_libc_defines___progname="no" ]
1117 )
1118])
1119if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
1120 AC_DEFINE(HAVE___PROGNAME)
1121fi
1122
Damien Millera22ba012000-03-02 23:09:20 +11001123
Damien Millerecbb26d2000-07-15 14:59:14 +10001124AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
1125 AC_TRY_LINK([],
1126 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
1127 [ ac_cv_libc_defines_sys_errlist="yes" ],
1128 [ ac_cv_libc_defines_sys_errlist="no" ]
1129 )
1130])
1131if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
1132 AC_DEFINE(HAVE_SYS_ERRLIST)
1133fi
1134
1135
Damien Miller11fa2cc2000-08-16 10:35:58 +10001136AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
1137 AC_TRY_LINK([],
1138 [ extern int sys_nerr; printf("%i", sys_nerr);],
1139 [ ac_cv_libc_defines_sys_nerr="yes" ],
1140 [ ac_cv_libc_defines_sys_nerr="no" ]
1141 )
1142])
1143if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
1144 AC_DEFINE(HAVE_SYS_NERR)
1145fi
1146
1147
Damien Millera22ba012000-03-02 23:09:20 +11001148# Looking for programs, paths and files
1149AC_ARG_WITH(rsh,
1150 [ --with-rsh=PATH Specify path to remote shell program ],
1151 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001152 if test "x$withval" != "$no" ; then
Damien Miller90dcc052000-07-08 10:17:40 +10001153 rsh_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11001154 fi
1155 ],
1156 [
1157 AC_PATH_PROG(rsh_path, rsh)
1158 ]
1159)
1160
1161AC_ARG_WITH(xauth,
1162 [ --with-xauth=PATH Specify path to xauth program ],
1163 [
Ben Lindstrom76020ba2000-10-25 16:55:00 +00001164 if test "x$withval" != "xno" ; then
Damien Miller7b22d652000-06-18 14:07:04 +10001165 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11001166 fi
1167 ],
1168 [
Damien Miller78315eb2000-09-29 23:01:36 +11001169 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 +10001170 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11001171 xauth_path="/usr/openwin/bin/xauth"
1172 fi
1173 ]
1174)
1175
Damien Millera19cf472000-11-29 13:28:50 +11001176if test -z "$xauth_path" ; then
1177 XAUTH_PATH="undefined"
1178 AC_SUBST(XAUTH_PATH)
1179else
Damien Millera22ba012000-03-02 23:09:20 +11001180 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
Damien Millera19cf472000-11-29 13:28:50 +11001181 XAUTH_PATH=$xauth_path
1182 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11001183fi
1184if test ! -z "$rsh_path" ; then
1185 AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path")
1186fi
1187
1188# Check for mail directory (last resort if we cannot get it from headers)
1189if test ! -z "$MAIL" ; then
1190 maildir=`dirname $MAIL`
1191 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir")
1192fi
1193
Damien Millera22ba012000-03-02 23:09:20 +11001194if test -z "$no_dev_ptmx" ; then
Damien Miller204ad072000-03-02 23:56:12 +11001195 AC_CHECK_FILE("/dev/ptmx",
1196 [
1197 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
1198 have_dev_ptmx=1
1199 ]
1200 )
Damien Millera22ba012000-03-02 23:09:20 +11001201fi
Damien Miller204ad072000-03-02 23:56:12 +11001202AC_CHECK_FILE("/dev/ptc",
1203 [
1204 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
1205 have_dev_ptc=1
1206 ]
1207)
1208
Damien Millera22ba012000-03-02 23:09:20 +11001209# Options from here on. Some of these are preset by platform above
1210
Damien Millera22ba012000-03-02 23:09:20 +11001211# Check for user-specified random device, otherwise check /dev/urandom
1212AC_ARG_WITH(random,
Damien Miller0736c4d2001-01-25 10:51:46 +11001213 [ --with-random=FILE read entropy from FILE (default=/dev/urandom)],
Damien Millera22ba012000-03-02 23:09:20 +11001214 [
Damien Miller040f3832000-04-03 14:50:43 +10001215 if test "x$withval" != "xno" ; then
1216 RANDOM_POOL="$withval";
1217 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
1218 fi
Damien Millera22ba012000-03-02 23:09:20 +11001219 ],
1220 [
1221 # Check for random device
1222 AC_CHECK_FILE("/dev/urandom",
1223 [
1224 RANDOM_POOL="/dev/urandom";
1225 AC_SUBST(RANDOM_POOL)
1226 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
1227 ]
1228 )
1229 ]
1230)
1231
1232# Check for EGD pool file
1233AC_ARG_WITH(egd-pool,
Damien Miller0736c4d2001-01-25 10:51:46 +11001234 [ --with-egd-pool=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
Damien Millera22ba012000-03-02 23:09:20 +11001235 [
Damien Miller040f3832000-04-03 14:50:43 +10001236 if test "x$withval" != "xno" ; then
1237 EGD_SOCKET="$withval";
1238 AC_DEFINE_UNQUOTED(EGD_SOCKET, "$EGD_SOCKET")
1239 fi
Damien Miller0736c4d2001-01-25 10:51:46 +11001240 ],
1241 [
1242 # Check for existing socket only if we don't have a random device already
1243 if test -z "$RANDOM_POOL" ; then
1244 AC_MSG_CHECKING(for PRNGD/EGD socket)
1245 # Insert other locations here
Damien Miller4864e8f2001-02-08 10:07:08 +11001246 for egdsock in /var/run/egd-pool /etc/entropy /tmp/entropy ; do
Damien Millerd8ab0d42001-02-13 12:11:17 +11001247 if test -r $egdsock && $TEST_MINUS_S_SH -c "test -S $egdsock -o -p $egdsock" ; then
Damien Miller0736c4d2001-01-25 10:51:46 +11001248 EGD_SOCKET="$egdsock"
1249 AC_DEFINE_UNQUOTED(EGD_SOCKET, "$EGD_SOCKET")
Damien Miller0736c4d2001-01-25 10:51:46 +11001250 break;
1251 fi
1252 done
Damien Miller4864e8f2001-02-08 10:07:08 +11001253 if test -x "$EGD_SOCKET" ; then
1254 AC_MSG_RESULT($EGD_SOCKET)
1255 else
1256 AC_MSG_RESULT(not found)
1257 fi
Damien Miller0736c4d2001-01-25 10:51:46 +11001258 fi
Damien Millera22ba012000-03-02 23:09:20 +11001259 ]
1260)
1261
Damien Miller0736c4d2001-01-25 10:51:46 +11001262
Damien Miller0437b332000-05-02 09:56:41 +10001263# detect pathnames for entropy gathering commands, if we need them
1264INSTALL_SSH_PRNG_CMDS=""
1265rm -f prng_commands
Damien Milleredb82922000-06-20 13:25:52 +10001266if (test -z "$RANDOM_POOL" && test -z "$EGD_SOCKET") ; then
Damien Miller11e37f62000-04-08 18:23:30 +10001267 # Use these commands to collect entropy
Damien Miller61e50f12000-05-08 20:49:37 +10001268 OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
1269 OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
1270 OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
1271 OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
1272 OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
1273 OSSH_PATH_ENTROPY_PROG(PROG_W, w)
1274 OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
1275 OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
1276 OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
1277 OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
1278 OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
1279 OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
1280 OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
1281 OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
Damien Miller0437b332000-05-02 09:56:41 +10001282
1283 INSTALL_SSH_PRNG_CMDS="yes"
Damien Miller11e37f62000-04-08 18:23:30 +10001284fi
Damien Miller0437b332000-05-02 09:56:41 +10001285AC_SUBST(INSTALL_SSH_PRNG_CMDS)
1286
Damien Miller11e37f62000-04-08 18:23:30 +10001287
Damien Miller670a4b82000-01-22 13:53:11 +11001288AC_ARG_WITH(catman,
1289 [ --with-catman=man|cat Install preformatted manpages[no]],
1290 [
1291 MANTYPE='$(CATMAN)'
1292 if test x"$withval" != x"yes" ; then
1293 mansubdir=$withval
1294 else
1295 mansubdir=cat
1296 fi
1297 ], [
1298 if test -z "$MANTYPE" ; then
1299 MANTYPE='$(TROFFMAN)'
1300 mansubdir=man
1301 fi
1302 ]
1303)
1304AC_SUBST(MANTYPE)
1305AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11001306
Damien Millera22ba012000-03-02 23:09:20 +11001307# Check whether to enable MD5 passwords
Damien Miller7b22d652000-06-18 14:07:04 +10001308MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11001309AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11001310 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11001311 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001312 if test "x$withval" != "xno" ; then
Damien Miller8bdeee21999-12-30 15:50:54 +11001313 AC_DEFINE(HAVE_MD5_PASSWORDS)
Damien Miller7b22d652000-06-18 14:07:04 +10001314 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11001315 fi
1316 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11001317)
1318
Damien Millera22ba012000-03-02 23:09:20 +11001319# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11001320AC_ARG_WITH(shadow,
1321 [ --without-shadow Disable shadow password support],
1322 [
1323 if test "x$withval" = "xno" ; then
1324 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10001325 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11001326 fi
1327 ]
1328)
1329
Damien Miller1f335fb2000-06-26 11:31:33 +10001330if test -z "$disable_shadow" ; then
1331 AC_MSG_CHECKING([if the systems has expire shadow information])
1332 AC_TRY_COMPILE(
1333 [
1334#include <sys/types.h>
1335#include <shadow.h>
1336 struct spwd sp;
1337 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
1338 [ sp_expire_available=yes ], []
1339 )
1340
1341 if test "x$sp_expire_available" = "xyes" ; then
1342 AC_MSG_RESULT(yes)
1343 AC_DEFINE(HAS_SHADOW_EXPIRE)
1344 else
1345 AC_MSG_RESULT(no)
1346 fi
1347fi
1348
Damien Millera22ba012000-03-02 23:09:20 +11001349# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11001350if test ! -z "$IPADDR_IN_DISPLAY" ; then
1351 DISPLAY_HACK_MSG="yes"
1352 AC_DEFINE(IPADDR_IN_DISPLAY)
1353else
1354 DISPLAY_HACK_MSG="no"
1355 AC_ARG_WITH(ipaddr-display,
1356 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
1357 [
1358 if test "x$withval" != "xno" ; then
1359 AC_DEFINE(IPADDR_IN_DISPLAY)
1360 DISPLAY_HACK_MSG="yes"
1361 fi
1362 ]
1363 )
1364fi
Damien Miller76112de1999-12-21 11:18:08 +11001365
Damien Millera22ba012000-03-02 23:09:20 +11001366# Whether to mess with the default path
Damien Miller7b22d652000-06-18 14:07:04 +10001367SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11001368AC_ARG_WITH(default-path,
Damien Miller5a3e6831999-12-27 09:48:56 +11001369 [ --with-default-path=PATH Specify default \$PATH environment for server],
1370 [
1371 if test "x$withval" != "xno" ; then
Damien Millere68f92b2000-10-02 21:42:15 +11001372 AC_DEFINE_UNQUOTED(USER_PATH, "$withval")
Damien Miller7b22d652000-06-18 14:07:04 +10001373 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11001374 fi
1375 ]
1376)
1377
Damien Millera22ba012000-03-02 23:09:20 +11001378# Whether to force IPv4 by default (needed on broken glibc Linux)
Damien Miller7b22d652000-06-18 14:07:04 +10001379IPV4_HACK_MSG="no"
Damien Miller7d80e342000-01-19 14:36:49 +11001380AC_ARG_WITH(ipv4-default,
1381 [ --with-ipv4-default Use IPv4 by connections unless '-6' specified],
1382 [
1383 if test "x$withval" != "xno" ; then
1384 AC_DEFINE(IPV4_DEFAULT)
Damien Miller7b22d652000-06-18 14:07:04 +10001385 IPV4_HACK_MSG="yes"
Damien Miller7d80e342000-01-19 14:36:49 +11001386 fi
1387 ]
1388)
1389
Damien Miller61e50f12000-05-08 20:49:37 +10001390AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Miller7b22d652000-06-18 14:07:04 +10001391IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11001392AC_ARG_WITH(4in6,
1393 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
1394 [
1395 if test "x$withval" != "xno" ; then
1396 AC_MSG_RESULT(yes)
1397 AC_DEFINE(IPV4_IN_IPV6)
Damien Miller7b22d652000-06-18 14:07:04 +10001398 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11001399 else
1400 AC_MSG_RESULT(no)
1401 fi
1402 ],[
1403 if test "x$inet6_default_4in6" = "xyes"; then
1404 AC_MSG_RESULT([yes (default)])
1405 AC_DEFINE(IPV4_IN_IPV6)
Damien Miller7b22d652000-06-18 14:07:04 +10001406 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11001407 else
1408 AC_MSG_RESULT([no (default)])
1409 fi
1410 ]
1411)
1412
Damien Miller78315eb2000-09-29 23:01:36 +11001413AC_MSG_CHECKING(whether to install ssh as suid root)
1414AC_ARG_ENABLE(suid-ssh,
1415[ --enable-suid-ssh Install ssh as suid root (default)
1416 --disable-suid-ssh Install ssh without suid bit],
1417[ case "$enableval" in
1418 no)
1419 AC_MSG_RESULT(no)
1420 SSHMODE=0711
1421 ;;
1422 *) AC_MSG_RESULT(yes)
1423 SSHMODE=04711
1424 ;;
1425 esac ],
1426 AC_MSG_RESULT(yes)
1427 SSHMODE=04711
1428)
1429AC_SUBST(SSHMODE)
1430
1431
Damien Millera22ba012000-03-02 23:09:20 +11001432# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11001433piddir=/var/run
Damien Miller5eed6a22000-01-16 12:05:18 +11001434AC_ARG_WITH(pid-dir,
1435 [ --with-pid-dir=PATH Specify location of ssh.pid file],
1436 [
1437 if test "x$withval" != "xno" ; then
Damien Millerb13c73e2000-01-17 22:02:17 +11001438 piddir=$withval
Damien Miller5eed6a22000-01-16 12:05:18 +11001439 fi
1440 ]
1441)
Damien Miller4018c192000-04-30 09:30:44 +10001442
Damien Miller78315eb2000-09-29 23:01:36 +11001443# make sure the directory exists
1444if test ! -d $piddir ; then
1445 piddir=`eval echo ${sysconfdir}`
1446 case $piddir in
1447 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
1448 esac
1449fi
1450
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001451AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir")
Damien Millerb13c73e2000-01-17 22:02:17 +11001452AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11001453
andre2ff7b5d2000-06-03 14:57:40 +00001454dnl allow user to disable some login recording features
1455AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00001456 [ --disable-lastlog disable use of lastlog even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001457 [ AC_DEFINE(DISABLE_LASTLOG) ]
1458)
1459AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00001460 [ --disable-utmp disable use of utmp even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001461 [ AC_DEFINE(DISABLE_UTMP) ]
1462)
1463AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00001464 [ --disable-utmpx disable use of utmpx even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001465 [ AC_DEFINE(DISABLE_UTMPX) ]
1466)
1467AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00001468 [ --disable-wtmp disable use of wtmp even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001469 [ AC_DEFINE(DISABLE_WTMP) ]
1470)
1471AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00001472 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001473 [ AC_DEFINE(DISABLE_WTMPX) ]
1474)
1475AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00001476 [ --disable-libutil disable use of libutil (login() etc.) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001477 [ AC_DEFINE(DISABLE_LOGIN) ]
1478)
1479AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00001480 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001481 [ AC_DEFINE(DISABLE_PUTUTLINE) ]
1482)
1483AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00001484 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001485 [ AC_DEFINE(DISABLE_PUTUTXLINE) ]
1486)
1487AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00001488 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11001489 [
1490 if test "x$withval" = "xno" ; then
1491 AC_DEFINE(DISABLE_LASTLOG)
1492 else
1493 conf_lastlog_location=$withval
1494 fi
1495 ]
1496)
andre2ff7b5d2000-06-03 14:57:40 +00001497
1498dnl lastlog, [uw]tmpx? detection
1499dnl NOTE: set the paths in the platform section to avoid the
1500dnl need for command-line parameters
1501dnl lastlog and [uw]tmp are subject to a file search if all else fails
1502
1503dnl lastlog detection
1504dnl NOTE: the code itself will detect if lastlog is a directory
1505AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
1506AC_TRY_COMPILE([
1507#include <sys/types.h>
1508#include <utmp.h>
1509#ifdef HAVE_LASTLOG_H
1510# include <lastlog.h>
1511#endif
Damien Miller2994e082000-06-04 15:51:47 +10001512#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001513# include <paths.h>
1514#endif
1515 ],
1516 [ char *lastlog = LASTLOG_FILE; ],
1517 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10001518 [
1519 AC_MSG_RESULT(no)
1520 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
1521 AC_TRY_COMPILE([
1522#include <sys/types.h>
1523#include <utmp.h>
1524#ifdef HAVE_LASTLOG_H
1525# include <lastlog.h>
1526#endif
1527#ifdef HAVE_PATHS_H
1528# include <paths.h>
1529#endif
1530 ],
1531 [ char *lastlog = _PATH_LASTLOG; ],
1532 [ AC_MSG_RESULT(yes) ],
1533 [
andree441aa32000-06-12 22:34:38 +00001534 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10001535 system_lastlog_path=no
1536 ])
1537 ]
andre2ff7b5d2000-06-03 14:57:40 +00001538)
Damien Miller2994e082000-06-04 15:51:47 +10001539
andre2ff7b5d2000-06-03 14:57:40 +00001540if test -z "$conf_lastlog_location"; then
1541 if test x"$system_lastlog_path" = x"no" ; then
1542 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10001543 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00001544 conf_lastlog_location=$f
1545 fi
1546 done
1547 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00001548 AC_MSG_WARN([** Cannot find lastlog **])
1549 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00001550 fi
1551 fi
1552fi
1553
1554if test -n "$conf_lastlog_location"; then
1555 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location")
1556fi
1557
1558dnl utmp detection
1559AC_MSG_CHECKING([if your system defines UTMP_FILE])
1560AC_TRY_COMPILE([
1561#include <sys/types.h>
1562#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10001563#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001564# include <paths.h>
1565#endif
1566 ],
1567 [ char *utmp = UTMP_FILE; ],
1568 [ AC_MSG_RESULT(yes) ],
1569 [ AC_MSG_RESULT(no)
1570 system_utmp_path=no ]
1571)
1572if test -z "$conf_utmp_location"; then
1573 if test x"$system_utmp_path" = x"no" ; then
1574 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
1575 if test -f $f ; then
1576 conf_utmp_location=$f
1577 fi
1578 done
1579 if test -z "$conf_utmp_location"; then
1580 AC_DEFINE(DISABLE_UTMP)
1581 fi
1582 fi
1583fi
1584if test -n "$conf_utmp_location"; then
1585 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location")
1586fi
1587
1588dnl wtmp detection
1589AC_MSG_CHECKING([if your system defines WTMP_FILE])
1590AC_TRY_COMPILE([
1591#include <sys/types.h>
1592#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10001593#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001594# include <paths.h>
1595#endif
1596 ],
1597 [ char *wtmp = WTMP_FILE; ],
1598 [ AC_MSG_RESULT(yes) ],
1599 [ AC_MSG_RESULT(no)
1600 system_wtmp_path=no ]
1601)
1602if test -z "$conf_wtmp_location"; then
1603 if test x"$system_wtmp_path" = x"no" ; then
1604 for f in /usr/adm/wtmp /var/log/wtmp; do
1605 if test -f $f ; then
1606 conf_wtmp_location=$f
1607 fi
1608 done
1609 if test -z "$conf_wtmp_location"; then
1610 AC_DEFINE(DISABLE_WTMP)
1611 fi
1612 fi
1613fi
1614if test -n "$conf_wtmp_location"; then
1615 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location")
1616fi
1617
1618
1619dnl utmpx detection - I don't know any system so perverse as to require
1620dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
1621dnl there, though.
1622AC_MSG_CHECKING([if your system defines UTMPX_FILE])
1623AC_TRY_COMPILE([
1624#include <sys/types.h>
1625#include <utmp.h>
1626#ifdef HAVE_UTMPX_H
1627#include <utmpx.h>
1628#endif
Damien Miller2994e082000-06-04 15:51:47 +10001629#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001630# include <paths.h>
1631#endif
1632 ],
1633 [ char *utmpx = UTMPX_FILE; ],
1634 [ AC_MSG_RESULT(yes) ],
1635 [ AC_MSG_RESULT(no)
1636 system_utmpx_path=no ]
1637)
1638if test -z "$conf_utmpx_location"; then
1639 if test x"$system_utmpx_path" = x"no" ; then
1640 AC_DEFINE(DISABLE_UTMPX)
1641 fi
1642else
1643 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location")
1644fi
1645
1646dnl wtmpx detection
1647AC_MSG_CHECKING([if your system defines WTMPX_FILE])
1648AC_TRY_COMPILE([
1649#include <sys/types.h>
1650#include <utmp.h>
1651#ifdef HAVE_UTMPX_H
1652#include <utmpx.h>
1653#endif
Damien Miller2994e082000-06-04 15:51:47 +10001654#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001655# include <paths.h>
1656#endif
1657 ],
1658 [ char *wtmpx = WTMPX_FILE; ],
1659 [ AC_MSG_RESULT(yes) ],
1660 [ AC_MSG_RESULT(no)
1661 system_wtmpx_path=no ]
1662)
1663if test -z "$conf_wtmpx_location"; then
1664 if test x"$system_wtmpx_path" = x"no" ; then
1665 AC_DEFINE(DISABLE_WTMPX)
1666 fi
1667else
1668 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location")
1669fi
1670
Damien Miller4018c192000-04-30 09:30:44 +10001671
1672# Change default command timeout for builtin PRNG
Damien Miller14c12cb2000-06-07 22:20:23 +10001673entropy_timeout=200
Damien Miller4018c192000-04-30 09:30:44 +10001674AC_ARG_WITH(entropy-timeout,
1675 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
1676 [
1677 if test "x$withval" != "xno" ; then
1678 entropy_timeout=$withval
1679 fi
1680 ]
1681)
1682AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1683
1684
Damien Miller29ea30d2000-03-17 10:54:15 +11001685if test ! -z "$blibpath" ; then
1686 LDFLAGS="$LDFLAGS -blibpath:$blibpath"
1687 AC_MSG_WARN([Please check and edit -blibpath in LDFLAGS in Makefile])
1688fi
1689
Damien Millerbac2d8a2000-09-05 16:13:06 +11001690AC_EXEEXT
1691
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +00001692AC_OUTPUT(Makefile openbsd-compat/Makefile ssh_prng_cmds)
Damien Miller0437b332000-05-02 09:56:41 +10001693
Damien Miller7b22d652000-06-18 14:07:04 +10001694# Print summary of options
1695
1696if test x$MANTYPE = x'$(CATMAN)' ; then
1697 MAN_MSG=cat
1698else
1699 MAN_MSG=man
1700fi
1701if test ! -z "$RANDOM_POOL" ; then
1702 RAND_MSG="Device ($RANDOM_POOL)"
1703else
1704 if test ! -z "$EGD_SOCKET" ; then
Damien Miller0736c4d2001-01-25 10:51:46 +11001705 RAND_MSG="EGD/PRNGD ($EGD_SOCKET)"
Damien Miller7b22d652000-06-18 14:07:04 +10001706 else
1707 RAND_MSG="Builtin (timeout $entropy_timeout)"
Damien Miller6f9c3372000-10-25 10:06:04 +11001708 BUILTIN_RNG=1
Damien Miller7b22d652000-06-18 14:07:04 +10001709 fi
1710fi
1711
1712# Someone please show me a better way :)
1713A=`eval echo ${prefix}` ; A=`eval echo ${A}`
1714B=`eval echo ${bindir}` ; B=`eval echo ${B}`
1715C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
1716D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00001717E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Damien Miller7b22d652000-06-18 14:07:04 +10001718F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
1719G=`eval echo ${piddir}` ; G=`eval echo ${G}`
1720
1721echo ""
1722echo "OpenSSH configured has been configured with the following options."
1723echo " User binaries: $B"
1724echo " System binaries: $C"
1725echo " Configuration files: $D"
1726echo " Askpass program: $E"
1727echo " Manual pages: $F"
1728echo " PID file: $G"
1729echo " Random number collection: $RAND_MSG"
1730echo " Manpage format: $MAN_MSG"
1731echo " PAM support: ${PAM_MSG}"
1732echo " KerberosIV support: $KRB4_MSG"
1733echo " AFS support: $AFS_MSG"
1734echo " S/KEY support: $SKEY_MSG"
1735echo " TCP Wrappers support: $TCPW_MSG"
1736echo " MD5 password support: $MD5_MSG"
1737echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
1738echo " Use IPv4 by default hack: $IPV4_HACK_MSG"
1739echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
1740
1741echo ""
1742
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00001743echo " Host: ${host}"
1744echo " Compiler: ${CC}"
1745echo " Compiler flags: ${CFLAGS}"
1746echo "Preprocessor flags: ${CPPFLAGS}"
1747echo " Linker flags: ${LDFLAGS}"
1748echo " Libraries: ${LIBS}"
Damien Miller7b22d652000-06-18 14:07:04 +10001749
1750echo ""
1751
Damien Miller82cf0ce2000-12-20 13:34:48 +11001752if test "x$PAM_MSG" = "xyes" ; then
1753 echo "PAM is enabled. You may need to install a PAM control file for sshd,"
1754 echo "otherwise password authentication may fail. Example PAM control files"
1755 echo "can be found in the contrib/ subdirectory"
1756 echo ""
1757fi
1758
Damien Miller6f9c3372000-10-25 10:06:04 +11001759if test ! -z "$BUILTIN_RNG" ; then
1760 echo "WARNING: you are using the builtin random number collection service."
1761 echo "Please read WARNING.RNG and request that your OS vendor includes"
1762 echo "/dev/random in future versions of their OS."
1763 echo ""
1764fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001765
1766if test ! -z "$NO_SFTP"; then
1767 echo "sftp-server will be disabled. Your compiler does not support"
1768 echo "64bit integers."
1769 echo ""
1770fi