blob: 3f515c453259e262da951d3226707af31f9975a9 [file] [log] [blame]
Darren Tucker4398cf52004-04-06 21:39:02 +10001# $Id: configure.ac,v 1.209 2004/04/06 11:39:02 dtucker Exp $
Damien Miller4fefe242004-03-11 14:20:10 +11002#
3# Copyright (c) 1999-2004 Damien Miller
4#
5# Permission to use, copy, modify, and distribute this software for any
6# purpose with or without fee is hereby granted, provided that the above
7# copyright notice and this permission notice appear in all copies.
8#
9# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Damien Millere9cf3572001-02-09 12:55:35 +110016
Tim Rice13aae5e2001-10-21 17:53:58 -070017AC_INIT
18AC_CONFIG_SRCDIR([ssh.c])
Damien Miller7f6ea021999-10-28 13:25:17 +100019
20AC_CONFIG_HEADER(config.h)
Damien Miller856799b2000-03-15 21:18:10 +110021AC_PROG_CC
Damien Miller76112de1999-12-21 11:18:08 +110022AC_CANONICAL_HOST
Damien Miller4df5c762001-02-28 08:14:22 +110023AC_C_BIGENDIAN
Damien Miller7f6ea021999-10-28 13:25:17 +100024
Damien Millera22ba012000-03-02 23:09:20 +110025# Checks for programs.
Darren Tucker167bd9c2003-09-07 12:34:54 +100026AC_PROG_AWK
Damien Millerab18c411999-11-11 10:40:23 +110027AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +100028AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110029AC_PROG_INSTALL
Ben Lindstrom582d3982001-02-06 22:54:30 +000030AC_PATH_PROG(AR, ar)
Tim Riceb8fbb8e2001-04-21 14:31:52 -070031AC_PATH_PROGS(PERL, perl5 perl)
Tim Riced0d7a8b2003-01-08 17:22:59 -080032AC_PATH_PROG(SED, sed)
Damien Millere79334a1999-12-29 10:03:37 +110033AC_SUBST(PERL)
Damien Miller8d1fd572000-05-17 21:34:07 +100034AC_PATH_PROG(ENT, ent)
35AC_SUBST(ENT)
Damien Miller4864e8f2001-02-08 10:07:08 +110036AC_PATH_PROG(TEST_MINUS_S_SH, bash)
37AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
38AC_PATH_PROG(TEST_MINUS_S_SH, sh)
Tim Rice0502a472002-05-08 16:04:14 -070039AC_PATH_PROG(SH, sh)
Damien Miller2e1b0821999-12-25 10:11:29 +110040
Damien Millere8bb4502001-09-25 16:39:35 +100041# System features
42AC_SYS_LARGEFILE
43
Damien Miller3f62aba2000-11-29 11:56:35 +110044if test -z "$AR" ; then
45 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
46fi
47
Damien Millerad833b32000-08-23 10:46:23 +100048# Use LOGIN_PROGRAM from environment if possible
49if test ! -z "$LOGIN_PROGRAM" ; then
50 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM")
51else
52 # Search for login
53 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
54 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
55 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
56 fi
57fi
58
Darren Tucker23bc8d02004-02-06 16:24:31 +110059AC_PATH_PROG(PATH_PASSWD_PROG, passwd)
60if test ! -z "$PATH_PASSWD_PROG" ; then
61 AC_DEFINE_UNQUOTED(_PATH_PASSWD_PROG, "$PATH_PASSWD_PROG")
62fi
63
Damien Miller166bd442000-03-16 10:48:25 +110064if test -z "$LD" ; then
65 LD=$CC
66fi
67AC_SUBST(LD)
68
Damien Miller166bd442000-03-16 10:48:25 +110069AC_C_INLINE
Damien Millera8e06ce2003-11-21 23:48:55 +110070if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
Damien Miller649d9992001-06-27 23:35:51 +100071 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wno-uninitialized"
Damien Miller166bd442000-03-16 10:48:25 +110072fi
73
Tim Rice88368a32003-12-08 12:35:59 -080074AC_ARG_WITH(rpath,
75 [ --without-rpath Disable auto-added -R linker paths],
76 [
77 if test "x$withval" = "xno" ; then
78 need_dash_r=""
79 fi
80 if test "x$withval" = "xyes" ; then
81 need_dash_r=1
82 fi
83 ]
84)
85
Damien Millera22ba012000-03-02 23:09:20 +110086# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +110087case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +110088*-*-aix*)
Damien Millera8e06ce2003-11-21 23:48:55 +110089 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
Damien Millereab4bae2003-04-29 23:22:40 +100090 if (test -z "$blibpath"); then
Tim Ricefcb62202004-01-23 18:35:16 -080091 blibpath="/usr/lib:/lib"
Damien Miller29ea30d2000-03-17 10:54:15 +110092 fi
Damien Millereab4bae2003-04-29 23:22:40 +100093 saved_LDFLAGS="$LDFLAGS"
94 for tryflags in -blibpath: -Wl,-blibpath: -Wl,-rpath, ;do
95 if (test -z "$blibflags"); then
96 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
97 AC_TRY_LINK([], [], [blibflags=$tryflags])
98 fi
99 done
100 if (test -z "$blibflags"); then
101 AC_MSG_RESULT(not found)
102 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
103 else
104 AC_MSG_RESULT($blibflags)
105 fi
106 LDFLAGS="$saved_LDFLAGS"
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000107 dnl Check for authenticate. Might be in libs.a on older AIXes
108 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)],
Tim Ricee958ed32002-07-05 07:12:33 -0700109 [AC_CHECK_LIB(s,authenticate,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000110 [ AC_DEFINE(WITH_AIXAUTHENTICATE)
Tim Ricee958ed32002-07-05 07:12:33 -0700111 LIBS="$LIBS -ls"
112 ])
113 ])
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000114 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
115 AC_CHECK_DECL(loginfailed,
116 [AC_MSG_CHECKING(if loginfailed takes 4 arguments)
117 AC_TRY_COMPILE(
Darren Tuckera0c0b632003-07-08 20:52:12 +1000118 [#include <usersec.h>],
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000119 [(void)loginfailed("user","host","tty",0);],
120 [AC_MSG_RESULT(yes)
121 AC_DEFINE(AIX_LOGINFAILED_4ARG)],
Darren Tuckera0c0b632003-07-08 20:52:12 +1000122 [AC_MSG_RESULT(no)]
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000123 )],
124 [],
125 [#include <usersec.h>]
126 )
Darren Tuckerfc3454e2003-07-14 16:41:55 +1000127 AC_CHECK_FUNCS(setauthdb)
Damien Millereca71f82000-01-20 22:38:27 +1100128 AC_DEFINE(BROKEN_GETADDRINFO)
Damien Millerf5fea442002-04-23 22:52:45 +1000129 AC_DEFINE(BROKEN_REALPATH)
Darren Tucker9f18be62003-09-06 16:44:39 +1000130 AC_DEFINE(SETEUID_BREAKS_SETUID)
131 AC_DEFINE(BROKEN_SETREUID)
132 AC_DEFINE(BROKEN_SETREGID)
andre60f3c982000-06-03 16:18:19 +0000133 dnl AIX handles lastlog as part of its login message
134 AC_DEFINE(DISABLE_LASTLOG)
Kevin Steves90d5de72002-06-22 18:51:48 +0000135 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Damien Miller35276252003-06-03 10:14:28 +1000136 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
Damien Miller75b1d102000-01-07 14:01:41 +1100137 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100138*-*-cygwin*)
Damien Millerc8936ac2003-02-11 10:04:03 +1100139 check_for_libcrypt_later=1
Tim Ricefe1d1002001-11-26 17:19:43 -0800140 LIBS="$LIBS /usr/lib/textmode.o"
Damien Millerbac2d8a2000-09-05 16:13:06 +1100141 AC_DEFINE(HAVE_CYGWIN)
Ben Lindstromca60a9b2001-05-17 03:32:50 +0000142 AC_DEFINE(USE_PIPES)
Damien Millerbac2d8a2000-09-05 16:13:06 +1100143 AC_DEFINE(DISABLE_SHADOW)
Damien Millerbac2d8a2000-09-05 16:13:06 +1100144 AC_DEFINE(IP_TOS_IS_BROKEN)
Ben Lindstrom38e60932001-02-24 00:55:04 +0000145 AC_DEFINE(NO_X11_UNIX_SOCKETS)
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000146 AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT)
Tim Rice9dd30812002-07-07 13:43:36 -0700147 AC_DEFINE(DISABLE_FD_PASSING)
Ben Lindstrom837461b2002-06-12 16:57:14 +0000148 AC_DEFINE(SETGROUPS_NOOP)
Damien Millerbac2d8a2000-09-05 16:13:06 +1100149 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000150*-*-dgux*)
151 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker454da0b2003-12-18 12:52:19 +1100152 AC_DEFINE(SETEUID_BREAKS_SETUID)
153 AC_DEFINE(BROKEN_SETREUID)
154 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom58055132001-02-15 18:34:29 +0000155 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000156*-*-darwin*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000157 AC_MSG_CHECKING(if we have working getaddrinfo)
158 AC_TRY_RUN([#include <mach-o/dyld.h>
159main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
160 exit(0);
161 else
162 exit(1);
163}], [AC_MSG_RESULT(working)],
164 [AC_MSG_RESULT(buggy)
165 AC_DEFINE(BROKEN_GETADDRINFO)],
Tim Rice480ef8d2003-09-21 21:38:11 -0700166 [AC_MSG_RESULT(assume it is working)])
Darren Tucker20379a32003-09-22 11:07:40 +1000167 AC_DEFINE(SETEUID_BREAKS_SETUID)
168 AC_DEFINE(BROKEN_SETREUID)
169 AC_DEFINE(BROKEN_SETREGID)
Damien Miller7a2ea782004-01-02 17:52:10 +1100170 AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1)
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000171 ;;
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000172*-*-hpux10.26)
173 if test -z "$GCC"; then
174 CFLAGS="$CFLAGS -Ae"
175 fi
176 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
177 IPADDR_IN_DISPLAY=yes
178 AC_DEFINE(HAVE_SECUREWARE)
179 AC_DEFINE(USE_PIPES)
180 AC_DEFINE(LOGIN_NO_ENDOPT)
181 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Darren Tuckere41bba52003-08-25 11:51:19 +1000182 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
Damien Miller35276252003-06-03 10:14:28 +1000183 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Tim Ricef028f1e2002-07-19 12:41:10 -0700184 LIBS="$LIBS -lsec -lsecpw"
185 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000186 disable_ptmx_check=yes
187 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100188*-*-hpux10*)
189 if test -z "$GCC"; then
Damien Millerfda78d92000-05-20 15:33:44 +1000190 CFLAGS="$CFLAGS -Ae"
Damien Miller76112de1999-12-21 11:18:08 +1100191 fi
Kevin Steves315f8b72001-06-28 00:24:41 +0000192 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100193 IPADDR_IN_DISPLAY=yes
Damien Millerb0785672000-08-23 09:10:39 +1000194 AC_DEFINE(USE_PIPES)
Kevin Steves5feaaef2002-04-23 20:45:55 +0000195 AC_DEFINE(LOGIN_NO_ENDOPT)
196 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Darren Tuckere41bba52003-08-25 11:51:19 +1000197 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
Damien Miller35276252003-06-03 10:14:28 +1000198 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Tim Ricef028f1e2002-07-19 12:41:10 -0700199 LIBS="$LIBS -lsec"
200 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
Damien Miller76112de1999-12-21 11:18:08 +1100201 ;;
Damien Miller1bead332000-04-30 00:47:29 +1000202*-*-hpux11*)
Kevin Steves6a7b0de2001-06-27 16:32:24 +0000203 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100204 IPADDR_IN_DISPLAY=yes
Damien Miller82cf0ce2000-12-20 13:34:48 +1100205 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller5552d7a2000-08-30 09:53:24 +1100206 AC_DEFINE(USE_PIPES)
Kevin Steves5feaaef2002-04-23 20:45:55 +0000207 AC_DEFINE(LOGIN_NO_ENDOPT)
208 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Damien Millerd6f204d2000-09-23 13:57:27 +1100209 AC_DEFINE(DISABLE_UTMP)
Darren Tuckere41bba52003-08-25 11:51:19 +1000210 AC_DEFINE(LOCKED_PASSWD_STRING, "*")
Damien Miller35276252003-06-03 10:14:28 +1000211 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Darren Tucker4398cf52004-04-06 21:39:02 +1000212 check_for_hpux_broken_getaddrinfo=1
Tim Ricef028f1e2002-07-19 12:41:10 -0700213 LIBS="$LIBS -lsec"
214 AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
Damien Miller1bead332000-04-30 00:47:29 +1000215 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100216*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100217 PATH="$PATH:/usr/etc"
Damien Miller11fa2cc2000-08-16 10:35:58 +1000218 AC_DEFINE(BROKEN_INET_NTOA)
Darren Tuckerbeaf6792003-09-24 20:03:48 +1000219 AC_DEFINE(SETEUID_BREAKS_SETUID)
220 AC_DEFINE(BROKEN_SETREUID)
221 AC_DEFINE(BROKEN_SETREGID)
Damien Millerf1b9d112002-04-23 23:09:19 +1000222 AC_DEFINE(WITH_ABBREV_NO_TTY)
Darren Tuckere41bba52003-08-25 11:51:19 +1000223 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller1808f382000-01-06 12:03:12 +1100224 ;;
225*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100226 PATH="$PATH:/usr/etc"
Damien Miller91606b12000-06-28 08:22:29 +1000227 AC_DEFINE(WITH_IRIX_ARRAY)
228 AC_DEFINE(WITH_IRIX_PROJECT)
229 AC_DEFINE(WITH_IRIX_AUDIT)
Ben Lindstrom8ff2a8d2002-04-06 18:58:31 +0000230 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS)])
Damien Miller11fa2cc2000-08-16 10:35:58 +1000231 AC_DEFINE(BROKEN_INET_NTOA)
Darren Tuckerbe79af12003-09-22 11:58:21 +1000232 AC_DEFINE(SETEUID_BREAKS_SETUID)
233 AC_DEFINE(BROKEN_SETREUID)
234 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker8db9a0f2004-04-06 21:31:12 +1000235 AC_DEFINE(BROKEN_UPDWTMPX)
Damien Millerf1b9d112002-04-23 23:09:19 +1000236 AC_DEFINE(WITH_ABBREV_NO_TTY)
Darren Tuckere41bba52003-08-25 11:51:19 +1000237 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Millerbeb4ba51999-12-28 15:09:35 +1100238 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100239*-*-linux*)
240 no_dev_ptmx=1
Damien Millera64b57a2001-01-17 10:44:13 +1100241 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000242 check_for_openpty_ctty_bug=1
Damien Miller7bcb0892000-03-11 20:45:40 +1100243 AC_DEFINE(DONT_TRY_OTHER_AF)
Damien Miller4e997202000-07-09 21:21:52 +1000244 AC_DEFINE(PAM_TTY_KLUDGE)
Darren Tucker809031f2004-03-30 14:03:45 +1000245 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!")
Damien Miller35276252003-06-03 10:14:28 +1000246 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
Damien Miller7bcb0892000-03-11 20:45:40 +1100247 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000248 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000249 1.*|2.0.*)
Darren Tucker3c016542003-05-02 20:48:21 +1000250 AC_DEFINE(BROKEN_CMSG_TYPE)
251 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000252 esac
Damien Millerb29ea912000-01-15 14:12:03 +1100253 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000254mips-sony-bsd|mips-sony-newsos4)
255 AC_DEFINE(HAVE_NEWS4)
256 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000257 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100258*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000259 check_for_libcrypt_before=1
Tim Rice88368a32003-12-08 12:35:59 -0800260 if test "x$withval" != "xno" ; then
261 need_dash_r=1
262 fi
Damien Milleree1c0b32000-01-21 00:18:15 +1100263 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100264*-*-freebsd*)
265 check_for_libcrypt_later=1
266 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000267*-*-bsdi*)
268 AC_DEFINE(SETEUID_BREAKS_SETUID)
269 AC_DEFINE(BROKEN_SETREUID)
270 AC_DEFINE(BROKEN_SETREGID)
271 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000272*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000273 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100274 conf_utmp_location=/etc/utmp
275 conf_wtmp_location=/usr/adm/wtmp
276 MAIL=/usr/spool/mail
Damien Miller0f91b4e2000-06-18 15:43:25 +1000277 AC_DEFINE(HAVE_NEXT)
Ben Lindstromb4df15d2000-10-15 00:17:36 +0000278 AC_DEFINE(BROKEN_REALPATH)
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000279 AC_DEFINE(USE_PIPES)
Damien Millerfbd884a2001-02-27 08:39:07 +1100280 AC_DEFINE(BROKEN_SAVED_UIDS)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000281 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100282*-*-solaris*)
Tim Ricead4a1882004-02-29 15:53:37 -0800283 if test "x$withval" != "xno" ; then
284 need_dash_r=1
285 fi
Damien Miller82cf0ce2000-12-20 13:34:48 +1100286 AC_DEFINE(PAM_SUN_CODEBASE)
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000287 AC_DEFINE(LOGIN_NEEDS_UTMPX)
288 AC_DEFINE(LOGIN_NEEDS_TERM)
Ben Lindstrom95276712001-10-23 17:14:00 +0000289 AC_DEFINE(PAM_TTY_KLUDGE)
Darren Tuckere41bba52003-08-25 11:51:19 +1000290 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Darren Tuckerc437cda2003-05-10 17:05:46 +1000291 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
292 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckere1a790d2003-09-16 11:52:19 +1000293 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000294 # hardwire lastlog location (can't detect it on some versions)
295 conf_lastlog_location="/var/adm/lastlog"
Damien Millera1cb6442000-06-09 11:58:35 +1000296 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
297 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
298 if test "$sol2ver" -ge 8; then
299 AC_MSG_RESULT(yes)
300 AC_DEFINE(DISABLE_UTMP)
301 AC_DEFINE(DISABLE_WTMP)
302 else
303 AC_MSG_RESULT(no)
304 fi
Damien Miller75b1d102000-01-07 14:01:41 +1100305 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +1000306*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000307 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Damien Millerdfc83f42000-05-20 15:02:59 +1000308 AC_CHECK_FUNCS(getpwanam)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100309 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000310 conf_utmp_location=/etc/utmp
311 conf_wtmp_location=/var/adm/wtmp
312 conf_lastlog_location=/var/adm/lastlog
Damien Millerb0785672000-08-23 09:10:39 +1000313 AC_DEFINE(USE_PIPES)
Damien Millerdfc83f42000-05-20 15:02:59 +1000314 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000315*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -0700316 LIBS="$LIBS -lc89"
Kevin Steves0bd4b342002-01-05 23:24:27 +0000317 AC_DEFINE(USE_PIPES)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000318 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker00130112003-09-22 11:40:24 +1000319 AC_DEFINE(SETEUID_BREAKS_SETUID)
320 AC_DEFINE(BROKEN_SETREUID)
321 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000322 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000323*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -0700324 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Darren Tucker89df7a32003-10-07 20:35:57 +1000325 AC_CHECK_LIB(dl, dlsym, ,)
Damien Millerfd9885e2001-01-10 08:16:53 +1100326 IPADDR_IN_DISPLAY=yes
327 AC_DEFINE(USE_PIPES)
Damien Miller2ae714f2000-07-11 09:29:50 +1000328 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker3b2a06c2003-10-07 18:37:11 +1000329 AC_DEFINE(SETEUID_BREAKS_SETUID)
330 AC_DEFINE(BROKEN_SETREUID)
331 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000332 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckere1a790d2003-09-16 11:52:19 +1000333 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -0700334 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
335 # Attention: always take care to bind libsocket and libnsl before libc,
336 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +1000337 ;;
Damien Miller78315eb2000-09-29 23:01:36 +1100338*-*-sysv4.2*)
Damien Miller5dfe9762001-02-16 12:05:39 +1100339 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700340 AC_DEFINE(SETEUID_BREAKS_SETUID)
341 AC_DEFINE(BROKEN_SETREUID)
342 AC_DEFINE(BROKEN_SETREGID)
Damien Miller78315eb2000-09-29 23:01:36 +1100343 ;;
344*-*-sysv5*)
Damien Miller5dfe9762001-02-16 12:05:39 +1100345 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700346 AC_DEFINE(SETEUID_BREAKS_SETUID)
347 AC_DEFINE(BROKEN_SETREUID)
348 AC_DEFINE(BROKEN_SETREGID)
Damien Miller78315eb2000-09-29 23:01:36 +1100349 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100350*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +1100351 ;;
Damien Miller78315eb2000-09-29 23:01:36 +1100352*-*-sco3.2v4*)
Tim Ricefcb62202004-01-23 18:35:16 -0800353 CPPFLAGS="$CPPFLAGS -Dftruncate=chsize"
Tim Ricee8c898a2004-02-23 21:47:04 -0800354 LIBS="$LIBS -los -lprot -lcrypt_i -lx -ltinfo -lm"
Damien Miller5dfe9762001-02-16 12:05:39 +1100355 RANLIB=true
356 no_dev_ptmx=1
357 AC_DEFINE(BROKEN_SYS_TERMIO_H)
358 AC_DEFINE(USE_PIPES)
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000359 AC_DEFINE(HAVE_SECUREWARE)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000360 AC_DEFINE(DISABLE_SHADOW)
Damien Millerfbd884a2001-02-27 08:39:07 +1100361 AC_DEFINE(BROKEN_SAVED_UIDS)
Tim Riceae477e92003-09-12 18:15:15 -0700362 AC_DEFINE(WITH_ABBREV_NO_TTY)
Damien Miller217f5672001-02-16 12:12:41 +1100363 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700364 MANTYPE=man
Tim Rice13aae5e2001-10-21 17:53:58 -0700365 do_sco3_extra_lib_check=yes
Damien Miller78315eb2000-09-29 23:01:36 +1100366 ;;
367*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -0800368 if test -z "$GCC"; then
369 CFLAGS="$CFLAGS -belf"
370 fi
Damien Miller5dfe9762001-02-16 12:05:39 +1100371 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000372 no_dev_ptmx=1
Damien Miller5dfe9762001-02-16 12:05:39 +1100373 AC_DEFINE(USE_PIPES)
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000374 AC_DEFINE(HAVE_SECUREWARE)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000375 AC_DEFINE(DISABLE_SHADOW)
Tim Rice9dd30812002-07-07 13:43:36 -0700376 AC_DEFINE(DISABLE_FD_PASSING)
Tim Riced546a842003-09-11 22:24:36 -0700377 AC_DEFINE(SETEUID_BREAKS_SETUID)
378 AC_DEFINE(BROKEN_SETREUID)
379 AC_DEFINE(BROKEN_SETREGID)
Tim Riceae477e92003-09-12 18:15:15 -0700380 AC_DEFINE(WITH_ABBREV_NO_TTY)
Damien Miller217f5672001-02-16 12:12:41 +1100381 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700382 MANTYPE=man
Damien Millera66626b2000-06-13 18:57:53 +1000383 ;;
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000384*-*-unicosmk*)
Darren Tucker2df33432004-01-30 14:34:21 +1100385 AC_DEFINE(NO_SSH_LASTLOG)
386 AC_DEFINE(SETEUID_BREAKS_SETUID)
387 AC_DEFINE(BROKEN_SETREUID)
388 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000389 AC_DEFINE(USE_PIPES)
390 AC_DEFINE(DISABLE_FD_PASSING)
391 LDFLAGS="$LDFLAGS"
392 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
393 MANTYPE=cat
Ben Lindstrom762104e2002-07-23 00:00:05 +0000394 ;;
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000395*-*-unicosmp*)
Darren Tucker2df33432004-01-30 14:34:21 +1100396 AC_DEFINE(SETEUID_BREAKS_SETUID)
397 AC_DEFINE(BROKEN_SETREUID)
398 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000399 AC_DEFINE(WITH_ABBREV_NO_TTY)
400 AC_DEFINE(USE_PIPES)
401 AC_DEFINE(DISABLE_FD_PASSING)
402 LDFLAGS="$LDFLAGS"
Darren Tucker2df33432004-01-30 14:34:21 +1100403 LIBS="$LIBS -lgen -lacid -ldb"
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000404 MANTYPE=cat
405 ;;
Ben Lindstromd9e08242001-07-22 19:32:00 +0000406*-*-unicos*)
Darren Tucker2df33432004-01-30 14:34:21 +1100407 AC_DEFINE(SETEUID_BREAKS_SETUID)
408 AC_DEFINE(BROKEN_SETREUID)
409 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstromd9e08242001-07-22 19:32:00 +0000410 AC_DEFINE(USE_PIPES)
Tim Rice9dd30812002-07-07 13:43:36 -0700411 AC_DEFINE(DISABLE_FD_PASSING)
Tim Rice81ed5182002-09-25 17:38:46 -0700412 AC_DEFINE(NO_SSH_LASTLOG)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000413 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
414 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
415 MANTYPE=cat
Tim Ricee991e3c2001-08-07 15:29:07 -0700416 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000417*-dec-osf*)
Ben Lindstrom72af2ef2001-05-08 20:42:28 +0000418 AC_MSG_CHECKING(for Digital Unix SIA)
419 no_osfsia=""
420 AC_ARG_WITH(osfsia,
421 [ --with-osfsia Enable Digital Unix SIA],
422 [
423 if test "x$withval" = "xno" ; then
424 AC_MSG_RESULT(disabled)
425 no_osfsia=1
426 fi
427 ],
428 )
429 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +1000430 if test -f /etc/sia/matrix.conf; then
431 AC_MSG_RESULT(yes)
432 AC_DEFINE(HAVE_OSF_SIA)
433 AC_DEFINE(DISABLE_LOGIN)
Ben Lindstromc8c548d2003-03-21 01:18:09 +0000434 AC_DEFINE(DISABLE_FD_PASSING)
Damien Millerb8c656e2000-06-28 15:22:41 +1000435 LIBS="$LIBS -lsecurity -ldb -lm -laud"
436 else
437 AC_MSG_RESULT(no)
Darren Tucker4e06a1d2003-11-22 14:25:15 +1100438 AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin")
Damien Millerb8c656e2000-06-28 15:22:41 +1000439 fi
440 fi
Darren Tucker3c8e1e12003-08-25 13:27:40 +1000441 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Rice7a74c6b2003-09-21 21:00:59 -0700442 AC_DEFINE(SETEUID_BREAKS_SETUID)
Darren Tuckered92b212003-09-22 11:26:16 +1000443 AC_DEFINE(BROKEN_SETREUID)
444 AC_DEFINE(BROKEN_SETREGID)
Damien Millerb8c656e2000-06-28 15:22:41 +1000445 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000446
447*-*-nto-qnx)
448 AC_DEFINE(USE_PIPES)
449 AC_DEFINE(NO_X11_UNIX_SOCKETS)
450 AC_DEFINE(MISSING_NFDBITS)
451 AC_DEFINE(MISSING_HOWMANY)
452 AC_DEFINE(MISSING_FD_MASK)
453 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100454esac
455
Damien Millere37bfc12000-06-05 09:37:43 +1000456# Allow user to specify flags
457AC_ARG_WITH(cflags,
458 [ --with-cflags Specify additional flags to pass to compiler],
459 [
460 if test "x$withval" != "xno" ; then
461 CFLAGS="$CFLAGS $withval"
462 fi
463 ]
464)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000465AC_ARG_WITH(cppflags,
466 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
467 [
468 if test "x$withval" != "xno"; then
469 CPPFLAGS="$CPPFLAGS $withval"
470 fi
471 ]
472)
Damien Millere37bfc12000-06-05 09:37:43 +1000473AC_ARG_WITH(ldflags,
Ben Lindstrom2ed98182000-11-06 07:15:43 +0000474 [ --with-ldflags Specify additional flags to pass to linker],
Damien Millere37bfc12000-06-05 09:37:43 +1000475 [
476 if test "x$withval" != "xno" ; then
477 LDFLAGS="$LDFLAGS $withval"
478 fi
479 ]
480)
481AC_ARG_WITH(libs,
482 [ --with-libs Specify additional libraries to link with],
483 [
484 if test "x$withval" != "xno" ; then
485 LIBS="$LIBS $withval"
486 fi
487 ]
488)
489
Darren Tucker6eb93042003-06-29 21:30:41 +1000490AC_MSG_CHECKING(compiler and flags for sanity)
491AC_TRY_RUN([
492#include <stdio.h>
493int main(){exit(0);}
494 ],
495 [ AC_MSG_RESULT(yes) ],
496 [
497 AC_MSG_RESULT(no)
498 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
499 ]
500)
501
Tim Rice4cec93f2002-02-26 08:40:48 -0800502# Checks for header files.
Damien Miller5fe46a42003-06-05 09:53:31 +1000503AC_CHECK_HEADERS(bstring.h crypt.h endian.h features.h floatingpoint.h \
Darren Tuckerc82afd52003-09-11 14:42:55 +1000504 getopt.h glob.h ia.h lastlog.h limits.h login.h \
Tim Rice4cec93f2002-02-26 08:40:48 -0800505 login_cap.h maillock.h netdb.h netgroup.h \
Damien Miller0f47c532004-01-02 18:01:30 +1100506 netinet/in_systm.h pam/pam_appl.h paths.h pty.h readpassphrase.h \
Ben Lindstrom7577fd82002-03-08 03:11:07 +0000507 rpc/types.h security/pam_appl.h shadow.h stddef.h stdint.h \
Darren Tuckera0c0b632003-07-08 20:52:12 +1000508 strings.h sys/strtio.h sys/audit.h sys/bitypes.h sys/bsdtty.h \
Damien Miller6c4914a2004-03-03 11:08:59 +1100509 sys/cdefs.h sys/mman.h sys/prctl.h sys/pstat.h sys/ptms.h \
510 sys/select.h sys/stat.h sys/stream.h sys/stropts.h \
511 sys/sysmacros.h sys/time.h sys/timers.h sys/un.h time.h tmpdir.h \
512 ttyent.h usersec.h util.h utime.h utmp.h utmpx.h vis.h)
Tim Rice4cec93f2002-02-26 08:40:48 -0800513
Damien Millera22ba012000-03-02 23:09:20 +1100514# Checks for libraries.
Tim Rice13aae5e2001-10-21 17:53:58 -0700515AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
516AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000517
Damien Millerdf288022001-02-18 13:07:07 +1100518dnl SCO OS3 needs this for libwrap
Tim Rice13aae5e2001-10-21 17:53:58 -0700519if test "x$with_tcp_wrappers" != "xno" ; then
520 if test "x$do_sco3_extra_lib_check" = "xyes" ; then
521 AC_CHECK_LIB(rpc, innetgr, LIBS="-lrpc -lyp -lrpc $LIBS" , , -lyp -lrpc)
522 fi
523fi
Damien Millerdf288022001-02-18 13:07:07 +1100524
Tim Rice1e1ef642003-09-11 22:19:31 -0700525dnl IRIX and Solaris 2.5.1 have dirname() in libgen
526AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
527 AC_CHECK_LIB(gen, dirname,[
528 AC_CACHE_CHECK([for broken dirname],
529 ac_cv_have_broken_dirname, [
530 save_LIBS="$LIBS"
531 LIBS="$LIBS -lgen"
532 AC_TRY_RUN(
533 [
534#include <libgen.h>
535#include <string.h>
536
537int main(int argc, char **argv) {
538 char *s, buf[32];
539
540 strncpy(buf,"/etc", 32);
541 s = dirname(buf);
542 if (!s || strncmp(s, "/", 32) != 0) {
543 exit(1);
544 } else {
545 exit(0);
546 }
547}
548 ],
549 [ ac_cv_have_broken_dirname="no" ],
550 [ ac_cv_have_broken_dirname="yes" ]
551 )
552 LIBS="$save_LIBS"
553 ])
554 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
555 LIBS="$LIBS -lgen"
556 AC_DEFINE(HAVE_DIRNAME)
557 AC_CHECK_HEADERS(libgen.h)
558 fi
559 ])
560])
561
562AC_CHECK_FUNC(getspnam, ,
563 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
564AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME))
565
Tim Rice13aae5e2001-10-21 17:53:58 -0700566dnl zlib is required
567AC_ARG_WITH(zlib,
568 [ --with-zlib=PATH Use zlib in PATH],
569 [
Kevin Steves7dc81972002-01-22 21:59:31 +0000570 if test "x$withval" = "xno" ; then
Damien Miller6c21c512002-01-22 21:57:53 +1100571 AC_MSG_ERROR([*** zlib is required ***])
572 fi
Tim Rice13aae5e2001-10-21 17:53:58 -0700573 if test -d "$withval/lib"; then
574 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700575 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700576 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700577 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700578 fi
579 else
580 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700581 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700582 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700583 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700584 fi
585 fi
586 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700587 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700588 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700589 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700590 fi
591 ]
592)
593
Tim Ricefcb62202004-01-23 18:35:16 -0800594AC_CHECK_LIB(z, deflate, ,
595 [
596 saved_CPPFLAGS="$CPPFLAGS"
597 saved_LDFLAGS="$LDFLAGS"
598 save_LIBS="$LIBS"
599 dnl Check default zlib install dir
600 if test -n "${need_dash_r}"; then
601 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
602 else
603 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
604 fi
605 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
606 LIBS="$LIBS -lz"
607 AC_TRY_LINK_FUNC(deflate, AC_DEFINE(HAVE_LIBZ),
608 [
609 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
610 ]
611 )
612 ]
613)
Darren Tucker2dcd2392004-01-23 17:13:33 +1100614AC_CHECK_HEADER([zlib.h], ,AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***]))
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100615
616AC_ARG_WITH(zlib-version-check,
617 [ --without-zlib-version-check Disable zlib version check],
618 [ if test "x$withval" = "xno" ; then
619 zlib_check_nonfatal=1
620 fi
621 ]
622)
623
Darren Tucker2dcd2392004-01-23 17:13:33 +1100624AC_MSG_CHECKING(for zlib 1.1.4 or greater)
625AC_TRY_RUN([
626#include <zlib.h>
627int main()
628{
629 int a, b, c, v;
630 if (sscanf(ZLIB_VERSION, "%d.%d.%d", &a, &b, &c) != 3)
631 exit(1);
632 v = a*1000000 + b*1000 + c;
633 if (v >= 1001004)
634 exit(0);
635 exit(2);
636}
637 ],
638 AC_MSG_RESULT(yes),
639 [ AC_MSG_RESULT(no)
Darren Tuckerdcc736b2004-01-30 14:20:59 +1100640 if test -z "$zlib_check_nonfatal" ; then
641 AC_MSG_ERROR([*** zlib too old - check config.log ***
642Your reported zlib version has known security problems. It's possible your
643vendor has fixed these problems without changing the version number. If you
644are sure this is the case, you can disable the check by running
645"./configure --without-zlib-version-check".
646If you are in doubt, upgrade zlib to version 1.1.4 or greater.])
647 else
648 AC_MSG_WARN([zlib version may have security problems])
649 fi
650 ]
Darren Tucker2dcd2392004-01-23 17:13:33 +1100651)
Damien Miller6f9c3372000-10-25 10:06:04 +1100652
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000653dnl UnixWare 2.x
Damien Millera8e06ce2003-11-21 23:48:55 +1100654AC_CHECK_FUNC(strcasecmp,
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000655 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
656)
Damien Millera8e06ce2003-11-21 23:48:55 +1100657AC_CHECK_FUNC(utimes,
Tim Ricecbb90662002-07-08 19:17:10 -0700658 [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
659 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000660)
Damien Millerab18c411999-11-11 10:40:23 +1100661
Tim Ricee589a292001-11-03 11:09:32 -0800662dnl Checks for libutil functions
663AC_CHECK_HEADERS(libutil.h)
664AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN)])
665AC_CHECK_FUNCS(logout updwtmp logwtmp)
666
Ben Lindstrom8697e082001-02-24 21:41:10 +0000667AC_FUNC_STRFTIME
668
Damien Miller3c027682001-03-14 11:39:45 +1100669# Check for ALTDIRFUNC glob() extension
670AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
671AC_EGREP_CPP(FOUNDIT,
672 [
673 #include <glob.h>
674 #ifdef GLOB_ALTDIRFUNC
675 FOUNDIT
676 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +1100677 ],
Damien Miller3c027682001-03-14 11:39:45 +1100678 [
679 AC_DEFINE(GLOB_HAS_ALTDIRFUNC)
680 AC_MSG_RESULT(yes)
681 ],
682 [
683 AC_MSG_RESULT(no)
684 ]
685)
Damien Millerab18c411999-11-11 10:40:23 +1100686
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000687# Check for g.gl_matchc glob() extension
688AC_MSG_CHECKING(for gl_matchc field in glob_t)
689AC_EGREP_CPP(FOUNDIT,
Damien Millera8e06ce2003-11-21 23:48:55 +1100690 [
691 #include <glob.h>
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000692 int main(void){glob_t g; g.gl_matchc = 1;}
Damien Millera8e06ce2003-11-21 23:48:55 +1100693 ],
694 [
695 AC_DEFINE(GLOB_HAS_GL_MATCHC)
696 AC_MSG_RESULT(yes)
697 ],
698 [
699 AC_MSG_RESULT(no)
700 ]
Ben Lindstrom45b14db2001-03-17 01:15:38 +0000701)
702
Damien Miller18bb4732001-03-28 14:35:30 +1000703AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
704AC_TRY_RUN(
705 [
706#include <sys/types.h>
707#include <dirent.h>
Tim Rice2c961ce2002-09-23 16:54:10 -0700708int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
Damien Miller18bb4732001-03-28 14:35:30 +1000709 ],
Damien Millera8e06ce2003-11-21 23:48:55 +1100710 [AC_MSG_RESULT(yes)],
Damien Miller18bb4732001-03-28 14:35:30 +1000711 [
712 AC_MSG_RESULT(no)
713 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
714 ]
715)
716
Damien Millerc547bf12001-02-16 10:18:12 +1100717# Check whether user wants S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +1100718SKEY_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +1100719AC_ARG_WITH(skey,
Tim Rice13aae5e2001-10-21 17:53:58 -0700720 [ --with-skey[[=PATH]] Enable S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +1100721 (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +1100722 [
723 if test "x$withval" != "xno" ; then
724
725 if test "x$withval" != "xyes" ; then
726 CPPFLAGS="$CPPFLAGS -I${withval}/include"
727 LDFLAGS="$LDFLAGS -L${withval}/lib"
728 fi
729
730 AC_DEFINE(SKEY)
731 LIBS="-lskey $LIBS"
Damien Millera8e06ce2003-11-21 23:48:55 +1100732 SKEY_MSG="yes"
Damien Millerc547bf12001-02-16 10:18:12 +1100733
Tim Rice4cec93f2002-02-26 08:40:48 -0800734 AC_MSG_CHECKING([for s/key support])
735 AC_TRY_RUN(
Damien Millerc547bf12001-02-16 10:18:12 +1100736 [
Tim Rice4cec93f2002-02-26 08:40:48 -0800737#include <stdio.h>
738#include <skey.h>
Tim Rice2c961ce2002-09-23 16:54:10 -0700739int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
Tim Rice4cec93f2002-02-26 08:40:48 -0800740 ],
741 [AC_MSG_RESULT(yes)],
742 [
743 AC_MSG_RESULT(no)
Damien Millerc547bf12001-02-16 10:18:12 +1100744 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
745 ])
746 fi
747 ]
748)
749
750# Check whether user wants TCP wrappers support
Tim Rice13aae5e2001-10-21 17:53:58 -0700751TCPW_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +1100752AC_ARG_WITH(tcp-wrappers,
Tim Rice13aae5e2001-10-21 17:53:58 -0700753 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support
Damien Millera8e06ce2003-11-21 23:48:55 +1100754 (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +1100755 [
756 if test "x$withval" != "xno" ; then
757 saved_LIBS="$LIBS"
Tim Rice13aae5e2001-10-21 17:53:58 -0700758 saved_LDFLAGS="$LDFLAGS"
759 saved_CPPFLAGS="$CPPFLAGS"
760 if test -n "${withval}" -a "${withval}" != "yes"; then
761 if test -d "${withval}/lib"; then
762 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700763 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700764 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700765 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700766 fi
767 else
768 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700769 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700770 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700771 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700772 fi
773 fi
774 if test -d "${withval}/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700775 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700776 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700777 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700778 fi
Tim Rice13aae5e2001-10-21 17:53:58 -0700779 fi
Tim Rice4cec93f2002-02-26 08:40:48 -0800780 LIBWRAP="-lwrap"
781 LIBS="$LIBWRAP $LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +1100782 AC_MSG_CHECKING(for libwrap)
783 AC_TRY_LINK(
784 [
785#include <tcpd.h>
786 int deny_severity = 0, allow_severity = 0;
787 ],
788 [hosts_access(0);],
789 [
790 AC_MSG_RESULT(yes)
791 AC_DEFINE(LIBWRAP)
Tim Rice4cec93f2002-02-26 08:40:48 -0800792 AC_SUBST(LIBWRAP)
Tim Rice13aae5e2001-10-21 17:53:58 -0700793 TCPW_MSG="yes"
Damien Millerc547bf12001-02-16 10:18:12 +1100794 ],
795 [
796 AC_MSG_ERROR([*** libwrap missing])
797 ]
798 )
Tim Rice4cec93f2002-02-26 08:40:48 -0800799 LIBS="$saved_LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +1100800 fi
801 ]
802)
803
Damien Millerfe1f1432003-02-24 15:45:42 +1100804dnl Checks for library functions. Please keep in alphabetical order
805AC_CHECK_FUNCS(\
Damien Millerf09ad862003-09-19 16:41:01 +1000806 arc4random __b64_ntop b64_ntop __b64_pton b64_pton \
Damien Miller5fe46a42003-06-05 09:53:31 +1000807 bcopy bindresvport_sa clock fchmod fchown freeaddrinfo futimes \
Darren Tuckerd5e082f2003-09-22 12:08:23 +1000808 getaddrinfo getcwd getgrouplist getnameinfo getopt \
Darren Tuckerf1159b52003-07-07 19:44:01 +1000809 getpeereid _getpty getrlimit getttyent glob inet_aton \
Damien Millerfe1f1432003-02-24 15:45:42 +1100810 inet_ntoa inet_ntop innetgr login_getcapbool md5_crypt memmove \
Damien Miller1340ec22003-05-20 09:24:42 +1000811 mkdtemp mmap ngetaddrinfo nsleep ogetaddrinfo openlog_r openpty \
Damien Miller6c4914a2004-03-03 11:08:59 +1100812 pstat prctl readpassphrase realpath recvmsg rresvport_af sendmsg \
Damien Miller1340ec22003-05-20 09:24:42 +1000813 setdtablesize setegid setenv seteuid setgroups setlogin setpcred \
Darren Tucker2a6b0292003-12-31 14:59:17 +1100814 setproctitle setregid setreuid setrlimit \
Damien Miller5fe46a42003-06-05 09:53:31 +1000815 setsid setvbuf sigaction sigvec snprintf socketpair strerror \
Darren Tucker2e8c0cc2003-10-07 17:49:56 +1000816 strlcat strlcpy strmode strnvis strtoul sysconf tcgetpgrp \
Darren Tucker86c093d2004-03-08 22:59:03 +1100817 truncate unsetenv updwtmpx utimes vhangup vsnprintf waitpid \
Damien Millerfe1f1432003-02-24 15:45:42 +1100818)
Tim Rice13aae5e2001-10-21 17:53:58 -0700819
Darren Tuckerd5e082f2003-09-22 12:08:23 +1000820# IRIX has a const char return value for gai_strerror()
821AC_CHECK_FUNCS(gai_strerror,[
822 AC_DEFINE(HAVE_GAI_STRERROR)
823 AC_TRY_COMPILE([
824#include <sys/types.h>
825#include <sys/socket.h>
826#include <netdb.h>
827
828const char *gai_strerror(int);],[
829char *str;
830
831str = gai_strerror(0);],[
832 AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1,
833 [Define if gai_strerror() returns const char *])])])
834
Damien Millercd6853c2003-01-28 11:33:42 +1100835AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP))
836
Darren Tuckerf1159b52003-07-07 19:44:01 +1000837dnl Make sure prototypes are defined for these before using them.
Ben Lindstrom3e006472002-10-16 00:24:03 +0000838AC_CHECK_DECL(strsep, [AC_CHECK_FUNCS(strsep)])
Darren Tuckerf1159b52003-07-07 19:44:01 +1000839AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
Ben Lindstrom3e006472002-10-16 00:24:03 +0000840
Darren Tuckerb2427c82003-09-10 15:22:44 +1000841dnl tcsendbreak might be a macro
842AC_CHECK_DECL(tcsendbreak,
843 [AC_DEFINE(HAVE_TCSENDBREAK)],
Damien Millera8e06ce2003-11-21 23:48:55 +1100844 [AC_CHECK_FUNCS(tcsendbreak)],
Darren Tuckerb2427c82003-09-10 15:22:44 +1000845 [#include <termios.h>]
846)
847
Darren Tucker2a6b0292003-12-31 14:59:17 +1100848AC_CHECK_FUNCS(setresuid, [
849 dnl Some platorms have setresuid that isn't implemented, test for this
850 AC_MSG_CHECKING(if setresuid seems to work)
851 AC_TRY_RUN([
Darren Tuckere937be32003-12-17 18:53:26 +1100852#include <stdlib.h>
853#include <errno.h>
854int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker2a6b0292003-12-31 14:59:17 +1100855 ],
856 [AC_MSG_RESULT(yes)],
Darren Tuckerfd0894a2004-01-09 00:19:25 +1100857 [AC_DEFINE(BROKEN_SETRESUID)
Darren Tucker2a6b0292003-12-31 14:59:17 +1100858 AC_MSG_RESULT(not implemented)]
859 )
860])
Darren Tuckere937be32003-12-17 18:53:26 +1100861
Darren Tucker2a6b0292003-12-31 14:59:17 +1100862AC_CHECK_FUNCS(setresgid, [
863 dnl Some platorms have setresgid that isn't implemented, test for this
864 AC_MSG_CHECKING(if setresgid seems to work)
865 AC_TRY_RUN([
Darren Tuckere937be32003-12-17 18:53:26 +1100866#include <stdlib.h>
867#include <errno.h>
868int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker2a6b0292003-12-31 14:59:17 +1100869 ],
870 [AC_MSG_RESULT(yes)],
871 [AC_DEFINE(BROKEN_SETRESGID)
872 AC_MSG_RESULT(not implemented)]
873 )
874])
Darren Tuckere937be32003-12-17 18:53:26 +1100875
Damien Millerad833b32000-08-23 10:46:23 +1000876dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +0000877AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +1000878dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000879AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +0000880AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +1000881dnl Checks for utmpx functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000882AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
andre2ff7b5d2000-06-03 14:57:40 +0000883AC_CHECK_FUNCS(setutxent utmpxname)
Damien Millercedfecc1999-11-15 14:36:53 +1100884
Damien Millera8e06ce2003-11-21 23:48:55 +1100885AC_CHECK_FUNC(daemon,
Damien Miller04f80141999-11-19 15:32:34 +1100886 [AC_DEFINE(HAVE_DAEMON)],
887 [AC_CHECK_LIB(bsd, daemon, [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
888)
889
Damien Millera8e06ce2003-11-21 23:48:55 +1100890AC_CHECK_FUNC(getpagesize,
Damien Miller9fb07e42000-03-05 16:22:59 +1100891 [AC_DEFINE(HAVE_GETPAGESIZE)],
892 [AC_CHECK_LIB(ucb, getpagesize, [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
893)
894
Damien Millercb170cb2000-07-01 16:52:55 +1000895# Check for broken snprintf
896if test "x$ac_cv_func_snprintf" = "xyes" ; then
897 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
898 AC_TRY_RUN(
899 [
900#include <stdio.h>
Tim Rice2c961ce2002-09-23 16:54:10 -0700901int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
Damien Millercb170cb2000-07-01 16:52:55 +1000902 ],
Damien Millera8e06ce2003-11-21 23:48:55 +1100903 [AC_MSG_RESULT(yes)],
Damien Millercb170cb2000-07-01 16:52:55 +1000904 [
905 AC_MSG_RESULT(no)
906 AC_DEFINE(BROKEN_SNPRINTF)
907 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
908 ]
909 )
910fi
911
Damien Millere8328192003-01-07 15:18:32 +1100912dnl see whether mkstemp() requires XXXXXX
913if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
914AC_MSG_CHECKING([for (overly) strict mkstemp])
915AC_TRY_RUN(
916 [
917#include <stdlib.h>
918main() { char template[]="conftest.mkstemp-test";
919if (mkstemp(template) == -1)
920 exit(1);
921unlink(template); exit(0);
922}
923 ],
924 [
925 AC_MSG_RESULT(no)
926 ],
Damien Millera8e06ce2003-11-21 23:48:55 +1100927 [
Damien Millere8328192003-01-07 15:18:32 +1100928 AC_MSG_RESULT(yes)
929 AC_DEFINE(HAVE_STRICT_MKSTEMP)
930 ],
931 [
932 AC_MSG_RESULT(yes)
933 AC_DEFINE(HAVE_STRICT_MKSTEMP)
Damien Millera8e06ce2003-11-21 23:48:55 +1100934 ]
Damien Millere8328192003-01-07 15:18:32 +1100935)
936fi
937
Darren Tucker70a3d552003-08-21 17:58:29 +1000938dnl make sure that openpty does not reacquire controlling terminal
939if test ! -z "$check_for_openpty_ctty_bug"; then
940 AC_MSG_CHECKING(if openpty correctly handles controlling tty)
941 AC_TRY_RUN(
942 [
943#include <stdio.h>
944#include <sys/fcntl.h>
945#include <sys/types.h>
946#include <sys/wait.h>
947
948int
949main()
950{
951 pid_t pid;
952 int fd, ptyfd, ttyfd, status;
953
954 pid = fork();
955 if (pid < 0) { /* failed */
956 exit(1);
957 } else if (pid > 0) { /* parent */
958 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +1100959 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +1000960 exit(WEXITSTATUS(status));
961 else
962 exit(2);
963 } else { /* child */
964 close(0); close(1); close(2);
965 setsid();
966 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
967 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
968 if (fd >= 0)
969 exit(3); /* Acquired ctty: broken */
970 else
971 exit(0); /* Did not acquire ctty: OK */
972 }
973}
974 ],
975 [
976 AC_MSG_RESULT(yes)
977 ],
978 [
979 AC_MSG_RESULT(no)
980 AC_DEFINE(SSHD_ACQUIRES_CTTY)
981 ]
982 )
983fi
984
Darren Tucker4398cf52004-04-06 21:39:02 +1000985check_for_hpux_broken_getaddrinfo=1
986
987if test "x$ac_cv_func_getaddrinfo" = "xyes" -a "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
988 AC_MSG_CHECKING(if getaddrinfo seems to work)
989 AC_TRY_RUN(
990 [
991#include <stdio.h>
992#include <sys/socket.h>
993#include <netdb.h>
994#include <errno.h>
995#include <netinet/in.h>
996
997#define TEST_PORT "2222"
998
999int
1000main(void)
1001{
1002 int err, sock;
1003 struct addrinfo *gai_ai, *ai, hints;
1004 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1005
1006 memset(&hints, 0, sizeof(hints));
1007 hints.ai_family = PF_UNSPEC;
1008 hints.ai_socktype = SOCK_STREAM;
1009 hints.ai_flags = AI_PASSIVE;
1010
1011 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1012 if (err != 0) {
1013 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1014 exit(1);
1015 }
1016
1017 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1018 if (ai->ai_family != AF_INET6)
1019 continue;
1020
1021 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1022 sizeof(ntop), strport, sizeof(strport),
1023 NI_NUMERICHOST|NI_NUMERICSERV);
1024
1025 if (err != 0) {
1026 if (err == EAI_SYSTEM)
1027 perror("getnameinfo EAI_SYSTEM");
1028 else
1029 fprintf(stderr, "getnameinfo failed: %s\n",
1030 gai_strerror(err));
1031 exit(2);
1032 }
1033
1034 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1035 if (sock < 0)
1036 perror("socket");
1037 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1038 if (errno == EBADF)
1039 exit(3);
1040 }
1041 }
1042 exit(0);
1043}
1044 ],
1045 [
1046 AC_MSG_RESULT(yes)
1047 ],
1048 [
1049 AC_MSG_RESULT(no)
1050 AC_DEFINE(BROKEN_GETADDRINFO)
1051 ]
1052 )
1053fi
1054
Damien Miller606f8802000-09-16 15:39:56 +11001055AC_FUNC_GETPGRP
1056
Damien Millera64b57a2001-01-17 10:44:13 +11001057# Check for PAM libs
Damien Miller7b22d652000-06-18 14:07:04 +10001058PAM_MSG="no"
Damien Millera22ba012000-03-02 23:09:20 +11001059AC_ARG_WITH(pam,
Damien Millera64b57a2001-01-17 10:44:13 +11001060 [ --with-pam Enable PAM support ],
Damien Millera22ba012000-03-02 23:09:20 +11001061 [
Damien Millera64b57a2001-01-17 10:44:13 +11001062 if test "x$withval" != "xno" ; then
Damien Miller0f47c532004-01-02 18:01:30 +11001063 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
1064 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
Damien Millera64b57a2001-01-17 10:44:13 +11001065 AC_MSG_ERROR([PAM headers not found])
1066 fi
1067
1068 AC_CHECK_LIB(dl, dlopen, , )
1069 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
1070 AC_CHECK_FUNCS(pam_getenvlist)
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001071 AC_CHECK_FUNCS(pam_putenv)
Damien Millera64b57a2001-01-17 10:44:13 +11001072
Damien Millera64b57a2001-01-17 10:44:13 +11001073 PAM_MSG="yes"
1074
1075 AC_DEFINE(USE_PAM)
Tim Rice7d2d1f12002-02-26 22:05:11 -08001076 if test $ac_cv_lib_dl_dlopen = yes; then
1077 LIBPAM="-lpam -ldl"
1078 else
1079 LIBPAM="-lpam"
1080 fi
1081 AC_SUBST(LIBPAM)
Damien Millera22ba012000-03-02 23:09:20 +11001082 fi
1083 ]
1084)
Damien Millera22ba012000-03-02 23:09:20 +11001085
Damien Millera64b57a2001-01-17 10:44:13 +11001086# Check for older PAM
1087if test "x$PAM_MSG" = "xyes" ; then
Damien Millera22ba012000-03-02 23:09:20 +11001088 # Check PAM strerror arguments (old PAM)
1089 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
1090 AC_TRY_COMPILE(
1091 [
Damien Miller81171112000-04-23 11:14:01 +10001092#include <stdlib.h>
Damien Miller0f47c532004-01-02 18:01:30 +11001093#if defined(HAVE_SECURITY_PAM_APPL_H)
Damien Miller81171112000-04-23 11:14:01 +10001094#include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +11001095#elif defined (HAVE_PAM_PAM_APPL_H)
1096#include <pam/pam_appl.h>
1097#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001098 ],
1099 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
Damien Millera22ba012000-03-02 23:09:20 +11001100 [AC_MSG_RESULT(no)],
1101 [
1102 AC_DEFINE(HAVE_OLD_PAM)
1103 AC_MSG_RESULT(yes)
Damien Miller7b22d652000-06-18 14:07:04 +10001104 PAM_MSG="yes (old library)"
Damien Millera22ba012000-03-02 23:09:20 +11001105 ]
Damien Millera64b57a2001-01-17 10:44:13 +11001106 )
Damien Millera22ba012000-03-02 23:09:20 +11001107fi
1108
Tim Riceaef73712002-05-11 13:17:42 -07001109# Search for OpenSSL
1110saved_CPPFLAGS="$CPPFLAGS"
1111saved_LDFLAGS="$LDFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +11001112AC_ARG_WITH(ssl-dir,
1113 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
1114 [
Ben Lindstrom23e13712000-10-29 22:49:19 +00001115 if test "x$withval" != "xno" ; then
Tim Riceaef73712002-05-11 13:17:42 -07001116 if test -d "$withval/lib"; then
1117 if test -n "${need_dash_r}"; then
1118 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1119 else
1120 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1121 fi
1122 else
1123 if test -n "${need_dash_r}"; then
1124 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
1125 else
1126 LDFLAGS="-L${withval} ${LDFLAGS}"
1127 fi
1128 fi
1129 if test -d "$withval/include"; then
1130 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
1131 else
1132 CPPFLAGS="-I${withval} ${CPPFLAGS}"
1133 fi
Damien Millera22ba012000-03-02 23:09:20 +11001134 fi
1135 ]
1136)
Tim Rice3d5352e2004-02-12 09:27:21 -08001137LIBS="-lcrypto $LIBS"
Tim Riceaef73712002-05-11 13:17:42 -07001138AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
Damien Miller3b512e12000-05-17 23:29:18 +10001139 [
Tim Riceaef73712002-05-11 13:17:42 -07001140 dnl Check default openssl install dir
1141 if test -n "${need_dash_r}"; then
1142 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001143 else
Tim Riceaef73712002-05-11 13:17:42 -07001144 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001145 fi
Tim Riceaef73712002-05-11 13:17:42 -07001146 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
1147 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
1148 [
1149 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
1150 ]
1151 )
1152 ]
1153)
1154
Tim Riced730b782002-08-13 18:52:10 -07001155# Determine OpenSSL header version
1156AC_MSG_CHECKING([OpenSSL header version])
1157AC_TRY_RUN(
1158 [
1159#include <stdio.h>
1160#include <string.h>
1161#include <openssl/opensslv.h>
1162#define DATA "conftest.sslincver"
1163int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001164 FILE *fd;
1165 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001166
Damien Millera8e06ce2003-11-21 23:48:55 +11001167 fd = fopen(DATA,"w");
1168 if(fd == NULL)
1169 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001170
1171 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
1172 exit(1);
1173
1174 exit(0);
1175}
1176 ],
1177 [
1178 ssl_header_ver=`cat conftest.sslincver`
1179 AC_MSG_RESULT($ssl_header_ver)
1180 ],
1181 [
1182 AC_MSG_RESULT(not found)
1183 AC_MSG_ERROR(OpenSSL version header not found.)
1184 ]
1185)
1186
1187# Determine OpenSSL library version
1188AC_MSG_CHECKING([OpenSSL library version])
1189AC_TRY_RUN(
1190 [
1191#include <stdio.h>
1192#include <string.h>
1193#include <openssl/opensslv.h>
1194#include <openssl/crypto.h>
1195#define DATA "conftest.ssllibver"
1196int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001197 FILE *fd;
1198 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001199
Damien Millera8e06ce2003-11-21 23:48:55 +11001200 fd = fopen(DATA,"w");
1201 if(fd == NULL)
1202 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001203
1204 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
1205 exit(1);
1206
1207 exit(0);
1208}
1209 ],
1210 [
1211 ssl_library_ver=`cat conftest.ssllibver`
1212 AC_MSG_RESULT($ssl_library_ver)
1213 ],
1214 [
1215 AC_MSG_RESULT(not found)
1216 AC_MSG_ERROR(OpenSSL library not found.)
1217 ]
1218)
Damien Millera22ba012000-03-02 23:09:20 +11001219
Damien Millerec932372002-01-22 22:16:03 +11001220# Sanity check OpenSSL headers
1221AC_MSG_CHECKING([whether OpenSSL's headers match the library])
1222AC_TRY_RUN(
1223 [
1224#include <string.h>
1225#include <openssl/opensslv.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001226int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
Damien Millerec932372002-01-22 22:16:03 +11001227 ],
1228 [
1229 AC_MSG_RESULT(yes)
1230 ],
1231 [
1232 AC_MSG_RESULT(no)
Darren Tuckera0472e02003-06-24 20:22:09 +10001233 AC_MSG_ERROR([Your OpenSSL headers do not match your library.
1234Check config.log for details.
1235Also see contrib/findssl.sh for help identifying header/library mismatches.])
Damien Millerec932372002-01-22 22:16:03 +11001236 ]
1237)
1238
Tim Rice3d5352e2004-02-12 09:27:21 -08001239# Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
1240# because the system crypt() is more featureful.
1241if test "x$check_for_libcrypt_before" = "x1"; then
1242 AC_CHECK_LIB(crypt, crypt)
1243fi
1244
Damien Millera8e06ce2003-11-21 23:48:55 +11001245# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
Tim Rice43fa5572004-02-11 14:46:40 -08001246# version in OpenSSL.
Damien Miller4f9f42a2003-05-10 19:28:02 +10001247if test "x$check_for_libcrypt_later" = "x1"; then
Damien Miller95aa2d62001-03-01 09:16:11 +11001248 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
Damien Millera64b57a2001-01-17 10:44:13 +11001249fi
1250
Damien Miller6c21c512002-01-22 21:57:53 +11001251
1252### Configure cryptographic random number support
1253
1254# Check wheter OpenSSL seeds itself
1255AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
1256AC_TRY_RUN(
1257 [
1258#include <string.h>
1259#include <openssl/rand.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001260int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
Damien Miller6c21c512002-01-22 21:57:53 +11001261 ],
1262 [
1263 OPENSSL_SEEDS_ITSELF=yes
1264 AC_MSG_RESULT(yes)
1265 ],
1266 [
1267 AC_MSG_RESULT(no)
1268 # Default to use of the rand helper if OpenSSL doesn't
1269 # seed itself
1270 USE_RAND_HELPER=yes
1271 ]
1272)
1273
1274
1275# Do we want to force the use of the rand helper?
1276AC_ARG_WITH(rand-helper,
1277 [ --with-rand-helper Use subprocess to gather strong randomness ],
1278 [
1279 if test "x$withval" = "xno" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11001280 # Force use of OpenSSL's internal RNG, even if
Damien Miller6c21c512002-01-22 21:57:53 +11001281 # the previous test showed it to be unseeded.
1282 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
1283 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
1284 OPENSSL_SEEDS_ITSELF=yes
1285 USE_RAND_HELPER=""
1286 fi
1287 else
1288 USE_RAND_HELPER=yes
1289 fi
1290 ],
1291)
1292
1293# Which randomness source do we use?
1294if test ! -z "$OPENSSL_SEEDS_ITSELF" -a -z "$USE_RAND_HELPER" ; then
1295 # OpenSSL only
1296 AC_DEFINE(OPENSSL_PRNG_ONLY)
1297 RAND_MSG="OpenSSL internal ONLY"
1298 INSTALL_SSH_RAND_HELPER=""
Tim Rice1e2c6002002-01-30 22:14:03 -08001299elif test ! -z "$USE_RAND_HELPER" ; then
1300 # install rand helper
Damien Miller6c21c512002-01-22 21:57:53 +11001301 RAND_MSG="ssh-rand-helper"
1302 INSTALL_SSH_RAND_HELPER="yes"
1303fi
1304AC_SUBST(INSTALL_SSH_RAND_HELPER)
1305
1306### Configuration of ssh-rand-helper
1307
1308# PRNGD TCP socket
1309AC_ARG_WITH(prngd-port,
1310 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
1311 [
Damien Millere996d722002-01-23 11:20:59 +11001312 case "$withval" in
1313 no)
1314 withval=""
1315 ;;
1316 [[0-9]]*)
1317 ;;
1318 *)
1319 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
1320 ;;
1321 esac
1322 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001323 PRNGD_PORT="$withval"
1324 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT)
1325 fi
1326 ]
1327)
1328
1329# PRNGD Unix domain socket
1330AC_ARG_WITH(prngd-socket,
1331 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
1332 [
Damien Millere996d722002-01-23 11:20:59 +11001333 case "$withval" in
1334 yes)
Damien Miller6c21c512002-01-22 21:57:53 +11001335 withval="/var/run/egd-pool"
Damien Millere996d722002-01-23 11:20:59 +11001336 ;;
1337 no)
1338 withval=""
1339 ;;
1340 /*)
1341 ;;
1342 *)
1343 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
1344 ;;
1345 esac
1346
1347 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001348 if test ! -z "$PRNGD_PORT" ; then
1349 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
1350 fi
Damien Miller6385ba02002-01-23 08:12:36 +11001351 if test ! -r "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11001352 AC_MSG_WARN(Entropy socket is not readable)
1353 fi
1354 PRNGD_SOCKET="$withval"
1355 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
1356 fi
Tim Rice4cec93f2002-02-26 08:40:48 -08001357 ],
1358 [
1359 # Check for existing socket only if we don't have a random device already
1360 if test "$USE_RAND_HELPER" = yes ; then
1361 AC_MSG_CHECKING(for PRNGD/EGD socket)
1362 # Insert other locations here
1363 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
1364 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
1365 PRNGD_SOCKET="$sock"
1366 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
1367 break;
1368 fi
1369 done
1370 if test ! -z "$PRNGD_SOCKET" ; then
1371 AC_MSG_RESULT($PRNGD_SOCKET)
1372 else
1373 AC_MSG_RESULT(not found)
1374 fi
1375 fi
Damien Miller6c21c512002-01-22 21:57:53 +11001376 ]
1377)
1378
1379# Change default command timeout for hashing entropy source
1380entropy_timeout=200
1381AC_ARG_WITH(entropy-timeout,
1382 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
1383 [
1384 if test "x$withval" != "xno" ; then
1385 entropy_timeout=$withval
1386 fi
1387 ]
1388)
Damien Miller6c21c512002-01-22 21:57:53 +11001389AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1390
Damien Millerd3f6ad22002-06-25 10:24:47 +10001391SSH_PRIVSEP_USER=sshd
Kevin Steves7ff91122002-04-07 19:22:54 +00001392AC_ARG_WITH(privsep-user,
Kevin Stevesc81e1292002-05-13 03:51:40 +00001393 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00001394 [
1395 if test -n "$withval"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10001396 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00001397 fi
1398 ]
1399)
Damien Millerd3f6ad22002-06-25 10:24:47 +10001400AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER")
1401AC_SUBST(SSH_PRIVSEP_USER)
Kevin Steves7ff91122002-04-07 19:22:54 +00001402
Tim Rice88f2ab52002-03-17 12:17:34 -08001403# We do this little dance with the search path to insure
1404# that programs that we select for use by installed programs
1405# (which may be run by the super-user) come from trusted
1406# locations before they come from the user's private area.
1407# This should help avoid accidentally configuring some
1408# random version of a program in someone's personal bin.
1409
1410OPATH=$PATH
1411PATH=/bin:/usr/bin
Tim Riceae49fe62002-04-12 10:26:21 -07001412test -h /bin 2> /dev/null && PATH=/usr/bin
Tim Rice88f2ab52002-03-17 12:17:34 -08001413test -d /sbin && PATH=$PATH:/sbin
1414test -d /usr/sbin && PATH=$PATH:/usr/sbin
1415PATH=$PATH:/etc:$OPATH
1416
Damien Millera8e06ce2003-11-21 23:48:55 +11001417# These programs are used by the command hashing source to gather entropy
Damien Miller6c21c512002-01-22 21:57:53 +11001418OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
1419OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
1420OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
1421OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
1422OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
1423OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
1424OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
1425OSSH_PATH_ENTROPY_PROG(PROG_W, w)
1426OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
1427OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
1428OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
1429OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
1430OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
1431OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
1432OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
1433OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
Tim Rice88f2ab52002-03-17 12:17:34 -08001434# restore PATH
1435PATH=$OPATH
Damien Miller6c21c512002-01-22 21:57:53 +11001436
1437# Where does ssh-rand-helper get its randomness from?
1438INSTALL_SSH_PRNG_CMDS=""
1439if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
1440 if test ! -z "$PRNGD_PORT" ; then
1441 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
1442 elif test ! -z "$PRNGD_SOCKET" ; then
1443 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
1444 else
1445 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
1446 RAND_HELPER_CMDHASH=yes
1447 INSTALL_SSH_PRNG_CMDS="yes"
1448 fi
1449fi
1450AC_SUBST(INSTALL_SSH_PRNG_CMDS)
1451
1452
Ben Lindstromb5628642000-10-18 00:02:25 +00001453# Cheap hack to ensure NEWS-OS libraries are arranged right.
1454if test ! -z "$SONY" ; then
1455 LIBS="$LIBS -liberty";
1456fi
1457
Damien Millera22ba012000-03-02 23:09:20 +11001458# Checks for data types
Damien Millere0f45742000-01-18 09:12:06 +11001459AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +11001460AC_CHECK_SIZEOF(short int, 2)
1461AC_CHECK_SIZEOF(int, 4)
1462AC_CHECK_SIZEOF(long int, 4)
1463AC_CHECK_SIZEOF(long long int, 8)
1464
Damien Millerfa2bb692002-04-23 23:22:25 +10001465# Sanity check long long for some platforms (AIX)
1466if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
1467 ac_cv_sizeof_long_long_int=0
1468fi
1469
Damien Millera22ba012000-03-02 23:09:20 +11001470# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11001471AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
1472 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001473 [ #include <sys/types.h> ],
1474 [ u_int a; a = 1;],
Damien Millercaf6dd62000-08-29 11:33:50 +11001475 [ ac_cv_have_u_int="yes" ],
1476 [ ac_cv_have_u_int="no" ]
1477 )
1478])
1479if test "x$ac_cv_have_u_int" = "xyes" ; then
1480 AC_DEFINE(HAVE_U_INT)
1481 have_u_int=1
1482fi
1483
Damien Miller61e50f12000-05-08 20:49:37 +10001484AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
1485 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001486 [ #include <sys/types.h> ],
1487 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10001488 [ ac_cv_have_intxx_t="yes" ],
1489 [ ac_cv_have_intxx_t="no" ]
1490 )
1491])
1492if test "x$ac_cv_have_intxx_t" = "xyes" ; then
1493 AC_DEFINE(HAVE_INTXX_T)
1494 have_intxx_t=1
1495fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001496
1497if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11001498 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001499then
1500 AC_MSG_CHECKING([for intXX_t types in stdint.h])
1501 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001502 [ #include <stdint.h> ],
1503 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001504 [
1505 AC_DEFINE(HAVE_INTXX_T)
1506 AC_MSG_RESULT(yes)
1507 ],
1508 [ AC_MSG_RESULT(no) ]
1509 )
1510fi
1511
Damien Miller578783e2000-09-23 14:12:24 +11001512AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
1513 AC_TRY_COMPILE(
Tim Rice907881e2002-07-18 11:44:50 -07001514 [
1515#include <sys/types.h>
1516#ifdef HAVE_STDINT_H
1517# include <stdint.h>
1518#endif
1519#include <sys/socket.h>
1520#ifdef HAVE_SYS_BITYPES_H
1521# include <sys/bitypes.h>
1522#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001523 ],
1524 [ int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11001525 [ ac_cv_have_int64_t="yes" ],
1526 [ ac_cv_have_int64_t="no" ]
1527 )
1528])
1529if test "x$ac_cv_have_int64_t" = "xyes" ; then
1530 AC_DEFINE(HAVE_INT64_T)
Tim Rice4cec93f2002-02-26 08:40:48 -08001531fi
1532
Damien Miller61e50f12000-05-08 20:49:37 +10001533AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
1534 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001535 [ #include <sys/types.h> ],
1536 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10001537 [ ac_cv_have_u_intxx_t="yes" ],
1538 [ ac_cv_have_u_intxx_t="no" ]
1539 )
1540])
1541if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
1542 AC_DEFINE(HAVE_U_INTXX_T)
1543 have_u_intxx_t=1
1544fi
Damien Millerc6398ef1999-11-20 12:18:40 +11001545
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001546if test -z "$have_u_intxx_t" ; then
1547 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
1548 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001549 [ #include <sys/socket.h> ],
1550 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001551 [
1552 AC_DEFINE(HAVE_U_INTXX_T)
1553 AC_MSG_RESULT(yes)
1554 ],
1555 [ AC_MSG_RESULT(no) ]
1556 )
1557fi
1558
Damien Miller578783e2000-09-23 14:12:24 +11001559AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
1560 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001561 [ #include <sys/types.h> ],
1562 [ u_int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11001563 [ ac_cv_have_u_int64_t="yes" ],
1564 [ ac_cv_have_u_int64_t="no" ]
1565 )
1566])
1567if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
1568 AC_DEFINE(HAVE_U_INT64_T)
1569 have_u_int64_t=1
1570fi
1571
Tim Rice4cec93f2002-02-26 08:40:48 -08001572if test -z "$have_u_int64_t" ; then
1573 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
1574 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001575 [ #include <sys/bitypes.h> ],
Tim Rice4cec93f2002-02-26 08:40:48 -08001576 [ u_int64_t a; a = 1],
1577 [
1578 AC_DEFINE(HAVE_U_INT64_T)
1579 AC_MSG_RESULT(yes)
1580 ],
1581 [ AC_MSG_RESULT(no) ]
1582 )
1583fi
1584
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001585if test -z "$have_u_intxx_t" ; then
1586 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
1587 AC_TRY_COMPILE(
1588 [
1589#include <sys/types.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11001590 ],
1591 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001592 [ ac_cv_have_uintxx_t="yes" ],
1593 [ ac_cv_have_uintxx_t="no" ]
1594 )
1595 ])
1596 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
1597 AC_DEFINE(HAVE_UINTXX_T)
1598 fi
1599fi
1600
1601if test -z "$have_uintxx_t" ; then
1602 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
1603 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001604 [ #include <stdint.h> ],
1605 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001606 [
1607 AC_DEFINE(HAVE_UINTXX_T)
1608 AC_MSG_RESULT(yes)
1609 ],
1610 [ AC_MSG_RESULT(no) ]
1611 )
1612fi
1613
Damien Milleredb82922000-06-20 13:25:52 +10001614if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11001615 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11001616then
1617 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
1618 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +10001619 [
1620#include <sys/bitypes.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11001621 ],
Damien Millerb29ea912000-01-15 14:12:03 +11001622 [
Damien Miller70494d12000-04-03 15:57:06 +10001623 int8_t a; int16_t b; int32_t c;
1624 u_int8_t e; u_int16_t f; u_int32_t g;
1625 a = b = c = e = f = g = 1;
Damien Millera8e06ce2003-11-21 23:48:55 +11001626 ],
Damien Millerb29ea912000-01-15 14:12:03 +11001627 [
1628 AC_DEFINE(HAVE_U_INTXX_T)
1629 AC_DEFINE(HAVE_INTXX_T)
1630 AC_MSG_RESULT(yes)
1631 ],
1632 [AC_MSG_RESULT(no)]
Damien Millera8e06ce2003-11-21 23:48:55 +11001633 )
Damien Millerb29ea912000-01-15 14:12:03 +11001634fi
1635
Damien Miller58be7382001-09-15 21:31:54 +10001636
1637AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
1638 AC_TRY_COMPILE(
1639 [
1640#include <sys/types.h>
1641 ],
1642 [ u_char foo; foo = 125; ],
1643 [ ac_cv_have_u_char="yes" ],
1644 [ ac_cv_have_u_char="no" ]
1645 )
1646])
1647if test "x$ac_cv_have_u_char" = "xyes" ; then
1648 AC_DEFINE(HAVE_U_CHAR)
1649fi
1650
Tim Rice13aae5e2001-10-21 17:53:58 -07001651TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11001652
Tim Rice200a5c02002-02-26 22:12:34 -08001653AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
Tim Rice4cec93f2002-02-26 08:40:48 -08001654
Damien Miller61e50f12000-05-08 20:49:37 +10001655AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
1656 AC_TRY_COMPILE(
1657 [
1658#include <sys/types.h>
1659 ],
1660 [ size_t foo; foo = 1235; ],
1661 [ ac_cv_have_size_t="yes" ],
1662 [ ac_cv_have_size_t="no" ]
1663 )
1664])
1665if test "x$ac_cv_have_size_t" = "xyes" ; then
1666 AC_DEFINE(HAVE_SIZE_T)
1667fi
Damien Miller95058511999-12-29 10:36:45 +11001668
Damien Miller615f9392000-05-17 22:53:33 +10001669AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
1670 AC_TRY_COMPILE(
1671 [
1672#include <sys/types.h>
1673 ],
1674 [ ssize_t foo; foo = 1235; ],
1675 [ ac_cv_have_ssize_t="yes" ],
1676 [ ac_cv_have_ssize_t="no" ]
1677 )
1678])
1679if test "x$ac_cv_have_ssize_t" = "xyes" ; then
1680 AC_DEFINE(HAVE_SSIZE_T)
1681fi
1682
Ben Lindstrom0d5af602001-01-09 00:50:29 +00001683AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
1684 AC_TRY_COMPILE(
1685 [
1686#include <time.h>
1687 ],
1688 [ clock_t foo; foo = 1235; ],
1689 [ ac_cv_have_clock_t="yes" ],
1690 [ ac_cv_have_clock_t="no" ]
1691 )
1692])
1693if test "x$ac_cv_have_clock_t" = "xyes" ; then
1694 AC_DEFINE(HAVE_CLOCK_T)
1695fi
1696
Damien Millerb54b40e2000-06-23 08:23:34 +10001697AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
1698 AC_TRY_COMPILE(
1699 [
1700#include <sys/types.h>
1701#include <sys/socket.h>
1702 ],
1703 [ sa_family_t foo; foo = 1235; ],
1704 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +11001705 [ AC_TRY_COMPILE(
1706 [
1707#include <sys/types.h>
1708#include <sys/socket.h>
1709#include <netinet/in.h>
1710 ],
1711 [ sa_family_t foo; foo = 1235; ],
1712 [ ac_cv_have_sa_family_t="yes" ],
1713
Damien Millerb54b40e2000-06-23 08:23:34 +10001714 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +11001715 )]
Damien Millerb54b40e2000-06-23 08:23:34 +10001716 )
1717])
1718if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
1719 AC_DEFINE(HAVE_SA_FAMILY_T)
1720fi
1721
Damien Miller0f91b4e2000-06-18 15:43:25 +10001722AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
1723 AC_TRY_COMPILE(
1724 [
1725#include <sys/types.h>
1726 ],
1727 [ pid_t foo; foo = 1235; ],
1728 [ ac_cv_have_pid_t="yes" ],
1729 [ ac_cv_have_pid_t="no" ]
1730 )
1731])
1732if test "x$ac_cv_have_pid_t" = "xyes" ; then
1733 AC_DEFINE(HAVE_PID_T)
1734fi
1735
1736AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
1737 AC_TRY_COMPILE(
1738 [
1739#include <sys/types.h>
1740 ],
1741 [ mode_t foo; foo = 1235; ],
1742 [ ac_cv_have_mode_t="yes" ],
1743 [ ac_cv_have_mode_t="no" ]
1744 )
1745])
1746if test "x$ac_cv_have_mode_t" = "xyes" ; then
1747 AC_DEFINE(HAVE_MODE_T)
1748fi
1749
Damien Miller61e50f12000-05-08 20:49:37 +10001750
1751AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
1752 AC_TRY_COMPILE(
1753 [
Damien Miller81171112000-04-23 11:14:01 +10001754#include <sys/types.h>
1755#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001756 ],
1757 [ struct sockaddr_storage s; ],
1758 [ ac_cv_have_struct_sockaddr_storage="yes" ],
1759 [ ac_cv_have_struct_sockaddr_storage="no" ]
1760 )
1761])
1762if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
1763 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)
1764fi
Damien Miller34132e52000-01-14 15:45:46 +11001765
Damien Miller61e50f12000-05-08 20:49:37 +10001766AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
1767 AC_TRY_COMPILE(
1768 [
Damien Miller7b22d652000-06-18 14:07:04 +10001769#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001770#include <netinet/in.h>
1771 ],
1772 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
1773 [ ac_cv_have_struct_sockaddr_in6="yes" ],
1774 [ ac_cv_have_struct_sockaddr_in6="no" ]
1775 )
1776])
1777if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
1778 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)
1779fi
Damien Miller34132e52000-01-14 15:45:46 +11001780
Damien Miller61e50f12000-05-08 20:49:37 +10001781AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
1782 AC_TRY_COMPILE(
1783 [
Damien Miller7b22d652000-06-18 14:07:04 +10001784#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001785#include <netinet/in.h>
1786 ],
1787 [ struct in6_addr s; s.s6_addr[0] = 0; ],
1788 [ ac_cv_have_struct_in6_addr="yes" ],
1789 [ ac_cv_have_struct_in6_addr="no" ]
1790 )
1791])
1792if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
1793 AC_DEFINE(HAVE_STRUCT_IN6_ADDR)
1794fi
Damien Miller34132e52000-01-14 15:45:46 +11001795
Damien Miller61e50f12000-05-08 20:49:37 +10001796AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
1797 AC_TRY_COMPILE(
1798 [
Damien Miller81171112000-04-23 11:14:01 +10001799#include <sys/types.h>
1800#include <sys/socket.h>
1801#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001802 ],
1803 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
1804 [ ac_cv_have_struct_addrinfo="yes" ],
1805 [ ac_cv_have_struct_addrinfo="no" ]
1806 )
1807])
1808if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
1809 AC_DEFINE(HAVE_STRUCT_ADDRINFO)
1810fi
1811
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001812AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
1813 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11001814 [ #include <sys/time.h> ],
1815 [ struct timeval tv; tv.tv_sec = 1;],
Ben Lindstrom42202bc2001-01-15 02:34:37 +00001816 [ ac_cv_have_struct_timeval="yes" ],
1817 [ ac_cv_have_struct_timeval="no" ]
1818 )
1819])
1820if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
1821 AC_DEFINE(HAVE_STRUCT_TIMEVAL)
1822 have_struct_timeval=1
1823fi
1824
Tim Rice4e4dc562003-03-18 10:21:40 -08001825AC_CHECK_TYPES(struct timespec)
1826
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00001827# We need int64_t or else certian parts of the compile will fail.
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001828if test "x$ac_cv_have_int64_t" = "xno" -a \
1829 "x$ac_cv_sizeof_long_int" != "x8" -a \
1830 "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00001831 echo "OpenSSH requires int64_t support. Contact your vendor or install"
1832 echo "an alternative compiler (I.E., GCC) before continuing."
1833 echo ""
1834 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08001835else
1836dnl test snprintf (broken on SCO w/gcc)
1837 AC_TRY_RUN(
1838 [
1839#include <stdio.h>
1840#include <string.h>
1841#ifdef HAVE_SNPRINTF
1842main()
1843{
1844 char buf[50];
1845 char expected_out[50];
1846 int mazsize = 50 ;
1847#if (SIZEOF_LONG_INT == 8)
1848 long int num = 0x7fffffffffffffff;
1849#else
Kevin Steves6482ec82001-07-15 02:09:28 +00001850 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08001851#endif
1852 strcpy(expected_out, "9223372036854775807");
1853 snprintf(buf, mazsize, "%lld", num);
1854 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11001855 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08001856 exit(0);
1857}
1858#else
1859main() { exit(0); }
1860#endif
1861 ], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ]
1862 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001863fi
1864
Damien Miller78315eb2000-09-29 23:01:36 +11001865dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10001866OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
1867OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
1868OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
1869OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
1870OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10001871OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001872OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
1873OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10001874OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10001875OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
1876OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
1877OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
1878OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00001879OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
1880OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
1881OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
1882OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Tim Rice13aae5e2001-10-21 17:53:58 -07001883
1884AC_CHECK_MEMBERS([struct stat.st_blksize])
andre2ff7b5d2000-06-03 14:57:40 +00001885
Damien Miller61e50f12000-05-08 20:49:37 +10001886AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
1887 ac_cv_have_ss_family_in_struct_ss, [
1888 AC_TRY_COMPILE(
1889 [
Damien Miller81171112000-04-23 11:14:01 +10001890#include <sys/types.h>
1891#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001892 ],
1893 [ struct sockaddr_storage s; s.ss_family = 1; ],
1894 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
1895 [ ac_cv_have_ss_family_in_struct_ss="no" ],
1896 )
1897])
1898if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
1899 AC_DEFINE(HAVE_SS_FAMILY_IN_SS)
1900fi
1901
Damien Miller61e50f12000-05-08 20:49:37 +10001902AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
1903 ac_cv_have___ss_family_in_struct_ss, [
1904 AC_TRY_COMPILE(
1905 [
Damien Miller81171112000-04-23 11:14:01 +10001906#include <sys/types.h>
1907#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10001908 ],
1909 [ struct sockaddr_storage s; s.__ss_family = 1; ],
1910 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
1911 [ ac_cv_have___ss_family_in_struct_ss="no" ]
1912 )
1913])
1914if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
1915 AC_DEFINE(HAVE___SS_FAMILY_IN_SS)
1916fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11001917
Damien Millerad833b32000-08-23 10:46:23 +10001918AC_CACHE_CHECK([for pw_class field in struct passwd],
1919 ac_cv_have_pw_class_in_struct_passwd, [
1920 AC_TRY_COMPILE(
1921 [
Damien Millerad833b32000-08-23 10:46:23 +10001922#include <pwd.h>
1923 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00001924 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10001925 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
1926 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
1927 )
1928])
1929if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
1930 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD)
1931fi
1932
Kevin Steves82456952001-06-22 21:14:18 +00001933AC_CACHE_CHECK([for pw_expire field in struct passwd],
1934 ac_cv_have_pw_expire_in_struct_passwd, [
1935 AC_TRY_COMPILE(
1936 [
1937#include <pwd.h>
1938 ],
1939 [ struct passwd p; p.pw_expire = 0; ],
1940 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
1941 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
1942 )
1943])
1944if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
1945 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD)
1946fi
1947
1948AC_CACHE_CHECK([for pw_change field in struct passwd],
1949 ac_cv_have_pw_change_in_struct_passwd, [
1950 AC_TRY_COMPILE(
1951 [
1952#include <pwd.h>
1953 ],
1954 [ struct passwd p; p.pw_change = 0; ],
1955 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
1956 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
1957 )
1958])
1959if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
1960 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD)
1961fi
Damien Miller61e50f12000-05-08 20:49:37 +10001962
Tim Rice28bbb0c2002-05-27 17:37:32 -07001963dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00001964AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
1965 ac_cv_have_accrights_in_msghdr, [
Tim Rice28bbb0c2002-05-27 17:37:32 -07001966 AC_TRY_RUN(
Kevin Steves939c9db2002-03-22 17:23:25 +00001967 [
Tim Riceae49fe62002-04-12 10:26:21 -07001968#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00001969#include <sys/socket.h>
1970#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07001971int main() {
1972#ifdef msg_accrights
1973exit(1);
1974#endif
1975struct msghdr m;
1976m.msg_accrights = 0;
1977exit(0);
1978}
Kevin Steves939c9db2002-03-22 17:23:25 +00001979 ],
Kevin Steves939c9db2002-03-22 17:23:25 +00001980 [ ac_cv_have_accrights_in_msghdr="yes" ],
1981 [ ac_cv_have_accrights_in_msghdr="no" ]
1982 )
1983])
1984if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
1985 AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR)
1986fi
1987
Kevin Stevesa44e0352002-04-07 16:18:03 +00001988AC_CACHE_CHECK([for msg_control field in struct msghdr],
1989 ac_cv_have_control_in_msghdr, [
Tim Rice28bbb0c2002-05-27 17:37:32 -07001990 AC_TRY_RUN(
Kevin Stevesa44e0352002-04-07 16:18:03 +00001991 [
Tim Riceae49fe62002-04-12 10:26:21 -07001992#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00001993#include <sys/socket.h>
1994#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07001995int main() {
1996#ifdef msg_control
1997exit(1);
1998#endif
1999struct msghdr m;
2000m.msg_control = 0;
2001exit(0);
2002}
Kevin Stevesa44e0352002-04-07 16:18:03 +00002003 ],
Kevin Stevesa44e0352002-04-07 16:18:03 +00002004 [ ac_cv_have_control_in_msghdr="yes" ],
2005 [ ac_cv_have_control_in_msghdr="no" ]
2006 )
2007])
2008if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
2009 AC_DEFINE(HAVE_CONTROL_IN_MSGHDR)
2010fi
2011
Damien Miller61e50f12000-05-08 20:49:37 +10002012AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002013 AC_TRY_LINK([],
2014 [ extern char *__progname; printf("%s", __progname); ],
Damien Miller61e50f12000-05-08 20:49:37 +10002015 [ ac_cv_libc_defines___progname="yes" ],
2016 [ ac_cv_libc_defines___progname="no" ]
2017 )
2018])
2019if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
2020 AC_DEFINE(HAVE___PROGNAME)
2021fi
2022
Kevin Steves4846f4a2002-03-22 18:19:53 +00002023AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
2024 AC_TRY_LINK([
2025#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002026],
2027 [ printf("%s", __FUNCTION__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00002028 [ ac_cv_cc_implements___FUNCTION__="yes" ],
2029 [ ac_cv_cc_implements___FUNCTION__="no" ]
2030 )
2031])
2032if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
2033 AC_DEFINE(HAVE___FUNCTION__)
2034fi
2035
2036AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
2037 AC_TRY_LINK([
2038#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002039],
2040 [ printf("%s", __func__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00002041 [ ac_cv_cc_implements___func__="yes" ],
2042 [ ac_cv_cc_implements___func__="no" ]
2043 )
2044])
2045if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
2046 AC_DEFINE(HAVE___func__)
2047fi
2048
Damien Miller4f8e6692001-07-14 13:22:53 +10002049AC_CACHE_CHECK([whether getopt has optreset support],
2050 ac_cv_have_getopt_optreset, [
2051 AC_TRY_LINK(
2052 [
2053#include <getopt.h>
2054 ],
2055 [ extern int optreset; optreset = 0; ],
2056 [ ac_cv_have_getopt_optreset="yes" ],
2057 [ ac_cv_have_getopt_optreset="no" ]
2058 )
2059])
2060if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
2061 AC_DEFINE(HAVE_GETOPT_OPTRESET)
2062fi
Damien Millera22ba012000-03-02 23:09:20 +11002063
Damien Millerecbb26d2000-07-15 14:59:14 +10002064AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002065 AC_TRY_LINK([],
2066 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
Damien Millerecbb26d2000-07-15 14:59:14 +10002067 [ ac_cv_libc_defines_sys_errlist="yes" ],
2068 [ ac_cv_libc_defines_sys_errlist="no" ]
2069 )
2070])
2071if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
2072 AC_DEFINE(HAVE_SYS_ERRLIST)
2073fi
2074
2075
Damien Miller11fa2cc2000-08-16 10:35:58 +10002076AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Damien Millera8e06ce2003-11-21 23:48:55 +11002077 AC_TRY_LINK([],
2078 [ extern int sys_nerr; printf("%i", sys_nerr);],
Damien Miller11fa2cc2000-08-16 10:35:58 +10002079 [ ac_cv_libc_defines_sys_nerr="yes" ],
2080 [ ac_cv_libc_defines_sys_nerr="no" ]
2081 )
2082])
2083if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
2084 AC_DEFINE(HAVE_SYS_NERR)
2085fi
2086
Damien Millera8e06ce2003-11-21 23:48:55 +11002087SCARD_MSG="no"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002088# Check whether user wants sectok support
2089AC_ARG_WITH(sectok,
2090 [ --with-sectok Enable smartcard support using libsectok],
Damien Miller85de5802001-09-18 14:01:11 +10002091 [
2092 if test "x$withval" != "xno" ; then
2093 if test "x$withval" != "xyes" ; then
2094 CPPFLAGS="$CPPFLAGS -I${withval}"
2095 LDFLAGS="$LDFLAGS -L${withval}"
2096 if test ! -z "$need_dash_r" ; then
2097 LDFLAGS="$LDFLAGS -R${withval}"
2098 fi
2099 if test ! -z "$blibpath" ; then
2100 blibpath="$blibpath:${withval}"
2101 fi
2102 fi
2103 AC_CHECK_HEADERS(sectok.h)
2104 if test "$ac_cv_header_sectok_h" != yes; then
2105 AC_MSG_ERROR(Can't find sectok.h)
2106 fi
2107 AC_CHECK_LIB(sectok, sectok_open)
2108 if test "$ac_cv_lib_sectok_sectok_open" != yes; then
2109 AC_MSG_ERROR(Can't find libsectok)
2110 fi
2111 AC_DEFINE(SMARTCARD)
Ben Lindstroma42694f2002-04-05 16:11:45 +00002112 AC_DEFINE(USE_SECTOK)
Damien Millera8e06ce2003-11-21 23:48:55 +11002113 SCARD_MSG="yes, using sectok"
Ben Lindstroma42694f2002-04-05 16:11:45 +00002114 fi
2115 ]
2116)
2117
2118# Check whether user wants OpenSC support
2119AC_ARG_WITH(opensc,
Damien Millerf6195f22002-04-23 22:48:46 +10002120 AC_HELP_STRING([--with-opensc=PFX],
2121 [Enable smartcard support using OpenSC]),
2122 opensc_config_prefix="$withval", opensc_config_prefix="")
2123if test x$opensc_config_prefix != x ; then
2124 OPENSC_CONFIG=$opensc_config_prefix/bin/opensc-config
2125 AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no)
2126 if test "$OPENSC_CONFIG" != "no"; then
2127 LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags`
2128 LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs`
2129 CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS"
2130 LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS"
2131 AC_DEFINE(SMARTCARD)
2132 AC_DEFINE(USE_OPENSC)
Damien Millera8e06ce2003-11-21 23:48:55 +11002133 SCARD_MSG="yes, using OpenSC"
Damien Millerf6195f22002-04-23 22:48:46 +10002134 fi
2135fi
Damien Miller85de5802001-09-18 14:01:11 +10002136
Darren Tucker5f88d342003-10-15 16:57:57 +10002137# Check libraries needed by DNS fingerprint support
Damien Millera8e06ce2003-11-21 23:48:55 +11002138AC_SEARCH_LIBS(getrrsetbyname, resolv,
Darren Tucker5f88d342003-10-15 16:57:57 +10002139 [AC_DEFINE(HAVE_GETRRSETBYNAME)],
Damien Miller7abe09b2003-05-15 10:53:49 +10002140 [
Darren Tucker5f88d342003-10-15 16:57:57 +10002141 # Needed by our getrrsetbyname()
2142 AC_SEARCH_LIBS(res_query, resolv)
2143 AC_SEARCH_LIBS(dn_expand, resolv)
2144 AC_CHECK_FUNCS(_getshort _getlong)
2145 AC_CHECK_MEMBER(HEADER.ad,
2146 [AC_DEFINE(HAVE_HEADER_AD)],,
2147 [#include <arpa/nameser.h>])
2148 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10002149
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002150# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11002151KRB5_MSG="no"
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002152AC_ARG_WITH(kerberos5,
Damien Millera8e06ce2003-11-21 23:48:55 +11002153 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11002154 [ if test "x$withval" != "xno" ; then
2155 if test "x$withval" = "xyes" ; then
2156 KRB5ROOT="/usr/local"
2157 else
2158 KRB5ROOT=${withval}
2159 fi
2160
2161 AC_DEFINE(KRB5)
2162 KRB5_MSG="yes"
2163
2164 AC_MSG_CHECKING(for krb5-config)
2165 if test -x $KRB5ROOT/bin/krb5-config ; then
2166 KRB5CONF=$KRB5ROOT/bin/krb5-config
2167 AC_MSG_RESULT($KRB5CONF)
2168
2169 AC_MSG_CHECKING(for gssapi support)
2170 if $KRB5CONF | grep gssapi >/dev/null ; then
2171 AC_MSG_RESULT(yes)
Darren Tucker0d27ed12004-02-24 10:37:33 +11002172 AC_DEFINE(GSSAPI)
2173 k5confopts=gssapi
Damien Millera8e06ce2003-11-21 23:48:55 +11002174 else
Darren Tucker1d3ca582004-01-22 12:05:34 +11002175 AC_MSG_RESULT(no)
Darren Tucker0d27ed12004-02-24 10:37:33 +11002176 k5confopts=""
Damien Millera8e06ce2003-11-21 23:48:55 +11002177 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11002178 K5CFLAGS="`$KRB5CONF --cflags $k5confopts`"
2179 K5LIBS="`$KRB5CONF --libs $k5confopts`"
Darren Tucker1d3ca582004-01-22 12:05:34 +11002180 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11002181 AC_MSG_CHECKING(whether we are using Heimdal)
2182 AC_TRY_COMPILE([ #include <krb5.h> ],
2183 [ char *tmp = heimdal_version; ],
2184 [ AC_MSG_RESULT(yes)
2185 AC_DEFINE(HEIMDAL) ],
2186 AC_MSG_RESULT(no)
2187 )
2188 else
2189 AC_MSG_RESULT(no)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002190 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11002191 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Damien Millera8e06ce2003-11-21 23:48:55 +11002192 AC_MSG_CHECKING(whether we are using Heimdal)
2193 AC_TRY_COMPILE([ #include <krb5.h> ],
2194 [ char *tmp = heimdal_version; ],
2195 [ AC_MSG_RESULT(yes)
2196 AC_DEFINE(HEIMDAL)
2197 K5LIBS="-lkrb5 -ldes -lcom_err -lasn1 -lroken"
2198 ],
2199 [ AC_MSG_RESULT(no)
2200 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
2201 ]
2202 )
Damien Miller200d0a72003-06-30 19:21:36 +10002203 AC_SEARCH_LIBS(dn_expand, resolv)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002204
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002205 AC_CHECK_LIB(gssapi,gss_init_sec_context,
2206 [ AC_DEFINE(GSSAPI)
2207 K5LIBS="-lgssapi $K5LIBS" ],
2208 [ AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context,
2209 [ AC_DEFINE(GSSAPI)
Damien Millera8e06ce2003-11-21 23:48:55 +11002210 K5LIBS="-lgssapi_krb5 $K5LIBS" ],
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002211 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
2212 $K5LIBS)
2213 ],
2214 $K5LIBS)
2215
2216 AC_CHECK_HEADER(gssapi.h, ,
2217 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11002218 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002219 AC_CHECK_HEADERS(gssapi.h, ,
2220 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11002221 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10002222 ]
2223 )
2224
2225 oldCPP="$CPPFLAGS"
2226 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
2227 AC_CHECK_HEADER(gssapi_krb5.h, ,
2228 [ CPPFLAGS="$oldCPP" ])
2229
Damien Millera8e06ce2003-11-21 23:48:55 +11002230 fi
Darren Tucker1d3ca582004-01-22 12:05:34 +11002231 if test ! -z "$need_dash_r" ; then
2232 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
2233 fi
2234 if test ! -z "$blibpath" ; then
2235 blibpath="$blibpath:${KRB5ROOT}/lib"
2236 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11002237 fi
2238
2239 AC_CHECK_HEADERS(gssapi.h gssapi/gssapi.h)
2240 AC_CHECK_HEADERS(gssapi_krb5.h gssapi/gssapi_krb5.h)
2241 AC_CHECK_HEADERS(gssapi_generic.h gssapi/gssapi_generic.h)
2242
2243 LIBS="$LIBS $K5LIBS"
2244 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS))
2245 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10002246)
Damien Millerc79bc0d2001-03-28 13:03:42 +10002247
Damien Millera22ba012000-03-02 23:09:20 +11002248# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11002249
Damien Millerf58c6722002-05-13 13:15:42 +10002250PRIVSEP_PATH=/var/empty
2251AC_ARG_WITH(privsep-path,
Tim Ricecbb90662002-07-08 19:17:10 -07002252 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10002253 [
2254 if test "x$withval" != "$no" ; then
2255 PRIVSEP_PATH=$withval
2256 fi
2257 ]
2258)
2259AC_SUBST(PRIVSEP_PATH)
2260
Damien Millera22ba012000-03-02 23:09:20 +11002261AC_ARG_WITH(xauth,
2262 [ --with-xauth=PATH Specify path to xauth program ],
2263 [
Ben Lindstrom76020ba2000-10-25 16:55:00 +00002264 if test "x$withval" != "xno" ; then
Damien Miller7b22d652000-06-18 14:07:04 +10002265 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11002266 fi
2267 ],
2268 [
Tim Ricee22be3b2002-07-17 19:20:07 -07002269 TestPath="$PATH"
2270 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
2271 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
2272 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
2273 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
2274 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
Damien Milleredb82922000-06-20 13:25:52 +10002275 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11002276 xauth_path="/usr/openwin/bin/xauth"
2277 fi
2278 ]
2279)
2280
Damien Miller7d901272003-01-13 16:55:22 +11002281STRIP_OPT=-s
2282AC_ARG_ENABLE(strip,
2283 [ --disable-strip Disable calling strip(1) on install],
2284 [
2285 if test "x$enableval" = "xno" ; then
2286 STRIP_OPT=
2287 fi
2288 ]
2289)
2290AC_SUBST(STRIP_OPT)
2291
Damien Millera19cf472000-11-29 13:28:50 +11002292if test -z "$xauth_path" ; then
2293 XAUTH_PATH="undefined"
2294 AC_SUBST(XAUTH_PATH)
2295else
Damien Millera22ba012000-03-02 23:09:20 +11002296 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")
Damien Millera19cf472000-11-29 13:28:50 +11002297 XAUTH_PATH=$xauth_path
2298 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11002299fi
Damien Millera22ba012000-03-02 23:09:20 +11002300
2301# Check for mail directory (last resort if we cannot get it from headers)
2302if test ! -z "$MAIL" ; then
2303 maildir=`dirname $MAIL`
2304 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir")
2305fi
2306
Damien Millera22ba012000-03-02 23:09:20 +11002307if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00002308 if test "x$disable_ptmx_check" != "xyes" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11002309 AC_CHECK_FILE("/dev/ptmx",
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00002310 [
2311 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
2312 have_dev_ptmx=1
2313 ]
2314 )
2315 fi
Damien Millera22ba012000-03-02 23:09:20 +11002316fi
Damien Millera8e06ce2003-11-21 23:48:55 +11002317AC_CHECK_FILE("/dev/ptc",
Damien Miller204ad072000-03-02 23:56:12 +11002318 [
2319 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
2320 have_dev_ptc=1
2321 ]
2322)
2323
Damien Millera22ba012000-03-02 23:09:20 +11002324# Options from here on. Some of these are preset by platform above
Ben Lindstrom9841b0a2001-06-09 02:26:58 +00002325AC_ARG_WITH(mantype,
Damien Miller897741e2001-04-16 10:41:46 +10002326 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11002327 [
Damien Miller897741e2001-04-16 10:41:46 +10002328 case "$withval" in
2329 man|cat|doc)
2330 MANTYPE=$withval
2331 ;;
2332 *)
2333 AC_MSG_ERROR(invalid man type: $withval)
2334 ;;
2335 esac
Damien Miller670a4b82000-01-22 13:53:11 +11002336 ]
2337)
Ben Lindstrombc709922001-04-18 18:04:21 +00002338if test -z "$MANTYPE"; then
Tim Ricee22be3b2002-07-17 19:20:07 -07002339 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
2340 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
Ben Lindstrombc709922001-04-18 18:04:21 +00002341 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
2342 MANTYPE=doc
2343 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
2344 MANTYPE=man
2345 else
2346 MANTYPE=cat
2347 fi
2348fi
Damien Miller670a4b82000-01-22 13:53:11 +11002349AC_SUBST(MANTYPE)
Ben Lindstrombc709922001-04-18 18:04:21 +00002350if test "$MANTYPE" = "doc"; then
2351 mansubdir=man;
2352else
2353 mansubdir=$MANTYPE;
2354fi
2355AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11002356
Damien Millera22ba012000-03-02 23:09:20 +11002357# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11002358MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11002359AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11002360 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11002361 [
Damien Millerb85dcad2000-03-11 11:37:00 +11002362 if test "x$withval" != "xno" ; then
Damien Miller8bdeee21999-12-30 15:50:54 +11002363 AC_DEFINE(HAVE_MD5_PASSWORDS)
Damien Millera8e06ce2003-11-21 23:48:55 +11002364 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11002365 fi
2366 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11002367)
2368
Damien Millera22ba012000-03-02 23:09:20 +11002369# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11002370AC_ARG_WITH(shadow,
2371 [ --without-shadow Disable shadow password support],
2372 [
2373 if test "x$withval" = "xno" ; then
2374 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10002375 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11002376 fi
2377 ]
2378)
2379
Damien Miller1f335fb2000-06-26 11:31:33 +10002380if test -z "$disable_shadow" ; then
2381 AC_MSG_CHECKING([if the systems has expire shadow information])
2382 AC_TRY_COMPILE(
2383 [
2384#include <sys/types.h>
2385#include <shadow.h>
2386 struct spwd sp;
2387 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
2388 [ sp_expire_available=yes ], []
2389 )
2390
2391 if test "x$sp_expire_available" = "xyes" ; then
2392 AC_MSG_RESULT(yes)
2393 AC_DEFINE(HAS_SHADOW_EXPIRE)
2394 else
2395 AC_MSG_RESULT(no)
2396 fi
2397fi
2398
Damien Millera22ba012000-03-02 23:09:20 +11002399# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11002400if test ! -z "$IPADDR_IN_DISPLAY" ; then
2401 DISPLAY_HACK_MSG="yes"
2402 AC_DEFINE(IPADDR_IN_DISPLAY)
2403else
Damien Millera8e06ce2003-11-21 23:48:55 +11002404 DISPLAY_HACK_MSG="no"
Damien Miller9a947342000-08-30 10:03:33 +11002405 AC_ARG_WITH(ipaddr-display,
2406 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
2407 [
2408 if test "x$withval" != "xno" ; then
2409 AC_DEFINE(IPADDR_IN_DISPLAY)
Damien Millera8e06ce2003-11-21 23:48:55 +11002410 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11002411 fi
2412 ]
2413 )
2414fi
Damien Miller76112de1999-12-21 11:18:08 +11002415
Darren Tuckere1a790d2003-09-16 11:52:19 +10002416# check for /etc/default/login and use it if present.
Tim Rice7ff4e6d2003-09-22 19:50:14 -07002417AC_ARG_ENABLE(etc-default-login,
2418 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],,
2419[
Darren Tuckere1a790d2003-09-16 11:52:19 +10002420AC_CHECK_FILE("/etc/default/login", [ external_path_file=/etc/default/login ])
2421
2422if test "x$external_path_file" = "x/etc/default/login"; then
2423 AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN)
2424fi
Tim Rice7ff4e6d2003-09-22 19:50:14 -07002425])
Darren Tuckere1a790d2003-09-16 11:52:19 +10002426
Tim Rice43a1c132002-04-17 21:19:14 -07002427dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
2428if test $ac_cv_func_login_getcapbool = "yes" -a \
2429 $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10002430 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07002431fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10002432
Damien Millera22ba012000-03-02 23:09:20 +11002433# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11002434SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11002435AC_ARG_WITH(default-path,
Damien Millerf71d2a52002-05-13 15:14:08 +10002436 [ --with-default-path= Specify default \$PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11002437 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10002438 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07002439 AC_MSG_WARN([
2440--with-default-path=PATH has no effect on this system.
2441Edit /etc/login.conf instead.])
2442 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07002443 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10002444 AC_MSG_WARN([
2445--with-default-path=PATH will only be used if PATH is not defined in
2446$external_path_file .])
2447 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08002448 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11002449 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11002450 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08002451 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10002452 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
2453 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07002454 else
Tim Riceb925b4b2003-09-15 22:40:49 -07002455 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10002456 AC_MSG_WARN([
2457If PATH is defined in $external_path_file, ensure the path to scp is included,
2458otherwise scp will not work.])
2459 fi
2460 AC_TRY_RUN(
2461 [
Tim Rice59ea0a02001-03-10 13:50:45 -08002462/* find out what STDPATH is */
2463#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08002464#ifdef HAVE_PATHS_H
2465# include <paths.h>
2466#endif
2467#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08002468# ifdef _PATH_USERPATH /* Irix */
2469# define _PATH_STDPATH _PATH_USERPATH
2470# else
2471# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
2472# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08002473#endif
2474#include <sys/types.h>
2475#include <sys/stat.h>
2476#include <fcntl.h>
2477#define DATA "conftest.stdpath"
2478
2479main()
2480{
2481 FILE *fd;
2482 int rc;
2483
2484 fd = fopen(DATA,"w");
2485 if(fd == NULL)
2486 exit(1);
2487
2488 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
2489 exit(1);
2490
2491 exit(0);
2492}
2493 ], [ user_path=`cat conftest.stdpath` ],
2494 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
2495 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
2496 )
2497# make sure $bindir is in USER_PATH so scp will work
2498 t_bindir=`eval echo ${bindir}`
2499 case $t_bindir in
2500 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
2501 esac
2502 case $t_bindir in
2503 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
2504 esac
2505 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
2506 if test $? -ne 0 ; then
2507 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
2508 if test $? -ne 0 ; then
2509 user_path=$user_path:$t_bindir
2510 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
2511 fi
2512 fi
Tim Rice43a1c132002-04-17 21:19:14 -07002513 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11002514)
Darren Tuckere1a790d2003-09-16 11:52:19 +10002515if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07002516 AC_DEFINE_UNQUOTED(USER_PATH, "$user_path")
2517 AC_SUBST(user_path)
2518fi
Damien Miller5a3e6831999-12-27 09:48:56 +11002519
Damien Millera18bbd32002-05-13 10:48:57 +10002520# Set superuser path separately to user path
Damien Millera18bbd32002-05-13 10:48:57 +10002521AC_ARG_WITH(superuser-path,
2522 [ --with-superuser-path= Specify different path for super-user],
2523 [
2524 if test "x$withval" != "xno" ; then
2525 AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval")
2526 superuser_path=$withval
2527 fi
2528 ]
2529)
2530
2531
Damien Miller61e50f12000-05-08 20:49:37 +10002532AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11002533IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11002534AC_ARG_WITH(4in6,
2535 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
2536 [
2537 if test "x$withval" != "xno" ; then
2538 AC_MSG_RESULT(yes)
2539 AC_DEFINE(IPV4_IN_IPV6)
Damien Millera8e06ce2003-11-21 23:48:55 +11002540 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11002541 else
2542 AC_MSG_RESULT(no)
2543 fi
2544 ],[
2545 if test "x$inet6_default_4in6" = "xyes"; then
2546 AC_MSG_RESULT([yes (default)])
2547 AC_DEFINE(IPV4_IN_IPV6)
Damien Millera8e06ce2003-11-21 23:48:55 +11002548 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11002549 else
2550 AC_MSG_RESULT([no (default)])
2551 fi
2552 ]
2553)
2554
Damien Miller60396b02001-02-18 17:01:00 +11002555# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11002556BSD_AUTH_MSG=no
Damien Miller60396b02001-02-18 17:01:00 +11002557AC_ARG_WITH(bsd-auth,
2558 [ --with-bsd-auth Enable BSD auth support],
2559 [
2560 if test "x$withval" != "xno" ; then
2561 AC_DEFINE(BSD_AUTH)
Damien Miller6c21c512002-01-22 21:57:53 +11002562 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11002563 fi
2564 ]
2565)
2566
Damien Millera22ba012000-03-02 23:09:20 +11002567# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11002568piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11002569# make sure the directory exists
2570if test ! -d $piddir ; then
2571 piddir=`eval echo ${sysconfdir}`
2572 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11002573 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11002574 esac
2575fi
2576
Tim Rice88f2ab52002-03-17 12:17:34 -08002577AC_ARG_WITH(pid-dir,
2578 [ --with-pid-dir=PATH Specify location of ssh.pid file],
2579 [
2580 if test "x$withval" != "xno" ; then
2581 piddir=$withval
2582 if test ! -d $piddir ; then
2583 AC_MSG_WARN([** no $piddir directory on this system **])
2584 fi
2585 fi
2586 ]
2587)
2588
Ben Lindstrom226cfa02001-01-22 05:34:40 +00002589AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir")
Damien Millerb13c73e2000-01-17 22:02:17 +11002590AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11002591
andre2ff7b5d2000-06-03 14:57:40 +00002592dnl allow user to disable some login recording features
2593AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00002594 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002595 [
2596 if test "x$enableval" = "xno" ; then
2597 AC_DEFINE(DISABLE_LASTLOG)
2598 fi
2599 ]
andre2ff7b5d2000-06-03 14:57:40 +00002600)
2601AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00002602 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002603 [
2604 if test "x$enableval" = "xno" ; then
2605 AC_DEFINE(DISABLE_UTMP)
2606 fi
2607 ]
andre2ff7b5d2000-06-03 14:57:40 +00002608)
2609AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00002610 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002611 [
2612 if test "x$enableval" = "xno" ; then
2613 AC_DEFINE(DISABLE_UTMPX)
2614 fi
2615 ]
andre2ff7b5d2000-06-03 14:57:40 +00002616)
2617AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00002618 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002619 [
2620 if test "x$enableval" = "xno" ; then
2621 AC_DEFINE(DISABLE_WTMP)
2622 fi
2623 ]
andre2ff7b5d2000-06-03 14:57:40 +00002624)
2625AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00002626 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002627 [
2628 if test "x$enableval" = "xno" ; then
2629 AC_DEFINE(DISABLE_WTMPX)
2630 fi
2631 ]
andre2ff7b5d2000-06-03 14:57:40 +00002632)
2633AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00002634 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002635 [
2636 if test "x$enableval" = "xno" ; then
2637 AC_DEFINE(DISABLE_LOGIN)
2638 fi
2639 ]
andre2ff7b5d2000-06-03 14:57:40 +00002640)
2641AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00002642 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002643 [
2644 if test "x$enableval" = "xno" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11002645 AC_DEFINE(DISABLE_PUTUTLINE)
Darren Tuckera3020db2003-06-28 12:54:33 +10002646 fi
2647 ]
andre2ff7b5d2000-06-03 14:57:40 +00002648)
2649AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00002650 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10002651 [
2652 if test "x$enableval" = "xno" ; then
2653 AC_DEFINE(DISABLE_PUTUTXLINE)
2654 fi
2655 ]
andre2ff7b5d2000-06-03 14:57:40 +00002656)
2657AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00002658 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11002659 [
2660 if test "x$withval" = "xno" ; then
2661 AC_DEFINE(DISABLE_LASTLOG)
2662 else
2663 conf_lastlog_location=$withval
2664 fi
2665 ]
2666)
andre2ff7b5d2000-06-03 14:57:40 +00002667
2668dnl lastlog, [uw]tmpx? detection
2669dnl NOTE: set the paths in the platform section to avoid the
2670dnl need for command-line parameters
2671dnl lastlog and [uw]tmp are subject to a file search if all else fails
2672
2673dnl lastlog detection
2674dnl NOTE: the code itself will detect if lastlog is a directory
2675AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
2676AC_TRY_COMPILE([
2677#include <sys/types.h>
2678#include <utmp.h>
2679#ifdef HAVE_LASTLOG_H
2680# include <lastlog.h>
2681#endif
Damien Miller2994e082000-06-04 15:51:47 +10002682#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002683# include <paths.h>
2684#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002685#ifdef HAVE_LOGIN_H
2686# include <login.h>
2687#endif
andre2ff7b5d2000-06-03 14:57:40 +00002688 ],
2689 [ char *lastlog = LASTLOG_FILE; ],
2690 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10002691 [
2692 AC_MSG_RESULT(no)
2693 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
2694 AC_TRY_COMPILE([
2695#include <sys/types.h>
2696#include <utmp.h>
2697#ifdef HAVE_LASTLOG_H
2698# include <lastlog.h>
2699#endif
2700#ifdef HAVE_PATHS_H
2701# include <paths.h>
2702#endif
2703 ],
2704 [ char *lastlog = _PATH_LASTLOG; ],
2705 [ AC_MSG_RESULT(yes) ],
2706 [
andree441aa32000-06-12 22:34:38 +00002707 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10002708 system_lastlog_path=no
2709 ])
2710 ]
andre2ff7b5d2000-06-03 14:57:40 +00002711)
Damien Miller2994e082000-06-04 15:51:47 +10002712
andre2ff7b5d2000-06-03 14:57:40 +00002713if test -z "$conf_lastlog_location"; then
2714 if test x"$system_lastlog_path" = x"no" ; then
2715 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10002716 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00002717 conf_lastlog_location=$f
2718 fi
2719 done
2720 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00002721 AC_MSG_WARN([** Cannot find lastlog **])
2722 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00002723 fi
2724 fi
2725fi
2726
2727if test -n "$conf_lastlog_location"; then
2728 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location")
2729fi
2730
2731dnl utmp detection
2732AC_MSG_CHECKING([if your system defines UTMP_FILE])
2733AC_TRY_COMPILE([
2734#include <sys/types.h>
2735#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10002736#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002737# include <paths.h>
2738#endif
2739 ],
2740 [ char *utmp = UTMP_FILE; ],
2741 [ AC_MSG_RESULT(yes) ],
2742 [ AC_MSG_RESULT(no)
2743 system_utmp_path=no ]
2744)
2745if test -z "$conf_utmp_location"; then
2746 if test x"$system_utmp_path" = x"no" ; then
2747 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
2748 if test -f $f ; then
2749 conf_utmp_location=$f
2750 fi
2751 done
2752 if test -z "$conf_utmp_location"; then
2753 AC_DEFINE(DISABLE_UTMP)
2754 fi
2755 fi
2756fi
2757if test -n "$conf_utmp_location"; then
2758 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location")
2759fi
2760
2761dnl wtmp detection
2762AC_MSG_CHECKING([if your system defines WTMP_FILE])
2763AC_TRY_COMPILE([
2764#include <sys/types.h>
2765#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10002766#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002767# include <paths.h>
2768#endif
2769 ],
2770 [ char *wtmp = WTMP_FILE; ],
2771 [ AC_MSG_RESULT(yes) ],
2772 [ AC_MSG_RESULT(no)
2773 system_wtmp_path=no ]
2774)
2775if test -z "$conf_wtmp_location"; then
2776 if test x"$system_wtmp_path" = x"no" ; then
2777 for f in /usr/adm/wtmp /var/log/wtmp; do
2778 if test -f $f ; then
2779 conf_wtmp_location=$f
2780 fi
2781 done
2782 if test -z "$conf_wtmp_location"; then
2783 AC_DEFINE(DISABLE_WTMP)
2784 fi
2785 fi
2786fi
2787if test -n "$conf_wtmp_location"; then
2788 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location")
2789fi
2790
2791
2792dnl utmpx detection - I don't know any system so perverse as to require
2793dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
2794dnl there, though.
2795AC_MSG_CHECKING([if your system defines UTMPX_FILE])
2796AC_TRY_COMPILE([
2797#include <sys/types.h>
2798#include <utmp.h>
2799#ifdef HAVE_UTMPX_H
2800#include <utmpx.h>
2801#endif
Damien Miller2994e082000-06-04 15:51:47 +10002802#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002803# include <paths.h>
2804#endif
2805 ],
2806 [ char *utmpx = UTMPX_FILE; ],
2807 [ AC_MSG_RESULT(yes) ],
2808 [ AC_MSG_RESULT(no)
2809 system_utmpx_path=no ]
2810)
2811if test -z "$conf_utmpx_location"; then
2812 if test x"$system_utmpx_path" = x"no" ; then
2813 AC_DEFINE(DISABLE_UTMPX)
2814 fi
2815else
2816 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location")
2817fi
2818
2819dnl wtmpx detection
2820AC_MSG_CHECKING([if your system defines WTMPX_FILE])
2821AC_TRY_COMPILE([
2822#include <sys/types.h>
2823#include <utmp.h>
2824#ifdef HAVE_UTMPX_H
2825#include <utmpx.h>
2826#endif
Damien Miller2994e082000-06-04 15:51:47 +10002827#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00002828# include <paths.h>
2829#endif
2830 ],
2831 [ char *wtmpx = WTMPX_FILE; ],
2832 [ AC_MSG_RESULT(yes) ],
2833 [ AC_MSG_RESULT(no)
2834 system_wtmpx_path=no ]
2835)
2836if test -z "$conf_wtmpx_location"; then
2837 if test x"$system_wtmpx_path" = x"no" ; then
2838 AC_DEFINE(DISABLE_WTMPX)
2839 fi
2840else
2841 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location")
2842fi
2843
Damien Miller4018c192000-04-30 09:30:44 +10002844
Damien Miller29ea30d2000-03-17 10:54:15 +11002845if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10002846 LDFLAGS="$LDFLAGS $blibflags$blibpath"
2847 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11002848fi
2849
Tim Rice4cec93f2002-02-26 08:40:48 -08002850dnl remove pam and dl because they are in $LIBPAM
2851if test "$PAM_MSG" = yes ; then
Tim Rice7d2d1f12002-02-26 22:05:11 -08002852 LIBS=`echo $LIBS | sed 's/-lpam //'`
2853fi
2854if test "$ac_cv_lib_pam_pam_set_item" = yes ; then
2855 LIBS=`echo $LIBS | sed 's/-ldl //'`
Tim Rice4cec93f2002-02-26 08:40:48 -08002856fi
2857
Damien Millerbac2d8a2000-09-05 16:13:06 +11002858AC_EXEEXT
Tim Rice13aae5e2001-10-21 17:53:58 -07002859AC_CONFIG_FILES([Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds])
2860AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10002861
Damien Miller7b22d652000-06-18 14:07:04 +10002862# Print summary of options
2863
Damien Miller7b22d652000-06-18 14:07:04 +10002864# Someone please show me a better way :)
2865A=`eval echo ${prefix}` ; A=`eval echo ${A}`
2866B=`eval echo ${bindir}` ; B=`eval echo ${B}`
2867C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
2868D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00002869E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00002870F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10002871G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10002872H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
2873I=`eval echo ${user_path}` ; I=`eval echo ${I}`
2874J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10002875
2876echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00002877echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10002878echo " User binaries: $B"
2879echo " System binaries: $C"
2880echo " Configuration files: $D"
2881echo " Askpass program: $E"
2882echo " Manual pages: $F"
2883echo " PID file: $G"
2884echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10002885if test "x$external_path_file" = "x/etc/login.conf" ; then
2886echo " At runtime, sshd will use the path defined in $external_path_file"
2887echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07002888else
Damien Millerf58c6722002-05-13 13:15:42 +10002889echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07002890 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10002891echo " (If PATH is set in $external_path_file it will be used instead. If"
2892echo " used, ensure the path to scp is present, otherwise scp will not work.)"
2893 fi
Tim Rice43a1c132002-04-17 21:19:14 -07002894fi
Damien Millera18bbd32002-05-13 10:48:57 +10002895if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10002896echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10002897fi
Damien Millerf58c6722002-05-13 13:15:42 +10002898echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10002899echo " PAM support: $PAM_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10002900echo " KerberosV support: $KRB5_MSG"
2901echo " Smartcard support: $SCARD_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10002902echo " S/KEY support: $SKEY_MSG"
2903echo " TCP Wrappers support: $TCPW_MSG"
2904echo " MD5 password support: $MD5_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10002905echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10002906echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
2907echo " BSD Auth support: $BSD_AUTH_MSG"
2908echo " Random number source: $RAND_MSG"
Damien Miller6c21c512002-01-22 21:57:53 +11002909if test ! -z "$USE_RAND_HELPER" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10002910echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
Damien Miller60396b02001-02-18 17:01:00 +11002911fi
2912
Damien Miller7b22d652000-06-18 14:07:04 +10002913echo ""
2914
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00002915echo " Host: ${host}"
2916echo " Compiler: ${CC}"
2917echo " Compiler flags: ${CFLAGS}"
2918echo "Preprocessor flags: ${CPPFLAGS}"
2919echo " Linker flags: ${LDFLAGS}"
Tim Rice4cec93f2002-02-26 08:40:48 -08002920echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}"
Damien Miller7b22d652000-06-18 14:07:04 +10002921
2922echo ""
2923
Damien Miller82cf0ce2000-12-20 13:34:48 +11002924if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002925 echo "PAM is enabled. You may need to install a PAM control file "
2926 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11002927 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11002928 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11002929 echo ""
2930fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00002931
Damien Miller6c21c512002-01-22 21:57:53 +11002932if test ! -z "$RAND_HELPER_CMDHASH" ; then
2933 echo "WARNING: you are using the builtin random number collection "
2934 echo "service. Please read WARNING.RNG and request that your OS "
2935 echo "vendor includes kernel-based random number collection in "
2936 echo "future versions of your OS."
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00002937 echo ""
2938fi
Damien Miller60396b02001-02-18 17:01:00 +11002939