blob: 7fade4efdbb5e82178797b4f1ef8e6dd11c16fc6 [file] [log] [blame]
Damien Millerab18c411999-11-11 10:40:23 +11001AC_INIT(ssh.c)
Damien Miller7f6ea021999-10-28 13:25:17 +10002
3AC_CONFIG_HEADER(config.h)
Damien Miller856799b2000-03-15 21:18:10 +11004AC_PROG_CC
Damien Miller76112de1999-12-21 11:18:08 +11005AC_CANONICAL_HOST
Damien Miller7f6ea021999-10-28 13:25:17 +10006
Damien Millera22ba012000-03-02 23:09:20 +11007# Checks for programs.
Damien Millerab18c411999-11-11 10:40:23 +11008AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +10009AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110010AC_PROG_INSTALL
Damien Millerc7b38ce1999-11-09 10:28:04 +110011AC_CHECK_PROG(AR, ar, ar)
Damien Millere79334a1999-12-29 10:03:37 +110012AC_PATH_PROG(PERL, perl)
13AC_SUBST(PERL)
Damien Miller8d1fd572000-05-17 21:34:07 +100014AC_PATH_PROG(ENT, ent)
15AC_SUBST(ENT)
Damien Miller78315eb2000-09-29 23:01:36 +110016AC_PATH_PROGS(FILEPRIV, filepriv, true, /sbin:/usr/sbin)
Damien Miller2e1b0821999-12-25 10:11:29 +110017
Damien Miller3f62aba2000-11-29 11:56:35 +110018if test -z "$AR" ; then
19 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
20fi
21
Damien Millerad833b32000-08-23 10:46:23 +100022# Use LOGIN_PROGRAM from environment if possible
23if test ! -z "$LOGIN_PROGRAM" ; then
24 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM")
25else
26 # Search for login
27 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
28 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
29 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
30 fi
31fi
32
Damien Miller166bd442000-03-16 10:48:25 +110033if test -z "$LD" ; then
34 LD=$CC
35fi
36AC_SUBST(LD)
37
38# C Compiler features
39AC_C_INLINE
40if test "$GCC" = "yes"; then
41 CFLAGS="$CFLAGS -Wall"
42fi
43
Damien Millera22ba012000-03-02 23:09:20 +110044# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +110045case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +110046*-*-aix*)
47 AFS_LIBS="-lld"
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +000048 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Millerdb819592000-03-14 13:44:01 +110049 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Damien Milleredb82922000-06-20 13:25:52 +100050 if (test "$LD" != "gcc" && test -z "$blibpath"); then
Damien Miller29ea30d2000-03-17 10:54:15 +110051 blibpath="/usr/lib:/lib:/usr/local/lib"
52 fi
Damien Millerd2c208a2000-05-17 22:00:02 +100053 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)])
Damien Millereca71f82000-01-20 22:38:27 +110054 AC_DEFINE(BROKEN_GETADDRINFO)
andree441aa32000-06-12 22:34:38 +000055 MANTYPE='$(CATMAN)'
56 mansubdir=cat
andre60f3c982000-06-03 16:18:19 +000057 dnl AIX handles lastlog as part of its login message
58 AC_DEFINE(DISABLE_LASTLOG)
Damien Miller5fc85652000-07-09 23:53:07 +100059 MANTYPE='$(CATMAN)'
60 mansubdir=cat
Damien Miller75b1d102000-01-07 14:01:41 +110061 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +110062*-*-cygwin*)
Damien Milleref767ac2000-10-17 23:14:08 +110063 LIBS="$LIBS -lregex /usr/lib/textmode.o"
Damien Millerbac2d8a2000-09-05 16:13:06 +110064 AC_DEFINE(HAVE_CYGWIN)
65 AC_DEFINE(DISABLE_PAM)
66 AC_DEFINE(DISABLE_SHADOW)
67 AC_DEFINE(IPV4_DEFAULT)
68 AC_DEFINE(IP_TOS_IS_BROKEN)
69 AC_DEFINE(BROKEN_VHANGUP)
70 no_pam=1
71 no_libsocket=1
72 no_libnsl=1
73 ;;
Damien Miller76112de1999-12-21 11:18:08 +110074*-*-hpux10*)
75 if test -z "$GCC"; then
Damien Millerfda78d92000-05-20 15:33:44 +100076 CFLAGS="$CFLAGS -Ae"
Damien Miller76112de1999-12-21 11:18:08 +110077 fi
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +000078 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE"
Damien Miller9a947342000-08-30 10:03:33 +110079 IPADDR_IN_DISPLAY=yes
Damien Millerb0785672000-08-23 09:10:39 +100080 AC_DEFINE(USE_PIPES)
Damien Miller8a1e6a62000-09-16 15:55:52 +110081 AC_DEFINE(DISABLE_SHADOW)
Damien Millerd6f204d2000-09-23 13:57:27 +110082 AC_DEFINE(DISABLE_UTMP)
Kevin Steves8848b242000-10-18 13:11:44 +000083 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Damien Miller8a1e6a62000-09-16 15:55:52 +110084 LIBS="$LIBS -lsec"
Damien Miller670a4b82000-01-22 13:53:11 +110085 MANTYPE='$(CATMAN)'
86 mansubdir=cat
Damien Miller76112de1999-12-21 11:18:08 +110087 ;;
Damien Miller1bead332000-04-30 00:47:29 +100088*-*-hpux11*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +000089 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE"
Damien Miller9a947342000-08-30 10:03:33 +110090 IPADDR_IN_DISPLAY=yes
Damien Miller82cf0ce2000-12-20 13:34:48 +110091 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller5552d7a2000-08-30 09:53:24 +110092 AC_DEFINE(USE_PIPES)
Damien Miller8a1e6a62000-09-16 15:55:52 +110093 AC_DEFINE(DISABLE_SHADOW)
Damien Millerd6f204d2000-09-23 13:57:27 +110094 AC_DEFINE(DISABLE_UTMP)
Kevin Steves8848b242000-10-18 13:11:44 +000095 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Damien Miller8a1e6a62000-09-16 15:55:52 +110096 LIBS="$LIBS -lsec"
Damien Miller1bead332000-04-30 00:47:29 +100097 MANTYPE='$(CATMAN)'
98 mansubdir=cat
99 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100100*-*-irix5*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000101 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller9e110892000-06-07 21:05:46 +1000102 LDFLAGS="$LDFLAGS"
Damien Miller190d5a82000-09-30 09:43:19 +1100103 PATH="$PATH:/usr/etc"
Damien Miller07278932000-01-22 14:05:37 +1100104 MANTYPE='$(CATMAN)'
Damien Miller1808f382000-01-06 12:03:12 +1100105 no_libsocket=1
106 no_libnsl=1
Damien Miller11fa2cc2000-08-16 10:35:58 +1000107 AC_DEFINE(BROKEN_INET_NTOA)
Damien Miller1808f382000-01-06 12:03:12 +1100108 ;;
109*-*-irix6*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000110 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller9e110892000-06-07 21:05:46 +1000111 LDFLAGS="$LDFLAGS"
Damien Miller190d5a82000-09-30 09:43:19 +1100112 PATH="$PATH:/usr/etc"
Damien Miller07278932000-01-22 14:05:37 +1100113 MANTYPE='$(CATMAN)'
Damien Miller91606b12000-06-28 08:22:29 +1000114 AC_DEFINE(WITH_IRIX_ARRAY)
115 AC_DEFINE(WITH_IRIX_PROJECT)
116 AC_DEFINE(WITH_IRIX_AUDIT)
Ben Lindstrom4a1d9162000-11-21 10:45:31 +0000117 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS)])
Damien Millerbeb4ba51999-12-28 15:09:35 +1100118 no_libsocket=1
119 no_libnsl=1
Damien Miller11fa2cc2000-08-16 10:35:58 +1000120 AC_DEFINE(BROKEN_INET_NTOA)
Ben Lindstrom75214f92000-12-01 21:19:51 +0000121 mansubdir=man
Damien Millerbeb4ba51999-12-28 15:09:35 +1100122 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100123*-*-linux*)
124 no_dev_ptmx=1
Damien Miller7bcb0892000-03-11 20:45:40 +1100125 AC_DEFINE(DONT_TRY_OTHER_AF)
Damien Miller4e997202000-07-09 21:21:52 +1000126 AC_DEFINE(PAM_TTY_KLUDGE)
Damien Miller7bcb0892000-03-11 20:45:40 +1100127 inet6_default_4in6=yes
Damien Millerb29ea912000-01-15 14:12:03 +1100128 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000129mips-sony-bsd|mips-sony-newsos4)
130 AC_DEFINE(HAVE_NEWS4)
131 SONY=1
132 AC_CHECK_LIB(iberty, xatexit, AC_DEFINE(HAVE_XATEXIT),
133 AC_MSG_ERROR([*** libiberty missing - please install first ***])
134 )
135 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100136*-*-netbsd*)
Damien Millera22ba012000-03-02 23:09:20 +1100137 need_dash_r=1
Damien Milleree1c0b32000-01-21 00:18:15 +1100138 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000139*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000140 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100141 conf_utmp_location=/etc/utmp
142 conf_wtmp_location=/usr/adm/wtmp
143 MAIL=/usr/spool/mail
Damien Miller0f91b4e2000-06-18 15:43:25 +1000144 AC_DEFINE(HAVE_NEXT)
Ben Lindstromb4df15d2000-10-15 00:17:36 +0000145 AC_DEFINE(BROKEN_REALPATH)
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000146 AC_DEFINE(USE_PIPES)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000147 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000148 CFLAGS="$CFLAGS \${CPPFLAGS}"
Damien Miller0f91b4e2000-06-18 15:43:25 +1000149 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100150*-*-solaris*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000151 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller08c788a2000-03-16 07:52:29 +1100152 LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib -L/usr/ucblib -R/usr/ucblib"
Damien Millera22ba012000-03-02 23:09:20 +1100153 need_dash_r=1
Damien Miller82cf0ce2000-12-20 13:34:48 +1100154 AC_DEFINE(PAM_SUN_CODEBASE)
andre2ff7b5d2000-06-03 14:57:40 +0000155 # hardwire lastlog location (can't detect it on some versions)
156 conf_lastlog_location="/var/adm/lastlog"
Damien Millera1cb6442000-06-09 11:58:35 +1000157 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
158 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
159 if test "$sol2ver" -ge 8; then
160 AC_MSG_RESULT(yes)
161 AC_DEFINE(DISABLE_UTMP)
162 AC_DEFINE(DISABLE_WTMP)
163 else
164 AC_MSG_RESULT(no)
165 fi
Damien Miller75b1d102000-01-07 14:01:41 +1100166 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +1000167*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000168 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Damien Millerdfc83f42000-05-20 15:02:59 +1000169 AC_CHECK_FUNCS(getpwanam)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100170 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000171 conf_utmp_location=/etc/utmp
172 conf_wtmp_location=/var/adm/wtmp
173 conf_lastlog_location=/var/adm/lastlog
Damien Millerb0785672000-08-23 09:10:39 +1000174 AC_DEFINE(USE_PIPES)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000175 MANTYPE='$(CATMAN)'
176 mansubdir=cat
Damien Millerdfc83f42000-05-20 15:02:59 +1000177 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000178*-sni-sysv*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000179 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller2ae714f2000-07-11 09:29:50 +1000180 LDFLAGS="$LDFLAGS -L/usr/local/lib -L/usr/ucblib"
181 MANTYPE='$(CATMAN)'
182 AC_DEFINE(IP_TOS_IS_BROKEN)
183 mansubdir=cat
Damien Millerb2dc28e2000-07-12 09:18:33 +1000184 LIBS="$LIBS -lgen -lnsl -lucb"
Damien Miller2ae714f2000-07-11 09:29:50 +1000185 ;;
Damien Miller78315eb2000-09-29 23:01:36 +1100186*-*-sysv4.2*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000187 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller78315eb2000-09-29 23:01:36 +1100188 LDFLAGS="$LDFLAGS -L/usr/local/lib"
189 MANTYPE='$(CATMAN)'
190 mansubdir=cat
191 LIBS="$LIBS -lgen -lsocket -lnsl -lresolv"
192 enable_suid_ssh=no
193 ;;
194*-*-sysv5*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000195 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Miller78315eb2000-09-29 23:01:36 +1100196 LDFLAGS="$LDFLAGS -L/usr/local/lib"
197 MANTYPE='$(CATMAN)'
198 mansubdir=cat
199 LIBS="$LIBS -lgen -lsocket"
200 enable_suid_ssh=no
201 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100202*-*-sysv*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000203 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Millerdb819592000-03-14 13:44:01 +1100204 LDFLAGS="$LDFLAGS -L/usr/local/lib"
Damien Miller0e1cf7c2000-01-26 12:15:30 +1100205 MANTYPE='$(CATMAN)'
206 mansubdir=cat
Damien Miller75b1d102000-01-07 14:01:41 +1100207 LIBS="$LIBS -lgen -lsocket"
208 ;;
Damien Miller78315eb2000-09-29 23:01:36 +1100209*-*-sco3.2v4*)
Damien Miller238a9fa2000-08-31 09:20:05 +1100210 AC_DEFINE(USE_PIPES)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000211 CPPFLAGS="$CPPFLAGS -Dftruncate=chsize -I/usr/local/include"
Damien Miller78315eb2000-09-29 23:01:36 +1100212 LDFLAGS="$LDFLAGS -L/usr/local/lib"
213 MANTYPE='$(CATMAN)'
214 mansubdir=cat
Ben Lindstrom980754c2000-11-12 00:04:24 +0000215 LIBS="$LIBS -lgen -lsocket -los -lprot -lx -ltinfo -lm"
Damien Miller78315eb2000-09-29 23:01:36 +1100216 no_dev_ptmx=1
217 RANLIB=true
218 AC_DEFINE(BROKEN_SYS_TERMIO_H)
219 rsh_path="/usr/bin/rcmd"
220 AC_DEFINE(HAVE_SCO_PROTECTED_PW)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000221 AC_DEFINE(DISABLE_SHADOW)
Damien Miller78315eb2000-09-29 23:01:36 +1100222 ;;
223*-*-sco3.2v5*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000224 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
Damien Millera66626b2000-06-13 18:57:53 +1000225 LDFLAGS="$LDFLAGS -L/usr/local/lib"
226 MANTYPE='$(CATMAN)'
227 mansubdir=cat
Ben Lindstrom980754c2000-11-12 00:04:24 +0000228 LIBS="$LIBS -lgen -lsocket -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000229 no_dev_ptmx=1
Damien Miller78315eb2000-09-29 23:01:36 +1100230 rsh_path="/usr/bin/rcmd"
231 AC_DEFINE(HAVE_SCO_PROTECTED_PW)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000232 AC_DEFINE(DISABLE_SHADOW)
Ben Lindstrom42717bf2000-12-28 15:46:20 +0000233 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
Damien Millera66626b2000-06-13 18:57:53 +1000234 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000235*-dec-osf*)
236# This is untested
237 if test ! -z "USE_SIA" ; then
238 AC_MSG_CHECKING(for Digital Unix Security Integration Architecture)
239 if test -f /etc/sia/matrix.conf; then
240 AC_MSG_RESULT(yes)
241 AC_DEFINE(HAVE_OSF_SIA)
242 AC_DEFINE(DISABLE_LOGIN)
243 LIBS="$LIBS -lsecurity -ldb -lm -laud"
244 else
245 AC_MSG_RESULT(no)
246 fi
247 fi
248 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100249esac
250
Damien Millere37bfc12000-06-05 09:37:43 +1000251# Allow user to specify flags
252AC_ARG_WITH(cflags,
253 [ --with-cflags Specify additional flags to pass to compiler],
254 [
255 if test "x$withval" != "xno" ; then
256 CFLAGS="$CFLAGS $withval"
257 fi
258 ]
259)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000260AC_ARG_WITH(cppflags,
261 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
262 [
263 if test "x$withval" != "xno"; then
264 CPPFLAGS="$CPPFLAGS $withval"
265 fi
266 ]
267)
Damien Millere37bfc12000-06-05 09:37:43 +1000268AC_ARG_WITH(ldflags,
Ben Lindstrom2ed98182000-11-06 07:15:43 +0000269 [ --with-ldflags Specify additional flags to pass to linker],
Damien Millere37bfc12000-06-05 09:37:43 +1000270 [
271 if test "x$withval" != "xno" ; then
272 LDFLAGS="$LDFLAGS $withval"
273 fi
274 ]
275)
276AC_ARG_WITH(libs,
277 [ --with-libs Specify additional libraries to link with],
278 [
279 if test "x$withval" != "xno" ; then
280 LIBS="$LIBS $withval"
281 fi
282 ]
283)
284
285
Damien Millera22ba012000-03-02 23:09:20 +1100286# Checks for libraries.
Damien Millerab18c411999-11-11 10:40:23 +1100287AC_CHECK_LIB(z, deflate, ,AC_MSG_ERROR([*** zlib missing - please install first ***]))
288AC_CHECK_LIB(util, login, AC_DEFINE(HAVE_LIBUTIL_LOGIN) LIBS="$LIBS -lutil")
Damien Miller6f9c3372000-10-25 10:06:04 +1100289
290AC_CHECK_FUNC(regcomp,
291 [],
292 [
293 AC_CHECK_LIB(pcre, pcre_info,
294 AC_DEFINE(HAVE_LIBPCRE) LIBS="$LIBS -lpcreposix -lpcre")
295 ]
296)
Damien Millerab18c411999-11-11 10:40:23 +1100297
Damien Millerbeb4ba51999-12-28 15:09:35 +1100298if test -z "$no_libsocket" ; then
299 AC_CHECK_LIB(nsl, yp_match, , )
300fi
301if test -z "$no_libnsl" ; then
302 AC_CHECK_LIB(socket, main, , )
Damien Miller32b3cf21999-12-26 10:21:48 +1100303fi
Damien Millerab18c411999-11-11 10:40:23 +1100304
Damien Millera22ba012000-03-02 23:09:20 +1100305# Checks for header files.
Kevin Steves2c65ada2000-12-06 22:25:40 +0000306AC_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 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 utmp.h utmpx.h vis.h)
Damien Millerab18c411999-11-11 10:40:23 +1100307
Damien Millerad833b32000-08-23 10:46:23 +1000308dnl Checks for library functions.
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000309AC_CHECK_FUNCS(arc4random atexit b64_ntop bcopy bindresvport_af clock fchmod freeaddrinfo futimes gai_strerror getcwd getaddrinfo 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 strsep strtok_r sysconf vsnprintf vhangup vis waitpid _getpty __b64_ntop)
Damien Millerad833b32000-08-23 10:46:23 +1000310dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +0000311AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +1000312dnl Checks for libutil functions
Ben Lindstrome2fb8d32000-12-28 00:07:07 +0000313AC_CHECK_HEADERS(libutil.h)
andre2ff7b5d2000-06-03 14:57:40 +0000314AC_CHECK_FUNCS(login logout updwtmp logwtmp)
Damien Millerad833b32000-08-23 10:46:23 +1000315dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000316AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +0000317AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +1000318dnl Checks for utmpx functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000319AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
andre2ff7b5d2000-06-03 14:57:40 +0000320AC_CHECK_FUNCS(setutxent utmpxname)
Damien Millercedfecc1999-11-15 14:36:53 +1100321
Damien Miller5fc85652000-07-09 23:53:07 +1000322AC_CHECK_FUNC(getuserattr,
323 [AC_DEFINE(HAVE_GETUSERATTR)],
324 [AC_CHECK_LIB(s, getuserattr, [LIBS="$LIBS -ls"; AC_DEFINE(HAVE_GETUSERATTR)])]
325)
326
Damien Miller04f80141999-11-19 15:32:34 +1100327AC_CHECK_FUNC(login,
328 [AC_DEFINE(HAVE_LOGIN)],
329 [AC_CHECK_LIB(bsd, login, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_LOGIN)])]
330)
331
332AC_CHECK_FUNC(daemon,
333 [AC_DEFINE(HAVE_DAEMON)],
334 [AC_CHECK_LIB(bsd, daemon, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
335)
336
Damien Miller9fb07e42000-03-05 16:22:59 +1100337AC_CHECK_FUNC(getpagesize,
338 [AC_DEFINE(HAVE_GETPAGESIZE)],
339 [AC_CHECK_LIB(ucb, getpagesize, [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
340)
341
Damien Millercb170cb2000-07-01 16:52:55 +1000342# Check for broken snprintf
343if test "x$ac_cv_func_snprintf" = "xyes" ; then
344 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
345 AC_TRY_RUN(
346 [
347#include <stdio.h>
348int main(void){char b[5];snprintf(b,5,"123456789");return(b[4]!='\0');}
349 ],
350 [AC_MSG_RESULT(yes)],
351 [
352 AC_MSG_RESULT(no)
353 AC_DEFINE(BROKEN_SNPRINTF)
354 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
355 ]
356 )
357fi
358
Damien Miller606f8802000-09-16 15:39:56 +1100359AC_FUNC_GETPGRP
360
Damien Miller7b22d652000-06-18 14:07:04 +1000361PAM_MSG="no"
Damien Millera22ba012000-03-02 23:09:20 +1100362AC_ARG_WITH(pam,
363 [ --without-pam Disable PAM support ],
364 [
365 if test "x$withval" = "xno" ; then
366 no_pam=1
367 AC_DEFINE(DISABLE_PAM)
Damien Miller7b22d652000-06-18 14:07:04 +1000368 PAM_MSG="disabled"
Damien Millera22ba012000-03-02 23:09:20 +1100369 fi
370 ]
371)
Damien Milleredb82922000-06-20 13:25:52 +1000372if (test -z "$no_pam" && test "x$ac_cv_header_security_pam_appl_h" = "xyes") ; then
Damien Millera22ba012000-03-02 23:09:20 +1100373 AC_CHECK_LIB(dl, dlopen, , )
374 LIBS="$LIBS -lpam"
375
Damien Miller0e65eed2000-05-17 22:16:05 +1000376 AC_CHECK_FUNCS(pam_getenvlist)
Damien Miller1bead332000-04-30 00:47:29 +1000377
Damien Miller1f335fb2000-06-26 11:31:33 +1000378 disable_shadow=yes
379
Damien Miller7b22d652000-06-18 14:07:04 +1000380 PAM_MSG="yes"
381
Damien Millera22ba012000-03-02 23:09:20 +1100382 # Check PAM strerror arguments (old PAM)
383 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
384 AC_TRY_COMPILE(
385 [
Damien Miller81171112000-04-23 11:14:01 +1000386#include <stdlib.h>
387#include <security/pam_appl.h>
Damien Millera22ba012000-03-02 23:09:20 +1100388 ],
389 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
390 [AC_MSG_RESULT(no)],
391 [
392 AC_DEFINE(HAVE_OLD_PAM)
393 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +1000394 PAM_MSG="yes (old library)"
Damien Millera22ba012000-03-02 23:09:20 +1100395 ]
396 )
397fi
398
399# The big search for OpenSSL
400AC_ARG_WITH(ssl-dir,
401 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
402 [
Ben Lindstrom23e13712000-10-29 22:49:19 +0000403 if test "x$withval" != "xno" ; then
Damien Millera22ba012000-03-02 23:09:20 +1100404 tryssldir=$withval
405 fi
406 ]
407)
408
409saved_LIBS="$LIBS"
Damien Millera1ad4802000-03-15 10:04:54 +1100410saved_LDFLAGS="$LDFLAGS"
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000411saved_CPPFLAGS="$CPPFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +1100412if test "x$prefix" != "xNONE" ; then
413 tryssldir="$tryssldir $prefix"
414fi
Damien Miller61e50f12000-05-08 20:49:37 +1000415AC_CACHE_CHECK([for OpenSSL directory], ac_cv_openssldir, [
Damien Millera22ba012000-03-02 23:09:20 +1100416
Damien Millera1b61e12000-09-16 17:02:16 +1100417 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 Miller61e50f12000-05-08 20:49:37 +1000418 if test ! -z "$ssldir" ; then
419 LDFLAGS="$saved_LDFLAGS -L$ssldir/lib -L$ssldir"
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000420 CPPFLAGS="$saved_CPPFLAGS -I$ssldir/include"
Damien Miller61e50f12000-05-08 20:49:37 +1000421 if test ! -z "$need_dash_r" ; then
422 LDFLAGS="$LDFLAGS -R$ssldir/lib -R$ssldir"
423 fi
Damien Millera1ad4802000-03-15 10:04:54 +1100424 else
Damien Miller61e50f12000-05-08 20:49:37 +1000425 LDFLAGS="$saved_LDFLAGS"
Damien Millerb85dcad2000-03-11 11:37:00 +1100426 fi
427
Damien Miller3b512e12000-05-17 23:29:18 +1000428 LIBS="$saved_LIBS -lcrypto"
Damien Miller61e50f12000-05-08 20:49:37 +1000429
Damien Miller3b512e12000-05-17 23:29:18 +1000430 # Basic test to check for compatible version and correct linking
431 # *does not* test for RSA - that comes later.
432 AC_TRY_RUN(
433 [
Damien Millere59ce622000-05-01 20:54:17 +1000434#include <string.h>
435#include <openssl/rand.h>
Damien Miller81171112000-04-23 11:14:01 +1000436int main(void)
437{
Damien Miller3b512e12000-05-17 23:29:18 +1000438 char a[2048];
439 memset(a, 0, sizeof(a));
Damien Miller81171112000-04-23 11:14:01 +1000440 RAND_add(a, sizeof(a), sizeof(a));
Damien Miller3b512e12000-05-17 23:29:18 +1000441 return(RAND_status() <= 0);
Damien Miller81171112000-04-23 11:14:01 +1000442}
Damien Miller3b512e12000-05-17 23:29:18 +1000443 ],
444 [
445 found_crypto=1
446 break;
447 ], []
448 )
Damien Miller61e50f12000-05-08 20:49:37 +1000449
450 if test ! -z "$found_crypto" ; then
451 break;
452 fi
Damien Millerb85dcad2000-03-11 11:37:00 +1100453 done
454
Damien Miller61e50f12000-05-08 20:49:37 +1000455 if test -z "$found_crypto" ; then
456 AC_MSG_ERROR([Could not find working SSLeay / OpenSSL libraries, please install])
Damien Millerb85dcad2000-03-11 11:37:00 +1100457 fi
Damien Miller61e50f12000-05-08 20:49:37 +1000458 if test -z "$ssldir" ; then
459 ssldir="(system)"
460 fi
Damien Millera22ba012000-03-02 23:09:20 +1100461
Damien Miller61e50f12000-05-08 20:49:37 +1000462 ac_cv_openssldir=$ssldir
463])
464
Damien Milleredb82922000-06-20 13:25:52 +1000465if (test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)") ; then
Damien Miller61e50f12000-05-08 20:49:37 +1000466 AC_DEFINE(HAVE_OPENSSL)
467 dnl Need to recover ssldir - test above runs in subshell
468 ssldir=$ac_cv_openssldir
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000469 CPPFLAGS="$saved_CPPFLAGS -I$ssldir/include"
Damien Millera1ad4802000-03-15 10:04:54 +1100470 LDFLAGS="$saved_LDFLAGS -L$ssldir/lib -L$ssldir"
471 if test ! -z "$need_dash_r" ; then
472 LDFLAGS="$LDFLAGS -R$ssldir/lib -R$ssldir"
Damien Millera22ba012000-03-02 23:09:20 +1100473 fi
Damien Miller29ea30d2000-03-17 10:54:15 +1100474 if test ! -z "$blibpath" ; then
475 blibpath="$blibpath:$ssldir:$ssldir/lib"
476 fi
Damien Millera22ba012000-03-02 23:09:20 +1100477fi
Damien Miller3b512e12000-05-17 23:29:18 +1000478LIBS="$saved_LIBS -lcrypto"
Damien Miller61e50f12000-05-08 20:49:37 +1000479
Damien Miller3b512e12000-05-17 23:29:18 +1000480# Now test RSA support
481saved_LIBS="$LIBS"
482AC_MSG_CHECKING([for RSA support])
483for WANTS_RSAREF in "" 1 ; do
484 if test -z "$WANTS_RSAREF" ; then
485 LIBS="$saved_LIBS"
486 else
487 LIBS="$saved_LIBS -lRSAglue -lrsaref"
488 fi
489 AC_TRY_RUN([
490#include <string.h>
491#include <openssl/rand.h>
492#include <openssl/rsa.h>
493#include <openssl/bn.h>
494#include <openssl/sha.h>
495int main(void)
496{
497 int num; RSA *key; static unsigned char p_in[] = "blahblah";
498 unsigned char c[256], p[256];
499 memset(c, 0, sizeof(c)); RAND_add(c, sizeof(c), sizeof(c));
500 if ((key=RSA_generate_key(512, 3, NULL, NULL))==NULL) return(1);
501 num = RSA_public_encrypt(sizeof(p_in) - 1, p_in, c, key, RSA_PKCS1_PADDING);
502 return(-1 == RSA_private_decrypt(num, c, p, key, RSA_PKCS1_PADDING));
503}
504 ],
505 [
506 rsa_works=1
507 break;
508 ], [])
509done
510
511if test ! -z "$no_rsa" ; then
512 AC_MSG_RESULT(disabled)
Damien Miller7b22d652000-06-18 14:07:04 +1000513 RSA_MSG="disabled"
Damien Miller3b512e12000-05-17 23:29:18 +1000514else
515 if test -z "$rsa_works" ; then
516 AC_MSG_WARN([*** No RSA support found *** ])
Damien Miller7b22d652000-06-18 14:07:04 +1000517 RSA_MSG="no"
Damien Miller3b512e12000-05-17 23:29:18 +1000518 else
519 if test -z "$WANTS_RSAREF" ; then
520 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +1000521 RSA_MSG="yes"
Damien Miller3b512e12000-05-17 23:29:18 +1000522 else
Damien Miller7b22d652000-06-18 14:07:04 +1000523 RSA_MSG="yes (using RSAref)"
Damien Miller3b512e12000-05-17 23:29:18 +1000524 AC_MSG_RESULT(using RSAref)
525 LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref"
526 fi
527 fi
528fi
Damien Millera22ba012000-03-02 23:09:20 +1100529
Ben Lindstromb5628642000-10-18 00:02:25 +0000530# Cheap hack to ensure NEWS-OS libraries are arranged right.
531if test ! -z "$SONY" ; then
532 LIBS="$LIBS -liberty";
533fi
534
Damien Millera22ba012000-03-02 23:09:20 +1100535# Checks for data types
Damien Millere0f45742000-01-18 09:12:06 +1100536AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +1100537AC_CHECK_SIZEOF(short int, 2)
538AC_CHECK_SIZEOF(int, 4)
539AC_CHECK_SIZEOF(long int, 4)
540AC_CHECK_SIZEOF(long long int, 8)
541
Damien Millera22ba012000-03-02 23:09:20 +1100542# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +1100543AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
544 AC_TRY_COMPILE(
545 [ #include <sys/types.h> ],
546 [ u_int a; a = 1;],
547 [ ac_cv_have_u_int="yes" ],
548 [ ac_cv_have_u_int="no" ]
549 )
550])
551if test "x$ac_cv_have_u_int" = "xyes" ; then
552 AC_DEFINE(HAVE_U_INT)
553 have_u_int=1
554fi
555
Damien Miller61e50f12000-05-08 20:49:37 +1000556AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
557 AC_TRY_COMPILE(
558 [ #include <sys/types.h> ],
559 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
560 [ ac_cv_have_intxx_t="yes" ],
561 [ ac_cv_have_intxx_t="no" ]
562 )
563])
564if test "x$ac_cv_have_intxx_t" = "xyes" ; then
565 AC_DEFINE(HAVE_INTXX_T)
566 have_intxx_t=1
567fi
568
Damien Miller578783e2000-09-23 14:12:24 +1100569AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
570 AC_TRY_COMPILE(
571 [ #include <sys/types.h> ],
572 [ int64_t a; a = 1;],
573 [ ac_cv_have_int64_t="yes" ],
574 [ ac_cv_have_int64_t="no" ]
575 )
576])
577if test "x$ac_cv_have_int64_t" = "xyes" ; then
578 AC_DEFINE(HAVE_INT64_T)
579 have_int64_t=1
580fi
581
Damien Miller61e50f12000-05-08 20:49:37 +1000582AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
583 AC_TRY_COMPILE(
584 [ #include <sys/types.h> ],
585 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
586 [ ac_cv_have_u_intxx_t="yes" ],
587 [ ac_cv_have_u_intxx_t="no" ]
588 )
589])
590if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
591 AC_DEFINE(HAVE_U_INTXX_T)
592 have_u_intxx_t=1
593fi
Damien Millerc6398ef1999-11-20 12:18:40 +1100594
Damien Miller578783e2000-09-23 14:12:24 +1100595AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
596 AC_TRY_COMPILE(
597 [ #include <sys/types.h> ],
598 [ u_int64_t a; a = 1;],
599 [ ac_cv_have_u_int64_t="yes" ],
600 [ ac_cv_have_u_int64_t="no" ]
601 )
602])
603if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
604 AC_DEFINE(HAVE_U_INT64_T)
605 have_u_int64_t=1
606fi
607
Damien Milleredb82922000-06-20 13:25:52 +1000608if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
609 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +1100610then
611 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
612 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +1000613 [
614#include <sys/bitypes.h>
615 ],
Damien Millerb29ea912000-01-15 14:12:03 +1100616 [
Damien Miller70494d12000-04-03 15:57:06 +1000617 int8_t a; int16_t b; int32_t c;
618 u_int8_t e; u_int16_t f; u_int32_t g;
619 a = b = c = e = f = g = 1;
Damien Millerb29ea912000-01-15 14:12:03 +1100620 ],
621 [
622 AC_DEFINE(HAVE_U_INTXX_T)
623 AC_DEFINE(HAVE_INTXX_T)
624 AC_MSG_RESULT(yes)
625 ],
626 [AC_MSG_RESULT(no)]
627 )
628fi
629
Damien Millerd6121d22000-03-17 23:26:46 +1100630if test -z "$have_u_intxx_t" ; then
Damien Miller61e50f12000-05-08 20:49:37 +1000631 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
632 AC_TRY_COMPILE(
633 [
634#include <sys/types.h>
635 ],
636 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
637 [ ac_cv_have_uintxx_t="yes" ],
638 [ ac_cv_have_uintxx_t="no" ]
639 )
640 ])
641 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
642 AC_DEFINE(HAVE_UINTXX_T)
643 fi
Damien Millerd6121d22000-03-17 23:26:46 +1100644fi
Damien Millerc6398ef1999-11-20 12:18:40 +1100645
Damien Miller61e50f12000-05-08 20:49:37 +1000646AC_CACHE_CHECK([for socklen_t], ac_cv_have_socklen_t, [
647 AC_TRY_COMPILE(
648 [
Damien Miller81171112000-04-23 11:14:01 +1000649#include <sys/types.h>
650#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000651 ],
652 [socklen_t foo; foo = 1235;],
653 [ ac_cv_have_socklen_t="yes" ],
654 [ ac_cv_have_socklen_t="no" ]
655 )
656])
657if test "x$ac_cv_have_socklen_t" = "xyes" ; then
658 AC_DEFINE(HAVE_SOCKLEN_T)
659fi
Damien Miller74d0d4a1999-12-29 02:24:35 +1100660
Damien Miller61e50f12000-05-08 20:49:37 +1000661AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
662 AC_TRY_COMPILE(
663 [
664#include <sys/types.h>
665 ],
666 [ size_t foo; foo = 1235; ],
667 [ ac_cv_have_size_t="yes" ],
668 [ ac_cv_have_size_t="no" ]
669 )
670])
671if test "x$ac_cv_have_size_t" = "xyes" ; then
672 AC_DEFINE(HAVE_SIZE_T)
673fi
Damien Miller95058511999-12-29 10:36:45 +1100674
Damien Miller615f9392000-05-17 22:53:33 +1000675AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
676 AC_TRY_COMPILE(
677 [
678#include <sys/types.h>
679 ],
680 [ ssize_t foo; foo = 1235; ],
681 [ ac_cv_have_ssize_t="yes" ],
682 [ ac_cv_have_ssize_t="no" ]
683 )
684])
685if test "x$ac_cv_have_ssize_t" = "xyes" ; then
686 AC_DEFINE(HAVE_SSIZE_T)
687fi
688
Damien Millerb54b40e2000-06-23 08:23:34 +1000689AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
690 AC_TRY_COMPILE(
691 [
692#include <sys/types.h>
693#include <sys/socket.h>
694 ],
695 [ sa_family_t foo; foo = 1235; ],
696 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +1100697 [ AC_TRY_COMPILE(
698 [
699#include <sys/types.h>
700#include <sys/socket.h>
701#include <netinet/in.h>
702 ],
703 [ sa_family_t foo; foo = 1235; ],
704 [ ac_cv_have_sa_family_t="yes" ],
705
Damien Millerb54b40e2000-06-23 08:23:34 +1000706 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +1100707 )]
Damien Millerb54b40e2000-06-23 08:23:34 +1000708 )
709])
710if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
711 AC_DEFINE(HAVE_SA_FAMILY_T)
712fi
713
Damien Miller0f91b4e2000-06-18 15:43:25 +1000714AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
715 AC_TRY_COMPILE(
716 [
717#include <sys/types.h>
718 ],
719 [ pid_t foo; foo = 1235; ],
720 [ ac_cv_have_pid_t="yes" ],
721 [ ac_cv_have_pid_t="no" ]
722 )
723])
724if test "x$ac_cv_have_pid_t" = "xyes" ; then
725 AC_DEFINE(HAVE_PID_T)
726fi
727
728AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
729 AC_TRY_COMPILE(
730 [
731#include <sys/types.h>
732 ],
733 [ mode_t foo; foo = 1235; ],
734 [ ac_cv_have_mode_t="yes" ],
735 [ ac_cv_have_mode_t="no" ]
736 )
737])
738if test "x$ac_cv_have_mode_t" = "xyes" ; then
739 AC_DEFINE(HAVE_MODE_T)
740fi
741
Damien Miller61e50f12000-05-08 20:49:37 +1000742
743AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
744 AC_TRY_COMPILE(
745 [
Damien Miller81171112000-04-23 11:14:01 +1000746#include <sys/types.h>
747#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000748 ],
749 [ struct sockaddr_storage s; ],
750 [ ac_cv_have_struct_sockaddr_storage="yes" ],
751 [ ac_cv_have_struct_sockaddr_storage="no" ]
752 )
753])
754if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
755 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)
756fi
Damien Miller34132e52000-01-14 15:45:46 +1100757
Damien Miller61e50f12000-05-08 20:49:37 +1000758AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
759 AC_TRY_COMPILE(
760 [
Damien Miller7b22d652000-06-18 14:07:04 +1000761#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000762#include <netinet/in.h>
763 ],
764 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
765 [ ac_cv_have_struct_sockaddr_in6="yes" ],
766 [ ac_cv_have_struct_sockaddr_in6="no" ]
767 )
768])
769if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
770 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)
771fi
Damien Miller34132e52000-01-14 15:45:46 +1100772
Damien Miller61e50f12000-05-08 20:49:37 +1000773AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
774 AC_TRY_COMPILE(
775 [
Damien Miller7b22d652000-06-18 14:07:04 +1000776#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000777#include <netinet/in.h>
778 ],
779 [ struct in6_addr s; s.s6_addr[0] = 0; ],
780 [ ac_cv_have_struct_in6_addr="yes" ],
781 [ ac_cv_have_struct_in6_addr="no" ]
782 )
783])
784if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
785 AC_DEFINE(HAVE_STRUCT_IN6_ADDR)
786fi
Damien Miller34132e52000-01-14 15:45:46 +1100787
Damien Miller61e50f12000-05-08 20:49:37 +1000788AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
789 AC_TRY_COMPILE(
790 [
Damien Miller81171112000-04-23 11:14:01 +1000791#include <sys/types.h>
792#include <sys/socket.h>
793#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000794 ],
795 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
796 [ ac_cv_have_struct_addrinfo="yes" ],
797 [ ac_cv_have_struct_addrinfo="no" ]
798 )
799])
800if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
801 AC_DEFINE(HAVE_STRUCT_ADDRINFO)
802fi
803
Damien Miller78315eb2000-09-29 23:01:36 +1100804dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +1000805OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
806OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
807OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
808OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
809OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +1000810OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +1000811OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
812OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +1000813OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +1000814OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
815OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
816OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
817OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +0000818OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
819OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
820OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
821OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Damien Miller78315eb2000-09-29 23:01:36 +1100822AC_STRUCT_ST_BLKSIZE
andre2ff7b5d2000-06-03 14:57:40 +0000823
Damien Miller942da032000-08-18 13:59:06 +1000824AC_CACHE_CHECK([for sun_len field in struct sockaddr_un],
825 ac_cv_have_sun_len_in_struct_sockaddr_un, [
826 AC_TRY_COMPILE(
827 [
828#include <sys/types.h>
829#include <sys/socket.h>
830 ],
831 [ struct sockaddr_un s; s.sun_len = 1; ],
832 [ ac_cv_have_sun_len_in_struct_sockaddr_un="yes" ],
833 [ ac_cv_have_sun_len_in_struct_sockaddr_un="no" ],
834 )
835])
836if test "x$ac_cv_have_sun_len_in_struct_sockaddr_un" = "xyes" ; then
837 AC_DEFINE(HAVE_SUN_LEN_IN_SOCKADDR_UN)
838fi
839
Damien Miller61e50f12000-05-08 20:49:37 +1000840AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
841 ac_cv_have_ss_family_in_struct_ss, [
842 AC_TRY_COMPILE(
843 [
Damien Miller81171112000-04-23 11:14:01 +1000844#include <sys/types.h>
845#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000846 ],
847 [ struct sockaddr_storage s; s.ss_family = 1; ],
848 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
849 [ ac_cv_have_ss_family_in_struct_ss="no" ],
850 )
851])
852if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
853 AC_DEFINE(HAVE_SS_FAMILY_IN_SS)
854fi
855
Damien Miller61e50f12000-05-08 20:49:37 +1000856AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
857 ac_cv_have___ss_family_in_struct_ss, [
858 AC_TRY_COMPILE(
859 [
Damien Miller81171112000-04-23 11:14:01 +1000860#include <sys/types.h>
861#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +1000862 ],
863 [ struct sockaddr_storage s; s.__ss_family = 1; ],
864 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
865 [ ac_cv_have___ss_family_in_struct_ss="no" ]
866 )
867])
868if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
869 AC_DEFINE(HAVE___SS_FAMILY_IN_SS)
870fi
Damien Millerbf1c9b21999-12-09 10:16:54 +1100871
Damien Millerad833b32000-08-23 10:46:23 +1000872AC_CACHE_CHECK([for pw_class field in struct passwd],
873 ac_cv_have_pw_class_in_struct_passwd, [
874 AC_TRY_COMPILE(
875 [
Damien Millerad833b32000-08-23 10:46:23 +1000876#include <pwd.h>
877 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +0000878 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +1000879 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
880 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
881 )
882])
883if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
884 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD)
885fi
886
Damien Miller61e50f12000-05-08 20:49:37 +1000887
888AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
889 AC_TRY_LINK([],
890 [ extern char *__progname; printf("%s", __progname); ],
891 [ ac_cv_libc_defines___progname="yes" ],
892 [ ac_cv_libc_defines___progname="no" ]
893 )
894])
895if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
896 AC_DEFINE(HAVE___PROGNAME)
897fi
898
Damien Millera22ba012000-03-02 23:09:20 +1100899
Damien Millerecbb26d2000-07-15 14:59:14 +1000900AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
901 AC_TRY_LINK([],
902 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
903 [ ac_cv_libc_defines_sys_errlist="yes" ],
904 [ ac_cv_libc_defines_sys_errlist="no" ]
905 )
906])
907if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
908 AC_DEFINE(HAVE_SYS_ERRLIST)
909fi
910
911
Damien Miller11fa2cc2000-08-16 10:35:58 +1000912AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
913 AC_TRY_LINK([],
914 [ extern int sys_nerr; printf("%i", sys_nerr);],
915 [ ac_cv_libc_defines_sys_nerr="yes" ],
916 [ ac_cv_libc_defines_sys_nerr="no" ]
917 )
918])
919if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
920 AC_DEFINE(HAVE_SYS_NERR)
921fi
922
923
Damien Millera22ba012000-03-02 23:09:20 +1100924# Looking for programs, paths and files
925AC_ARG_WITH(rsh,
926 [ --with-rsh=PATH Specify path to remote shell program ],
927 [
Damien Millerb85dcad2000-03-11 11:37:00 +1100928 if test "x$withval" != "$no" ; then
Damien Miller90dcc052000-07-08 10:17:40 +1000929 rsh_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +1100930 fi
931 ],
932 [
933 AC_PATH_PROG(rsh_path, rsh)
934 ]
935)
936
937AC_ARG_WITH(xauth,
938 [ --with-xauth=PATH Specify path to xauth program ],
939 [
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000940 if test "x$withval" != "xno" ; then
Damien Miller7b22d652000-06-18 14:07:04 +1000941 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +1100942 fi
943 ],
944 [
Damien Miller78315eb2000-09-29 23:01:36 +1100945 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 +1000946 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +1100947 xauth_path="/usr/openwin/bin/xauth"
948 fi
949 ]
950)
951
Damien Millera19cf472000-11-29 13:28:50 +1100952if test -z "$xauth_path" ; then
953 XAUTH_PATH="undefined"
954 AC_SUBST(XAUTH_PATH)
955else
Damien Millera22ba012000-03-02 23:09:20 +1100956 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
Damien Millera19cf472000-11-29 13:28:50 +1100957 XAUTH_PATH=$xauth_path
958 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +1100959fi
960if test ! -z "$rsh_path" ; then
961 AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path")
962fi
963
964# Check for mail directory (last resort if we cannot get it from headers)
965if test ! -z "$MAIL" ; then
966 maildir=`dirname $MAIL`
967 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir")
968fi
969
Damien Millera22ba012000-03-02 23:09:20 +1100970if test -z "$no_dev_ptmx" ; then
Damien Miller204ad072000-03-02 23:56:12 +1100971 AC_CHECK_FILE("/dev/ptmx",
972 [
973 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
974 have_dev_ptmx=1
975 ]
976 )
Damien Millera22ba012000-03-02 23:09:20 +1100977fi
Damien Miller204ad072000-03-02 23:56:12 +1100978AC_CHECK_FILE("/dev/ptc",
979 [
980 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
981 have_dev_ptc=1
982 ]
983)
984
Damien Millera22ba012000-03-02 23:09:20 +1100985# Options from here on. Some of these are preset by platform above
986
Damien Millera22ba012000-03-02 23:09:20 +1100987# Check for user-specified random device, otherwise check /dev/urandom
988AC_ARG_WITH(random,
989 [ --with-random=FILE read randomness from FILE (default=/dev/urandom)],
990 [
Damien Miller040f3832000-04-03 14:50:43 +1000991 if test "x$withval" != "xno" ; then
992 RANDOM_POOL="$withval";
993 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
994 fi
Damien Millera22ba012000-03-02 23:09:20 +1100995 ],
996 [
997 # Check for random device
998 AC_CHECK_FILE("/dev/urandom",
999 [
1000 RANDOM_POOL="/dev/urandom";
1001 AC_SUBST(RANDOM_POOL)
1002 AC_DEFINE_UNQUOTED(RANDOM_POOL, "$RANDOM_POOL")
1003 ]
1004 )
1005 ]
1006)
1007
1008# Check for EGD pool file
1009AC_ARG_WITH(egd-pool,
1010 [ --with-egd-pool=FILE read randomness from EGD pool FILE (default none)],
1011 [
Damien Miller040f3832000-04-03 14:50:43 +10001012 if test "x$withval" != "xno" ; then
1013 EGD_SOCKET="$withval";
1014 AC_DEFINE_UNQUOTED(EGD_SOCKET, "$EGD_SOCKET")
1015 fi
Damien Millera22ba012000-03-02 23:09:20 +11001016 ]
1017)
1018
Damien Miller0437b332000-05-02 09:56:41 +10001019# detect pathnames for entropy gathering commands, if we need them
1020INSTALL_SSH_PRNG_CMDS=""
1021rm -f prng_commands
Damien Milleredb82922000-06-20 13:25:52 +10001022if (test -z "$RANDOM_POOL" && test -z "$EGD_SOCKET") ; then
Damien Miller11e37f62000-04-08 18:23:30 +10001023 # Use these commands to collect entropy
Damien Miller61e50f12000-05-08 20:49:37 +10001024 OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
1025 OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
1026 OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
1027 OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
1028 OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
1029 OSSH_PATH_ENTROPY_PROG(PROG_W, w)
1030 OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
1031 OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
1032 OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
1033 OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
1034 OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
1035 OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
1036 OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
1037 OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
1038 OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
Damien Miller0437b332000-05-02 09:56:41 +10001039
1040 INSTALL_SSH_PRNG_CMDS="yes"
Damien Miller11e37f62000-04-08 18:23:30 +10001041fi
Damien Miller0437b332000-05-02 09:56:41 +10001042AC_SUBST(INSTALL_SSH_PRNG_CMDS)
1043
Damien Miller11e37f62000-04-08 18:23:30 +10001044
Damien Miller670a4b82000-01-22 13:53:11 +11001045AC_ARG_WITH(catman,
1046 [ --with-catman=man|cat Install preformatted manpages[no]],
1047 [
1048 MANTYPE='$(CATMAN)'
1049 if test x"$withval" != x"yes" ; then
1050 mansubdir=$withval
1051 else
1052 mansubdir=cat
1053 fi
1054 ], [
1055 if test -z "$MANTYPE" ; then
1056 MANTYPE='$(TROFFMAN)'
1057 mansubdir=man
1058 fi
1059 ]
1060)
1061AC_SUBST(MANTYPE)
1062AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11001063
Damien Millera22ba012000-03-02 23:09:20 +11001064# Check whether user wants Kerberos support
Damien Miller7b22d652000-06-18 14:07:04 +10001065KRB4_MSG="no"
Damien Miller80297751999-11-19 13:03:25 +11001066AC_ARG_WITH(kerberos4,
Damien Miller105b7f02000-01-07 08:45:55 +11001067 [ --with-kerberos4=PATH Enable Kerberos 4 support],
Damien Miller80297751999-11-19 13:03:25 +11001068 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001069 if test "x$withval" != "xno" ; then
Damien Miller105b7f02000-01-07 08:45:55 +11001070
Ben Lindstrom23e13712000-10-29 22:49:19 +00001071 if test "x$withval" != "xyes" ; then
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00001072 CPPFLAGS="$CPPFLAGS -I${withval}/include"
Damien Miller105b7f02000-01-07 08:45:55 +11001073 LDFLAGS="$LDFLAGS -L${withval}/lib"
Damien Miller29ea30d2000-03-17 10:54:15 +11001074 if test ! -z "$need_dash_r" ; then
1075 LDFLAGS="$LDFLAGS -R${withval}/lib"
1076 fi
1077 if test ! -z "$blibpath" ; then
1078 blibpath="$blibpath:${withval}/lib"
1079 fi
Damien Miller105b7f02000-01-07 08:45:55 +11001080 else
1081 if test -d /usr/include/kerberosIV ; then
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00001082 CPPFLAGS="$CPPFLAGS -I/usr/include/kerberosIV"
Damien Miller105b7f02000-01-07 08:45:55 +11001083 fi
1084 fi
1085
1086 AC_CHECK_HEADERS(krb.h)
1087 AC_CHECK_LIB(krb, main)
1088 if test "$ac_cv_header_krb_h" != yes; then
1089 AC_MSG_WARN([Cannot find krb.h, build may fail])
1090 fi
1091 if test "$ac_cv_lib_krb_main" != yes; then
1092 AC_MSG_WARN([Cannot find libkrb, build may fail])
1093 fi
1094
Damien Millerc85f9b42000-01-29 10:20:21 +11001095 KLIBS="-lkrb -ldes"
Damien Miller105b7f02000-01-07 08:45:55 +11001096 AC_CHECK_LIB(resolv, dn_expand, , )
1097 KRB4=yes
Damien Miller7b22d652000-06-18 14:07:04 +10001098 KRB4_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11001099 AC_DEFINE(KRB4)
Damien Miller8bdeee21999-12-30 15:50:54 +11001100 fi
Damien Miller80297751999-11-19 13:03:25 +11001101 ]
1102)
1103
Damien Millera22ba012000-03-02 23:09:20 +11001104# Check whether user wants AFS support
Damien Miller7b22d652000-06-18 14:07:04 +10001105AFS_MSG="no"
Damien Millerc6398ef1999-11-20 12:18:40 +11001106AC_ARG_WITH(afs,
Damien Miller105b7f02000-01-07 08:45:55 +11001107 [ --with-afs=PATH Enable AFS support],
Damien Miller80297751999-11-19 13:03:25 +11001108 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001109 if test "x$withval" != "xno" ; then
Damien Miller105b7f02000-01-07 08:45:55 +11001110
Ben Lindstrom76020ba2000-10-25 16:55:00 +00001111 if test "x$withval" != "xyes" ; then
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00001112 CPPFLAGS="$CPPFLAGS -I${withval}/include"
Ben Lindstrom305fb002000-11-10 02:41:30 +00001113 LDFLAGS="$LDFLAGS -L${withval}/lib"
Damien Miller105b7f02000-01-07 08:45:55 +11001114 fi
1115
1116 if test -z "$KRB4" ; then
1117 AC_MSG_WARN([AFS requires Kerberos IV support, build may fail])
1118 fi
1119
Damien Miller8bdeee21999-12-30 15:50:54 +11001120 LIBS="$LIBS -lkafs"
Damien Miller105b7f02000-01-07 08:45:55 +11001121 if test ! -z "$AFS_LIBS" ; then
1122 LIBS="$LIBS $AFS_LIBS"
1123 fi
1124 AC_DEFINE(AFS)
Damien Miller7b22d652000-06-18 14:07:04 +10001125 AFS_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11001126 fi
Damien Miller80297751999-11-19 13:03:25 +11001127 ]
1128)
Damien Millerc85f9b42000-01-29 10:20:21 +11001129LIBS="$LIBS $KLIBS"
Damien Miller80297751999-11-19 13:03:25 +11001130
Damien Millera22ba012000-03-02 23:09:20 +11001131# Check whether user wants S/Key support
Damien Miller7b22d652000-06-18 14:07:04 +10001132SKEY_MSG="no"
Damien Miller80297751999-11-19 13:03:25 +11001133AC_ARG_WITH(skey,
Ben Lindstrom305fb002000-11-10 02:41:30 +00001134 [ --with-skey=PATH Enable S/Key support],
Damien Miller80297751999-11-19 13:03:25 +11001135 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001136 if test "x$withval" != "xno" ; then
Ben Lindstrom305fb002000-11-10 02:41:30 +00001137
1138 if test "x$withval" != "xyes" ; then
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00001139 CPPFLAGS="$CPPFLAGS -I${withval}/include"
Ben Lindstrom305fb002000-11-10 02:41:30 +00001140 LDFLAGS="$LDFLAGS -L${withval}/lib"
1141 fi
1142
Damien Miller8bdeee21999-12-30 15:50:54 +11001143 AC_DEFINE(SKEY)
1144 LIBS="$LIBS -lskey"
Damien Miller7b22d652000-06-18 14:07:04 +10001145 SKEY_MSG="yes"
Ben Lindstrom305fb002000-11-10 02:41:30 +00001146
1147 AC_CHECK_FUNC(skey_keyinfo,
1148 [],
1149 [
1150 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
1151 ])
Damien Miller8bdeee21999-12-30 15:50:54 +11001152 fi
Damien Miller80297751999-11-19 13:03:25 +11001153 ]
1154)
1155
Damien Millera22ba012000-03-02 23:09:20 +11001156# Check whether user wants TCP wrappers support
Damien Miller7b22d652000-06-18 14:07:04 +10001157TCPW_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11001158AC_ARG_WITH(tcp-wrappers,
Damien Miller80297751999-11-19 13:03:25 +11001159 [ --with-tcp-wrappers Enable tcpwrappers support],
1160 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001161 if test "x$withval" != "xno" ; then
Damien Miller65165f82000-03-05 17:02:45 +11001162 saved_LIBS="$LIBS"
Damien Miller105b7f02000-01-07 08:45:55 +11001163 LIBS="$LIBS -lwrap"
Damien Miller65165f82000-03-05 17:02:45 +11001164 AC_MSG_CHECKING(for libwrap)
1165 AC_TRY_LINK(
1166 [
Damien Miller81171112000-04-23 11:14:01 +10001167#include <tcpd.h>
Damien Miller65165f82000-03-05 17:02:45 +11001168 int deny_severity = 0, allow_severity = 0;
1169 ],
1170 [hosts_access(0);],
1171 [
1172 AC_MSG_RESULT(yes)
1173 AC_DEFINE(LIBWRAP)
Damien Miller7b22d652000-06-18 14:07:04 +10001174 TCPW_MSG="yes"
Damien Miller65165f82000-03-05 17:02:45 +11001175 ],
1176 [
Damien Miller7b22d652000-06-18 14:07:04 +10001177 AC_MSG_ERROR([*** libwrap missing])
Damien Miller65165f82000-03-05 17:02:45 +11001178 ]
1179 )
Damien Miller8bdeee21999-12-30 15:50:54 +11001180 fi
Damien Miller80297751999-11-19 13:03:25 +11001181 ]
1182)
1183
Damien Millera22ba012000-03-02 23:09:20 +11001184# Check whether to enable MD5 passwords
Damien Miller7b22d652000-06-18 14:07:04 +10001185MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11001186AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11001187 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11001188 [
Damien Millerb85dcad2000-03-11 11:37:00 +11001189 if test "x$withval" != "xno" ; then
Damien Miller8bdeee21999-12-30 15:50:54 +11001190 AC_DEFINE(HAVE_MD5_PASSWORDS)
Damien Miller7b22d652000-06-18 14:07:04 +10001191 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11001192 fi
1193 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11001194)
1195
Damien Millera22ba012000-03-02 23:09:20 +11001196# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11001197AC_ARG_WITH(shadow,
1198 [ --without-shadow Disable shadow password support],
1199 [
1200 if test "x$withval" = "xno" ; then
1201 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10001202 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11001203 fi
1204 ]
1205)
1206
Damien Miller1f335fb2000-06-26 11:31:33 +10001207if test -z "$disable_shadow" ; then
1208 AC_MSG_CHECKING([if the systems has expire shadow information])
1209 AC_TRY_COMPILE(
1210 [
1211#include <sys/types.h>
1212#include <shadow.h>
1213 struct spwd sp;
1214 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
1215 [ sp_expire_available=yes ], []
1216 )
1217
1218 if test "x$sp_expire_available" = "xyes" ; then
1219 AC_MSG_RESULT(yes)
1220 AC_DEFINE(HAS_SHADOW_EXPIRE)
1221 else
1222 AC_MSG_RESULT(no)
1223 fi
1224fi
1225
Damien Millera22ba012000-03-02 23:09:20 +11001226# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11001227if test ! -z "$IPADDR_IN_DISPLAY" ; then
1228 DISPLAY_HACK_MSG="yes"
1229 AC_DEFINE(IPADDR_IN_DISPLAY)
1230else
1231 DISPLAY_HACK_MSG="no"
1232 AC_ARG_WITH(ipaddr-display,
1233 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
1234 [
1235 if test "x$withval" != "xno" ; then
1236 AC_DEFINE(IPADDR_IN_DISPLAY)
1237 DISPLAY_HACK_MSG="yes"
1238 fi
1239 ]
1240 )
1241fi
Damien Miller76112de1999-12-21 11:18:08 +11001242
Damien Millera22ba012000-03-02 23:09:20 +11001243# Whether to mess with the default path
Damien Miller7b22d652000-06-18 14:07:04 +10001244SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11001245AC_ARG_WITH(default-path,
Damien Miller5a3e6831999-12-27 09:48:56 +11001246 [ --with-default-path=PATH Specify default \$PATH environment for server],
1247 [
1248 if test "x$withval" != "xno" ; then
Damien Millere68f92b2000-10-02 21:42:15 +11001249 AC_DEFINE_UNQUOTED(USER_PATH, "$withval")
Damien Miller7b22d652000-06-18 14:07:04 +10001250 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11001251 fi
1252 ]
1253)
1254
Damien Millera22ba012000-03-02 23:09:20 +11001255# Whether to force IPv4 by default (needed on broken glibc Linux)
Damien Miller7b22d652000-06-18 14:07:04 +10001256IPV4_HACK_MSG="no"
Damien Miller7d80e342000-01-19 14:36:49 +11001257AC_ARG_WITH(ipv4-default,
1258 [ --with-ipv4-default Use IPv4 by connections unless '-6' specified],
1259 [
1260 if test "x$withval" != "xno" ; then
1261 AC_DEFINE(IPV4_DEFAULT)
Damien Miller7b22d652000-06-18 14:07:04 +10001262 IPV4_HACK_MSG="yes"
Damien Miller7d80e342000-01-19 14:36:49 +11001263 fi
1264 ]
1265)
1266
Damien Miller61e50f12000-05-08 20:49:37 +10001267AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Miller7b22d652000-06-18 14:07:04 +10001268IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11001269AC_ARG_WITH(4in6,
1270 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
1271 [
1272 if test "x$withval" != "xno" ; then
1273 AC_MSG_RESULT(yes)
1274 AC_DEFINE(IPV4_IN_IPV6)
Damien Miller7b22d652000-06-18 14:07:04 +10001275 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11001276 else
1277 AC_MSG_RESULT(no)
1278 fi
1279 ],[
1280 if test "x$inet6_default_4in6" = "xyes"; then
1281 AC_MSG_RESULT([yes (default)])
1282 AC_DEFINE(IPV4_IN_IPV6)
Damien Miller7b22d652000-06-18 14:07:04 +10001283 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11001284 else
1285 AC_MSG_RESULT([no (default)])
1286 fi
1287 ]
1288)
1289
Damien Miller78315eb2000-09-29 23:01:36 +11001290AC_MSG_CHECKING(whether to install ssh as suid root)
1291AC_ARG_ENABLE(suid-ssh,
1292[ --enable-suid-ssh Install ssh as suid root (default)
1293 --disable-suid-ssh Install ssh without suid bit],
1294[ case "$enableval" in
1295 no)
1296 AC_MSG_RESULT(no)
1297 SSHMODE=0711
1298 ;;
1299 *) AC_MSG_RESULT(yes)
1300 SSHMODE=04711
1301 ;;
1302 esac ],
1303 AC_MSG_RESULT(yes)
1304 SSHMODE=04711
1305)
1306AC_SUBST(SSHMODE)
1307
1308
Damien Millera22ba012000-03-02 23:09:20 +11001309# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11001310piddir=/var/run
Damien Miller5eed6a22000-01-16 12:05:18 +11001311AC_ARG_WITH(pid-dir,
1312 [ --with-pid-dir=PATH Specify location of ssh.pid file],
1313 [
1314 if test "x$withval" != "xno" ; then
Damien Millerb13c73e2000-01-17 22:02:17 +11001315 piddir=$withval
Damien Miller5eed6a22000-01-16 12:05:18 +11001316 fi
1317 ]
1318)
Damien Miller4018c192000-04-30 09:30:44 +10001319
Damien Miller78315eb2000-09-29 23:01:36 +11001320# make sure the directory exists
1321if test ! -d $piddir ; then
1322 piddir=`eval echo ${sysconfdir}`
1323 case $piddir in
1324 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
1325 esac
1326fi
1327
Damien Millerdbd250f2000-01-18 08:57:14 +11001328AC_DEFINE_UNQUOTED(PIDDIR, "$piddir")
Damien Millerb13c73e2000-01-17 22:02:17 +11001329AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11001330
andre2ff7b5d2000-06-03 14:57:40 +00001331dnl allow user to disable some login recording features
1332AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00001333 [ --disable-lastlog disable use of lastlog even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001334 [ AC_DEFINE(DISABLE_LASTLOG) ]
1335)
1336AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00001337 [ --disable-utmp disable use of utmp even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001338 [ AC_DEFINE(DISABLE_UTMP) ]
1339)
1340AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00001341 [ --disable-utmpx disable use of utmpx even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001342 [ AC_DEFINE(DISABLE_UTMPX) ]
1343)
1344AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00001345 [ --disable-wtmp disable use of wtmp even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001346 [ AC_DEFINE(DISABLE_WTMP) ]
1347)
1348AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00001349 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001350 [ AC_DEFINE(DISABLE_WTMPX) ]
1351)
1352AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00001353 [ --disable-libutil disable use of libutil (login() etc.) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001354 [ AC_DEFINE(DISABLE_LOGIN) ]
1355)
1356AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00001357 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001358 [ AC_DEFINE(DISABLE_PUTUTLINE) ]
1359)
1360AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00001361 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
andre2ff7b5d2000-06-03 14:57:40 +00001362 [ AC_DEFINE(DISABLE_PUTUTXLINE) ]
1363)
1364AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00001365 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
andre2ff7b5d2000-06-03 14:57:40 +00001366 [ conf_lastlog_location="$withval"; ],)
1367
1368dnl lastlog, [uw]tmpx? detection
1369dnl NOTE: set the paths in the platform section to avoid the
1370dnl need for command-line parameters
1371dnl lastlog and [uw]tmp are subject to a file search if all else fails
1372
1373dnl lastlog detection
1374dnl NOTE: the code itself will detect if lastlog is a directory
1375AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
1376AC_TRY_COMPILE([
1377#include <sys/types.h>
1378#include <utmp.h>
1379#ifdef HAVE_LASTLOG_H
1380# include <lastlog.h>
1381#endif
Damien Miller2994e082000-06-04 15:51:47 +10001382#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001383# include <paths.h>
1384#endif
1385 ],
1386 [ char *lastlog = LASTLOG_FILE; ],
1387 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10001388 [
1389 AC_MSG_RESULT(no)
1390 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
1391 AC_TRY_COMPILE([
1392#include <sys/types.h>
1393#include <utmp.h>
1394#ifdef HAVE_LASTLOG_H
1395# include <lastlog.h>
1396#endif
1397#ifdef HAVE_PATHS_H
1398# include <paths.h>
1399#endif
1400 ],
1401 [ char *lastlog = _PATH_LASTLOG; ],
1402 [ AC_MSG_RESULT(yes) ],
1403 [
andree441aa32000-06-12 22:34:38 +00001404 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10001405 system_lastlog_path=no
1406 ])
1407 ]
andre2ff7b5d2000-06-03 14:57:40 +00001408)
Damien Miller2994e082000-06-04 15:51:47 +10001409
andre2ff7b5d2000-06-03 14:57:40 +00001410if test -z "$conf_lastlog_location"; then
1411 if test x"$system_lastlog_path" = x"no" ; then
1412 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10001413 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00001414 conf_lastlog_location=$f
1415 fi
1416 done
1417 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00001418 AC_MSG_WARN([** Cannot find lastlog **])
1419 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00001420 fi
1421 fi
1422fi
1423
1424if test -n "$conf_lastlog_location"; then
1425 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location")
1426fi
1427
1428dnl utmp detection
1429AC_MSG_CHECKING([if your system defines UTMP_FILE])
1430AC_TRY_COMPILE([
1431#include <sys/types.h>
1432#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10001433#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001434# include <paths.h>
1435#endif
1436 ],
1437 [ char *utmp = UTMP_FILE; ],
1438 [ AC_MSG_RESULT(yes) ],
1439 [ AC_MSG_RESULT(no)
1440 system_utmp_path=no ]
1441)
1442if test -z "$conf_utmp_location"; then
1443 if test x"$system_utmp_path" = x"no" ; then
1444 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
1445 if test -f $f ; then
1446 conf_utmp_location=$f
1447 fi
1448 done
1449 if test -z "$conf_utmp_location"; then
1450 AC_DEFINE(DISABLE_UTMP)
1451 fi
1452 fi
1453fi
1454if test -n "$conf_utmp_location"; then
1455 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location")
1456fi
1457
1458dnl wtmp detection
1459AC_MSG_CHECKING([if your system defines WTMP_FILE])
1460AC_TRY_COMPILE([
1461#include <sys/types.h>
1462#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10001463#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001464# include <paths.h>
1465#endif
1466 ],
1467 [ char *wtmp = WTMP_FILE; ],
1468 [ AC_MSG_RESULT(yes) ],
1469 [ AC_MSG_RESULT(no)
1470 system_wtmp_path=no ]
1471)
1472if test -z "$conf_wtmp_location"; then
1473 if test x"$system_wtmp_path" = x"no" ; then
1474 for f in /usr/adm/wtmp /var/log/wtmp; do
1475 if test -f $f ; then
1476 conf_wtmp_location=$f
1477 fi
1478 done
1479 if test -z "$conf_wtmp_location"; then
1480 AC_DEFINE(DISABLE_WTMP)
1481 fi
1482 fi
1483fi
1484if test -n "$conf_wtmp_location"; then
1485 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location")
1486fi
1487
1488
1489dnl utmpx detection - I don't know any system so perverse as to require
1490dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
1491dnl there, though.
1492AC_MSG_CHECKING([if your system defines UTMPX_FILE])
1493AC_TRY_COMPILE([
1494#include <sys/types.h>
1495#include <utmp.h>
1496#ifdef HAVE_UTMPX_H
1497#include <utmpx.h>
1498#endif
Damien Miller2994e082000-06-04 15:51:47 +10001499#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001500# include <paths.h>
1501#endif
1502 ],
1503 [ char *utmpx = UTMPX_FILE; ],
1504 [ AC_MSG_RESULT(yes) ],
1505 [ AC_MSG_RESULT(no)
1506 system_utmpx_path=no ]
1507)
1508if test -z "$conf_utmpx_location"; then
1509 if test x"$system_utmpx_path" = x"no" ; then
1510 AC_DEFINE(DISABLE_UTMPX)
1511 fi
1512else
1513 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location")
1514fi
1515
1516dnl wtmpx detection
1517AC_MSG_CHECKING([if your system defines WTMPX_FILE])
1518AC_TRY_COMPILE([
1519#include <sys/types.h>
1520#include <utmp.h>
1521#ifdef HAVE_UTMPX_H
1522#include <utmpx.h>
1523#endif
Damien Miller2994e082000-06-04 15:51:47 +10001524#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00001525# include <paths.h>
1526#endif
1527 ],
1528 [ char *wtmpx = WTMPX_FILE; ],
1529 [ AC_MSG_RESULT(yes) ],
1530 [ AC_MSG_RESULT(no)
1531 system_wtmpx_path=no ]
1532)
1533if test -z "$conf_wtmpx_location"; then
1534 if test x"$system_wtmpx_path" = x"no" ; then
1535 AC_DEFINE(DISABLE_WTMPX)
1536 fi
1537else
1538 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location")
1539fi
1540
Damien Miller4018c192000-04-30 09:30:44 +10001541
1542# Change default command timeout for builtin PRNG
Damien Miller14c12cb2000-06-07 22:20:23 +10001543entropy_timeout=200
Damien Miller4018c192000-04-30 09:30:44 +10001544AC_ARG_WITH(entropy-timeout,
1545 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
1546 [
1547 if test "x$withval" != "xno" ; then
1548 entropy_timeout=$withval
1549 fi
1550 ]
1551)
1552AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1553
1554
Damien Miller29ea30d2000-03-17 10:54:15 +11001555if test ! -z "$blibpath" ; then
1556 LDFLAGS="$LDFLAGS -blibpath:$blibpath"
1557 AC_MSG_WARN([Please check and edit -blibpath in LDFLAGS in Makefile])
1558fi
1559
Damien Millerbac2d8a2000-09-05 16:13:06 +11001560AC_EXEEXT
1561
Damien Miller0437b332000-05-02 09:56:41 +10001562AC_OUTPUT(Makefile ssh_prng_cmds)
1563
Damien Miller7b22d652000-06-18 14:07:04 +10001564# Print summary of options
1565
1566if test x$MANTYPE = x'$(CATMAN)' ; then
1567 MAN_MSG=cat
1568else
1569 MAN_MSG=man
1570fi
1571if test ! -z "$RANDOM_POOL" ; then
1572 RAND_MSG="Device ($RANDOM_POOL)"
1573else
1574 if test ! -z "$EGD_SOCKET" ; then
1575 RAND_MSG="EGD ($EGD_SOCKET)"
1576 else
1577 RAND_MSG="Builtin (timeout $entropy_timeout)"
Damien Miller6f9c3372000-10-25 10:06:04 +11001578 BUILTIN_RNG=1
Damien Miller7b22d652000-06-18 14:07:04 +10001579 fi
1580fi
1581
1582# Someone please show me a better way :)
1583A=`eval echo ${prefix}` ; A=`eval echo ${A}`
1584B=`eval echo ${bindir}` ; B=`eval echo ${B}`
1585C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
1586D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00001587E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Damien Miller7b22d652000-06-18 14:07:04 +10001588F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
1589G=`eval echo ${piddir}` ; G=`eval echo ${G}`
1590
1591echo ""
1592echo "OpenSSH configured has been configured with the following options."
1593echo " User binaries: $B"
Damien Millere68f92b2000-10-02 21:42:15 +11001594echo " User binaries: $B"
Damien Miller7b22d652000-06-18 14:07:04 +10001595echo " System binaries: $C"
1596echo " Configuration files: $D"
1597echo " Askpass program: $E"
1598echo " Manual pages: $F"
1599echo " PID file: $G"
1600echo " Random number collection: $RAND_MSG"
1601echo " Manpage format: $MAN_MSG"
1602echo " PAM support: ${PAM_MSG}"
1603echo " KerberosIV support: $KRB4_MSG"
1604echo " AFS support: $AFS_MSG"
1605echo " S/KEY support: $SKEY_MSG"
1606echo " TCP Wrappers support: $TCPW_MSG"
1607echo " MD5 password support: $MD5_MSG"
1608echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
1609echo " Use IPv4 by default hack: $IPV4_HACK_MSG"
1610echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
1611
1612echo ""
1613
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00001614echo " Host: ${host}"
1615echo " Compiler: ${CC}"
1616echo " Compiler flags: ${CFLAGS}"
1617echo "Preprocessor flags: ${CPPFLAGS}"
1618echo " Linker flags: ${LDFLAGS}"
1619echo " Libraries: ${LIBS}"
Damien Miller7b22d652000-06-18 14:07:04 +10001620
1621echo ""
1622
Damien Miller82cf0ce2000-12-20 13:34:48 +11001623if test "x$PAM_MSG" = "xyes" ; then
1624 echo "PAM is enabled. You may need to install a PAM control file for sshd,"
1625 echo "otherwise password authentication may fail. Example PAM control files"
1626 echo "can be found in the contrib/ subdirectory"
1627 echo ""
1628fi
1629
Damien Miller6f9c3372000-10-25 10:06:04 +11001630if test ! -z "$BUILTIN_RNG" ; then
1631 echo "WARNING: you are using the builtin random number collection service."
1632 echo "Please read WARNING.RNG and request that your OS vendor includes"
1633 echo "/dev/random in future versions of their OS."
1634 echo ""
1635fi