blob: 835c8fa6d6361a246f0eeb3d74ee3b180f302124 [file] [log] [blame]
Tim Ricea74000e2009-03-18 11:25:02 -07001# $Id: configure.ac,v 1.419 2009/03/18 18:25:02 tim 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
Darren Tucker6a45f3d2005-06-03 19:33:10 +100017AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
Tim Ricea74000e2009-03-18 11:25:02 -070018AC_REVISION($Revision: 1.419 $)
Tim Rice13aae5e2001-10-21 17:53:58 -070019AC_CONFIG_SRCDIR([ssh.c])
Damien Miller7f6ea021999-10-28 13:25:17 +100020
21AC_CONFIG_HEADER(config.h)
Damien Miller856799b2000-03-15 21:18:10 +110022AC_PROG_CC
Damien Miller76112de1999-12-21 11:18:08 +110023AC_CANONICAL_HOST
Damien Miller4df5c762001-02-28 08:14:22 +110024AC_C_BIGENDIAN
Damien Miller7f6ea021999-10-28 13:25:17 +100025
Damien Millera22ba012000-03-02 23:09:20 +110026# Checks for programs.
Darren Tucker167bd9c2003-09-07 12:34:54 +100027AC_PROG_AWK
Damien Millerab18c411999-11-11 10:40:23 +110028AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +100029AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110030AC_PROG_INSTALL
Tim Ricefd80ddc2006-02-02 19:11:56 -080031AC_PROG_EGREP
Ben Lindstrom582d3982001-02-06 22:54:30 +000032AC_PATH_PROG(AR, ar)
Tim Rice5af9db92004-06-19 19:31:06 -070033AC_PATH_PROG(CAT, cat)
34AC_PATH_PROG(KILL, kill)
Tim Riceb8fbb8e2001-04-21 14:31:52 -070035AC_PATH_PROGS(PERL, perl5 perl)
Tim Riced0d7a8b2003-01-08 17:22:59 -080036AC_PATH_PROG(SED, sed)
Damien Millere79334a1999-12-29 10:03:37 +110037AC_SUBST(PERL)
Damien Miller8d1fd572000-05-17 21:34:07 +100038AC_PATH_PROG(ENT, ent)
39AC_SUBST(ENT)
Damien Miller4864e8f2001-02-08 10:07:08 +110040AC_PATH_PROG(TEST_MINUS_S_SH, bash)
41AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
42AC_PATH_PROG(TEST_MINUS_S_SH, sh)
Tim Rice0502a472002-05-08 16:04:14 -070043AC_PATH_PROG(SH, sh)
Tim Ricef7ba8f62004-06-20 10:37:32 -070044AC_SUBST(TEST_SHELL,sh)
Damien Miller2e1b0821999-12-25 10:11:29 +110045
Tim Rice6f1f7582004-05-30 21:38:51 -070046dnl for buildpkg.sh
47AC_PATH_PROG(PATH_GROUPADD_PROG, groupadd, groupadd,
48 [/usr/sbin${PATH_SEPARATOR}/etc])
49AC_PATH_PROG(PATH_USERADD_PROG, useradd, useradd,
50 [/usr/sbin${PATH_SEPARATOR}/etc])
51AC_CHECK_PROG(MAKE_PACKAGE_SUPPORTED, pkgmk, yes, no)
Darren Tuckerfbea7642006-01-30 00:22:39 +110052if test -x /sbin/sh; then
53 AC_SUBST(STARTUP_SCRIPT_SHELL,/sbin/sh)
54else
55 AC_SUBST(STARTUP_SCRIPT_SHELL,/bin/sh)
56fi
Tim Rice6f1f7582004-05-30 21:38:51 -070057
Damien Millere8bb4502001-09-25 16:39:35 +100058# System features
59AC_SYS_LARGEFILE
60
Damien Miller3f62aba2000-11-29 11:56:35 +110061if test -z "$AR" ; then
62 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
63fi
64
Damien Millerad833b32000-08-23 10:46:23 +100065# Use LOGIN_PROGRAM from environment if possible
66if test ! -z "$LOGIN_PROGRAM" ; then
Tim Rice7df8d392005-09-19 09:33:39 -070067 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM",
68 [If your header files don't define LOGIN_PROGRAM,
69 then use this (detected) from environment and PATH])
Damien Millerad833b32000-08-23 10:46:23 +100070else
71 # Search for login
72 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
73 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
74 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
75 fi
76fi
77
Darren Tucker23bc8d02004-02-06 16:24:31 +110078AC_PATH_PROG(PATH_PASSWD_PROG, passwd)
79if test ! -z "$PATH_PASSWD_PROG" ; then
Tim Rice7df8d392005-09-19 09:33:39 -070080 AC_DEFINE_UNQUOTED(_PATH_PASSWD_PROG, "$PATH_PASSWD_PROG",
81 [Full path of your "passwd" program])
Darren Tucker23bc8d02004-02-06 16:24:31 +110082fi
83
Damien Miller166bd442000-03-16 10:48:25 +110084if test -z "$LD" ; then
85 LD=$CC
86fi
87AC_SUBST(LD)
Tim Riceeae17cc2005-03-17 16:52:20 -080088
Damien Miller166bd442000-03-16 10:48:25 +110089AC_C_INLINE
Darren Tucker67b37032005-06-03 17:58:31 +100090
91AC_CHECK_DECL(LLONG_MAX, have_llong_max=1, , [#include <limits.h>])
92
Darren Tuckerb7918af2008-03-09 11:34:23 +110093use_stack_protector=1
94AC_ARG_WITH(stackprotect,
Damien Millerda3155e2008-03-27 12:30:18 +110095 [ --without-stackprotect Don't use compiler's stack protection], [
Darren Tuckerb7918af2008-03-09 11:34:23 +110096 if test "x$withval" = "xno"; then
97 use_stack_protector=0
98 fi ])
99
Damien Millera8e06ce2003-11-21 23:48:55 +1100100if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
Darren Tuckerdd352b62005-08-02 17:21:29 +1000101 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wuninitialized"
Darren Tucker3f9545e2005-11-12 15:20:52 +1100102 GCC_VER=`$CC -v 2>&1 | $AWK '/gcc version /{print $3}'`
Tim Rice3db1e3f2005-08-23 17:11:26 -0700103 case $GCC_VER in
Darren Tucker391de5c2007-04-29 14:49:21 +1000104 1.*) no_attrib_nonnull=1 ;;
105 2.8* | 2.9*)
106 CFLAGS="$CFLAGS -Wsign-compare"
107 no_attrib_nonnull=1
108 ;;
109 2.*) no_attrib_nonnull=1 ;;
Damien Miller73193b32008-07-09 21:07:19 +1000110 3.*) CFLAGS="$CFLAGS -Wsign-compare -Wformat-security" ;;
111 4.*) CFLAGS="$CFLAGS -Wsign-compare -Wno-pointer-sign -Wformat-security" ;;
Darren Tuckerf0324352005-11-10 21:30:36 +1100112 *) ;;
Tim Rice3db1e3f2005-08-23 17:11:26 -0700113 esac
Damien Millerde3cb0a2005-05-26 20:48:25 +1000114
Darren Tucker330c93f2008-06-16 02:27:48 +1000115 AC_MSG_CHECKING(if $CC accepts -fno-builtin-memset)
116 saved_CFLAGS="$CFLAGS"
117 CFLAGS="$CFLAGS -fno-builtin-memset"
118 AC_LINK_IFELSE( [AC_LANG_SOURCE([[
119#include <string.h>
120int main(void){char b[10]; memset(b, 0, sizeof(b));}
121 ]])],
122 [ AC_MSG_RESULT(yes) ],
123 [ AC_MSG_RESULT(no)
124 CFLAGS="$saved_CFLAGS" ]
125)
126
Darren Tuckerb7918af2008-03-09 11:34:23 +1100127 # -fstack-protector-all doesn't always work for some GCC versions
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100128 # and/or platforms, so we test if we can. If it's not supported
Damien Miller7df2e402008-12-08 09:35:36 +1100129 # on a given platform gcc will emit a warning so we use -Werror.
Darren Tuckerb7918af2008-03-09 11:34:23 +1100130 if test "x$use_stack_protector" = "x1"; then
131 for t in -fstack-protector-all -fstack-protector; do
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100132 AC_MSG_CHECKING(if $CC supports $t)
Darren Tuckerb7918af2008-03-09 11:34:23 +1100133 saved_CFLAGS="$CFLAGS"
134 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100135 CFLAGS="$CFLAGS $t -Werror"
136 LDFLAGS="$LDFLAGS $t -Werror"
137 AC_LINK_IFELSE(
138 [AC_LANG_SOURCE([
Damien Miller7df2e402008-12-08 09:35:36 +1100139#include <stdio.h>
140int main(void){char x[[256]]; snprintf(x, sizeof(x), "XXX"); return 0;}
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100141 ])],
Darren Tuckerb7918af2008-03-09 11:34:23 +1100142 [ AC_MSG_RESULT(yes)
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100143 CFLAGS="$saved_CFLAGS $t"
144 LDFLAGS="$saved_LDFLAGS $t"
Darren Tuckerb7918af2008-03-09 11:34:23 +1100145 AC_MSG_CHECKING(if $t works)
146 AC_RUN_IFELSE(
147 [AC_LANG_SOURCE([
Damien Miller7df2e402008-12-08 09:35:36 +1100148#include <stdio.h>
149int main(void){char x[[256]]; snprintf(x, sizeof(x), "XXX"); return 0;}
Darren Tuckerb7918af2008-03-09 11:34:23 +1100150 ])],
151 [ AC_MSG_RESULT(yes)
152 break ],
153 [ AC_MSG_RESULT(no) ],
154 [ AC_MSG_WARN([cross compiling: cannot test])
155 break ]
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100156 )
Darren Tuckerb7918af2008-03-09 11:34:23 +1100157 ],
158 [ AC_MSG_RESULT(no) ]
159 )
160 CFLAGS="$saved_CFLAGS"
161 LDFLAGS="$saved_LDFLAGS"
162 done
163 fi
Darren Tucker319b3d92007-12-02 21:02:22 +1100164
Darren Tucker67b37032005-06-03 17:58:31 +1000165 if test -z "$have_llong_max"; then
166 # retry LLONG_MAX with -std=gnu99, needed on some Linuxes
167 unset ac_cv_have_decl_LLONG_MAX
168 saved_CFLAGS="$CFLAGS"
169 CFLAGS="$CFLAGS -std=gnu99"
170 AC_CHECK_DECL(LLONG_MAX,
171 [have_llong_max=1],
172 [CFLAGS="$saved_CFLAGS"],
173 [#include <limits.h>]
174 )
175 fi
Damien Miller166bd442000-03-16 10:48:25 +1100176fi
177
Darren Tucker391de5c2007-04-29 14:49:21 +1000178if test "x$no_attrib_nonnull" != "x1" ; then
179 AC_DEFINE(HAVE_ATTRIBUTE__NONNULL__, 1, [Have attribute nonnull])
180fi
181
Tim Rice88368a32003-12-08 12:35:59 -0800182AC_ARG_WITH(rpath,
183 [ --without-rpath Disable auto-added -R linker paths],
184 [
Tim Riceeae17cc2005-03-17 16:52:20 -0800185 if test "x$withval" = "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800186 need_dash_r=""
187 fi
188 if test "x$withval" = "xyes" ; then
189 need_dash_r=1
190 fi
191 ]
192)
193
Tim Rice1cfab232006-10-03 09:34:35 -0700194# Allow user to specify flags
195AC_ARG_WITH(cflags,
196 [ --with-cflags Specify additional flags to pass to compiler],
197 [
198 if test -n "$withval" && test "x$withval" != "xno" && \
199 test "x${withval}" != "xyes"; then
200 CFLAGS="$CFLAGS $withval"
201 fi
202 ]
203)
204AC_ARG_WITH(cppflags,
205 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
206 [
207 if test -n "$withval" && test "x$withval" != "xno" && \
208 test "x${withval}" != "xyes"; then
209 CPPFLAGS="$CPPFLAGS $withval"
210 fi
211 ]
212)
213AC_ARG_WITH(ldflags,
214 [ --with-ldflags Specify additional flags to pass to linker],
215 [
216 if test -n "$withval" && test "x$withval" != "xno" && \
217 test "x${withval}" != "xyes"; then
218 LDFLAGS="$LDFLAGS $withval"
219 fi
220 ]
221)
222AC_ARG_WITH(libs,
223 [ --with-libs Specify additional libraries to link with],
224 [
225 if test -n "$withval" && test "x$withval" != "xno" && \
226 test "x${withval}" != "xyes"; then
227 LIBS="$LIBS $withval"
228 fi
229 ]
230)
231AC_ARG_WITH(Werror,
232 [ --with-Werror Build main code with -Werror],
233 [
234 if test -n "$withval" && test "x$withval" != "xno"; then
235 werror_flags="-Werror"
236 if test "x${withval}" != "xyes"; then
237 werror_flags="$withval"
238 fi
239 fi
240 ]
241)
242
243AC_CHECK_HEADERS( \
244 bstring.h \
245 crypt.h \
246 crypto/sha2.h \
247 dirent.h \
248 endian.h \
249 features.h \
250 fcntl.h \
251 floatingpoint.h \
252 getopt.h \
253 glob.h \
254 ia.h \
255 iaf.h \
256 limits.h \
257 login.h \
258 maillock.h \
259 ndir.h \
260 net/if_tun.h \
261 netdb.h \
262 netgroup.h \
263 pam/pam_appl.h \
264 paths.h \
Darren Tuckerfebf0f52007-06-25 22:15:12 +1000265 poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700266 pty.h \
267 readpassphrase.h \
268 rpc/types.h \
269 security/pam_appl.h \
270 sha2.h \
271 shadow.h \
272 stddef.h \
273 stdint.h \
274 string.h \
275 strings.h \
276 sys/audit.h \
277 sys/bitypes.h \
278 sys/bsdtty.h \
279 sys/cdefs.h \
280 sys/dir.h \
281 sys/mman.h \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +1000282 sys/mount.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700283 sys/ndir.h \
Darren Tucker7c92a652007-09-27 07:00:09 +1000284 sys/poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700285 sys/prctl.h \
286 sys/pstat.h \
287 sys/select.h \
288 sys/stat.h \
289 sys/stream.h \
290 sys/stropts.h \
291 sys/strtio.h \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +1000292 sys/statvfs.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700293 sys/sysmacros.h \
294 sys/time.h \
295 sys/timers.h \
296 sys/un.h \
297 time.h \
298 tmpdir.h \
299 ttyent.h \
Tim Riceaa8954f2007-05-09 15:57:43 -0700300 ucred.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700301 unistd.h \
302 usersec.h \
303 util.h \
304 utime.h \
305 utmp.h \
306 utmpx.h \
307 vis.h \
308)
309
310# lastlog.h requires sys/time.h to be included first on Solaris
311AC_CHECK_HEADERS(lastlog.h, [], [], [
312#ifdef HAVE_SYS_TIME_H
313# include <sys/time.h>
314#endif
315])
316
317# sys/ptms.h requires sys/stream.h to be included first on Solaris
318AC_CHECK_HEADERS(sys/ptms.h, [], [], [
319#ifdef HAVE_SYS_STREAM_H
320# include <sys/stream.h>
321#endif
322])
323
324# login_cap.h requires sys/types.h on NetBSD
325AC_CHECK_HEADERS(login_cap.h, [], [], [
326#include <sys/types.h>
327])
328
Damien Miller1b06dc32006-08-31 03:24:41 +1000329# Messages for features tested for in target-specific section
330SIA_MSG="no"
331SPC_MSG="no"
332
Damien Millera22ba012000-03-02 23:09:20 +1100333# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +1100334case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +1100335*-*-aix*)
Darren Tucker9216c372006-09-18 23:17:40 +1000336 # Some versions of VAC won't allow macro redefinitions at
337 # -qlanglevel=ansi, and autoconf 2.60 sometimes insists on using that
338 # particularly with older versions of vac or xlc.
339 # It also throws errors about null macro argments, but these are
340 # not fatal.
341 AC_MSG_CHECKING(if compiler allows macro redefinitions)
342 AC_COMPILE_IFELSE(
343 [AC_LANG_SOURCE([[
344#define testmacro foo
345#define testmacro bar
346int main(void) { exit(0); }
347 ]])],
348 [ AC_MSG_RESULT(yes) ],
349 [ AC_MSG_RESULT(no)
350 CC="`echo $CC | sed 's/-qlanglvl\=ansi//g'`"
351 LD="`echo $LD | sed 's/-qlanglvl\=ansi//g'`"
352 CFLAGS="`echo $CFLAGS | sed 's/-qlanglvl\=ansi//g'`"
353 CPPFLAGS="`echo $CPPFLAGS | sed 's/-qlanglvl\=ansi//g'`"
354 ]
355 )
356
Damien Millera8e06ce2003-11-21 23:48:55 +1100357 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
Damien Millereab4bae2003-04-29 23:22:40 +1000358 if (test -z "$blibpath"); then
Tim Ricefcb62202004-01-23 18:35:16 -0800359 blibpath="/usr/lib:/lib"
Damien Miller29ea30d2000-03-17 10:54:15 +1100360 fi
Damien Millereab4bae2003-04-29 23:22:40 +1000361 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerbdc12122006-07-06 11:56:25 +1000362 if test "$GCC" = "yes"; then
363 flags="-Wl,-blibpath: -Wl,-rpath, -blibpath:"
364 else
365 flags="-blibpath: -Wl,-blibpath: -Wl,-rpath,"
366 fi
367 for tryflags in $flags ;do
Damien Millereab4bae2003-04-29 23:22:40 +1000368 if (test -z "$blibflags"); then
369 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
370 AC_TRY_LINK([], [], [blibflags=$tryflags])
371 fi
372 done
373 if (test -z "$blibflags"); then
374 AC_MSG_RESULT(not found)
375 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
376 else
377 AC_MSG_RESULT($blibflags)
378 fi
379 LDFLAGS="$saved_LDFLAGS"
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000380 dnl Check for authenticate. Might be in libs.a on older AIXes
Tim Rice7df8d392005-09-19 09:33:39 -0700381 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE, 1,
382 [Define if you want to enable AIX4's authenticate function])],
Tim Ricee958ed32002-07-05 07:12:33 -0700383 [AC_CHECK_LIB(s,authenticate,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000384 [ AC_DEFINE(WITH_AIXAUTHENTICATE)
Tim Ricee958ed32002-07-05 07:12:33 -0700385 LIBS="$LIBS -ls"
386 ])
387 ])
Darren Tucker3c774c52005-02-16 22:49:31 +1100388 dnl Check for various auth function declarations in headers.
Darren Tucker04cfbe02005-02-20 23:27:11 +1100389 AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
Darren Tuckere66519d2005-03-21 22:46:34 +1100390 passwdexpired, setauthdb], , , [#include <usersec.h>])
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000391 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
Darren Tucker3c774c52005-02-16 22:49:31 +1100392 AC_CHECK_DECLS(loginfailed,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000393 [AC_MSG_CHECKING(if loginfailed takes 4 arguments)
394 AC_TRY_COMPILE(
Darren Tuckera0c0b632003-07-08 20:52:12 +1000395 [#include <usersec.h>],
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000396 [(void)loginfailed("user","host","tty",0);],
397 [AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -0700398 AC_DEFINE(AIX_LOGINFAILED_4ARG, 1,
399 [Define if your AIX loginfailed() function
400 takes 4 arguments (AIX >= 5.2)])],
Darren Tuckera0c0b632003-07-08 20:52:12 +1000401 [AC_MSG_RESULT(no)]
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000402 )],
403 [],
404 [#include <usersec.h>]
405 )
Darren Tucker0f26b132008-02-28 23:16:04 +1100406 AC_CHECK_FUNCS(getgrset setauthdb)
Darren Tucker3083bc22006-08-17 19:35:49 +1000407 AC_CHECK_DECL(F_CLOSEM,
Darren Tuckerd018b2e2006-08-18 18:51:20 +1000408 AC_DEFINE(HAVE_FCNTL_CLOSEM, 1, [Use F_CLOSEM fcntl for closefrom]),
Darren Tucker3083bc22006-08-17 19:35:49 +1000409 [],
410 [ #include <limits.h>
411 #include <fcntl.h> ]
412 )
Darren Tucker691d5232005-02-15 21:45:57 +1100413 check_for_aix_broken_getaddrinfo=1
Tim Rice7df8d392005-09-19 09:33:39 -0700414 AC_DEFINE(BROKEN_REALPATH, 1, [Define if you have a broken realpath.])
415 AC_DEFINE(SETEUID_BREAKS_SETUID, 1,
416 [Define if your platform breaks doing a seteuid before a setuid])
417 AC_DEFINE(BROKEN_SETREUID, 1, [Define if your setreuid() is broken])
418 AC_DEFINE(BROKEN_SETREGID, 1, [Define if your setregid() is broken])
andre60f3c982000-06-03 16:18:19 +0000419 dnl AIX handles lastlog as part of its login message
Tim Rice7df8d392005-09-19 09:33:39 -0700420 AC_DEFINE(DISABLE_LASTLOG, 1, [Define if you don't want to use lastlog])
421 AC_DEFINE(LOGIN_NEEDS_UTMPX, 1,
422 [Some systems need a utmpx entry for /bin/login to work])
423 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV,
424 [Define to a Set Process Title type if your system is
425 supported by bsd-setproctitle.c])
Darren Tucker91d25a02005-11-26 22:24:09 +1100426 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
427 [AIX 5.2 and 5.3 (and presumably newer) require this])
Darren Tucker9afe1152006-06-23 21:24:12 +1000428 AC_DEFINE(PTY_ZEROREAD, 1, [read(1) can return 0 for a non-closed fd])
Damien Miller75b1d102000-01-07 14:01:41 +1100429 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100430*-*-cygwin*)
Damien Millerc8936ac2003-02-11 10:04:03 +1100431 check_for_libcrypt_later=1
Darren Tucker573e3872007-03-02 17:50:03 +1100432 LIBS="$LIBS /usr/lib/textreadmode.o"
Tim Rice7df8d392005-09-19 09:33:39 -0700433 AC_DEFINE(HAVE_CYGWIN, 1, [Define if you are on Cygwin])
434 AC_DEFINE(USE_PIPES, 1, [Use PIPES instead of a socketpair()])
435 AC_DEFINE(DISABLE_SHADOW, 1,
436 [Define if you want to disable shadow passwords])
Tim Rice7df8d392005-09-19 09:33:39 -0700437 AC_DEFINE(NO_X11_UNIX_SOCKETS, 1,
438 [Define if X11 doesn't support AF_UNIX sockets on that system])
439 AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT, 1,
440 [Define if the concept of ports only accessible to
441 superusers isn't known])
442 AC_DEFINE(DISABLE_FD_PASSING, 1,
443 [Define if your platform needs to skip post auth
444 file descriptor passing])
Damien Millerbac2d8a2000-09-05 16:13:06 +1100445 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000446*-*-dgux*)
Tim Ricea74000e2009-03-18 11:25:02 -0700447 AC_DEFINE(IP_TOS_IS_BROKEN, 1,
448 [Define if your system choked on IP TOS setting])
Darren Tucker454da0b2003-12-18 12:52:19 +1100449 AC_DEFINE(SETEUID_BREAKS_SETUID)
450 AC_DEFINE(BROKEN_SETREUID)
451 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom58055132001-02-15 18:34:29 +0000452 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000453*-*-darwin*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000454 AC_MSG_CHECKING(if we have working getaddrinfo)
455 AC_TRY_RUN([#include <mach-o/dyld.h>
456main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
457 exit(0);
458 else
459 exit(1);
460}], [AC_MSG_RESULT(working)],
461 [AC_MSG_RESULT(buggy)
Tim Rice7df8d392005-09-19 09:33:39 -0700462 AC_DEFINE(BROKEN_GETADDRINFO, 1, [getaddrinfo is broken (if present)])],
Tim Rice480ef8d2003-09-21 21:38:11 -0700463 [AC_MSG_RESULT(assume it is working)])
Darren Tucker20379a32003-09-22 11:07:40 +1000464 AC_DEFINE(SETEUID_BREAKS_SETUID)
465 AC_DEFINE(BROKEN_SETREUID)
466 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker528d6fa2007-12-31 21:29:26 +1100467 AC_DEFINE(BROKEN_GLOB, 1, [OS X glob does not do what we expect])
Tim Rice7df8d392005-09-19 09:33:39 -0700468 AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1,
469 [Define if your resolver libs need this for getrrsetbyname])
Darren Tucker3eb48342006-06-23 21:05:12 +1000470 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
471 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
472 [Use tunnel device compatibility to OpenBSD])
473 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
474 [Prepend the address family to IP tunnel traffic])
Darren Tuckeracada072008-02-25 21:05:04 +1100475 m4_pattern_allow(AU_IPv)
476 AC_CHECK_DECL(AU_IPv4, [],
477 AC_DEFINE(AU_IPv4, 0, [System only supports IPv4 audit records])
478 [#include <bsm/audit.h>]
Damien Miller20e231f2009-02-12 13:12:21 +1100479 AC_DEFINE(LASTLOG_WRITE_PUTUTXLINE, 1,
480 [Define if pututxline updates lastlog too])
Darren Tuckeracada072008-02-25 21:05:04 +1100481 )
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000482 ;;
Darren Tucker57b29202006-09-10 20:25:51 +1000483*-*-dragonfly*)
484 SSHDLIBS="$SSHDLIBS -lcrypt"
485 ;;
Darren Tuckerfd333282005-05-28 18:31:42 +1000486*-*-hpux*)
487 # first we define all of the options common to all HP-UX releases
Kevin Steves315f8b72001-06-28 00:24:41 +0000488 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100489 IPADDR_IN_DISPLAY=yes
Damien Millerb0785672000-08-23 09:10:39 +1000490 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700491 AC_DEFINE(LOGIN_NO_ENDOPT, 1,
492 [Define if your login program cannot handle end of options ("--")])
Kevin Steves5feaaef2002-04-23 20:45:55 +0000493 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700494 AC_DEFINE(LOCKED_PASSWD_STRING, "*",
495 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000496 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Darren Tucker1e6616b2005-10-08 12:07:01 +1000497 MAIL="/var/mail/username"
Tim Ricef028f1e2002-07-19 12:41:10 -0700498 LIBS="$LIBS -lsec"
Darren Tuckerfd333282005-05-28 18:31:42 +1000499 AC_CHECK_LIB(xnet, t_error, ,
500 AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
501
502 # next, we define all of the options specific to major releases
503 case "$host" in
504 *-*-hpux10*)
505 if test -z "$GCC"; then
506 CFLAGS="$CFLAGS -Ae"
507 fi
508 ;;
509 *-*-hpux11*)
Tim Rice7df8d392005-09-19 09:33:39 -0700510 AC_DEFINE(PAM_SUN_CODEBASE, 1,
511 [Define if you are using Solaris-derived PAM which
512 passes pam_messages to the conversation function
513 with an extra level of indirection])
514 AC_DEFINE(DISABLE_UTMP, 1,
515 [Define if you don't want to use utmp])
Darren Tuckerfd333282005-05-28 18:31:42 +1000516 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
517 check_for_hpux_broken_getaddrinfo=1
518 check_for_conflicting_getspnam=1
519 ;;
520 esac
521
522 # lastly, we define options specific to minor releases
523 case "$host" in
524 *-*-hpux10.26)
Tim Rice7df8d392005-09-19 09:33:39 -0700525 AC_DEFINE(HAVE_SECUREWARE, 1,
526 [Define if you have SecureWare-based
527 protected password database])
Darren Tuckerfd333282005-05-28 18:31:42 +1000528 disable_ptmx_check=yes
529 LIBS="$LIBS -lsecpw"
530 ;;
531 esac
Damien Miller1bead332000-04-30 00:47:29 +1000532 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100533*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100534 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700535 AC_DEFINE(BROKEN_INET_NTOA, 1,
536 [Define if you system's inet_ntoa is busted
537 (e.g. Irix gcc issue)])
Darren Tuckerbeaf6792003-09-24 20:03:48 +1000538 AC_DEFINE(SETEUID_BREAKS_SETUID)
539 AC_DEFINE(BROKEN_SETREUID)
540 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700541 AC_DEFINE(WITH_ABBREV_NO_TTY, 1,
542 [Define if you shouldn't strip 'tty' from your
543 ttyname in [uw]tmp])
Darren Tuckere41bba52003-08-25 11:51:19 +1000544 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller1808f382000-01-06 12:03:12 +1100545 ;;
546*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100547 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700548 AC_DEFINE(WITH_IRIX_ARRAY, 1,
549 [Define if you have/want arrays
550 (cluster-wide session managment, not C arrays)])
551 AC_DEFINE(WITH_IRIX_PROJECT, 1,
552 [Define if you want IRIX project management])
553 AC_DEFINE(WITH_IRIX_AUDIT, 1,
554 [Define if you want IRIX audit trails])
555 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS, 1,
556 [Define if you want IRIX kernel jobs])])
Damien Miller11fa2cc2000-08-16 10:35:58 +1000557 AC_DEFINE(BROKEN_INET_NTOA)
Darren Tuckerbe79af12003-09-22 11:58:21 +1000558 AC_DEFINE(SETEUID_BREAKS_SETUID)
559 AC_DEFINE(BROKEN_SETREUID)
560 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700561 AC_DEFINE(BROKEN_UPDWTMPX, 1, [updwtmpx is broken (if present)])
Damien Millerf1b9d112002-04-23 23:09:19 +1000562 AC_DEFINE(WITH_ABBREV_NO_TTY)
Darren Tuckere41bba52003-08-25 11:51:19 +1000563 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Millerbeb4ba51999-12-28 15:09:35 +1100564 ;;
Damien Miller90551722009-02-16 15:37:03 +1100565*-*-k*bsd*-gnu | *-*-kopensolaris*-gnu)
566 check_for_libcrypt_later=1
567 AC_DEFINE(PAM_TTY_KLUDGE)
568 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!")
569 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
570 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
571 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
572 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100573*-*-linux*)
574 no_dev_ptmx=1
Damien Millera64b57a2001-01-17 10:44:13 +1100575 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000576 check_for_openpty_ctty_bug=1
Tim Rice7df8d392005-09-19 09:33:39 -0700577 AC_DEFINE(PAM_TTY_KLUDGE, 1,
578 [Work around problematic Linux PAM modules handling of PAM_TTY])
579 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!",
580 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000581 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
Tim Rice7df8d392005-09-19 09:33:39 -0700582 AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM,
583 [Define to whatever link() returns for "not supported"
584 if it doesn't return EOPNOTSUPP.])
Darren Tucker2fba9932005-02-02 23:30:24 +1100585 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
Tim Rice7df8d392005-09-19 09:33:39 -0700586 AC_DEFINE(USE_BTMP)
Damien Miller7bcb0892000-03-11 20:45:40 +1100587 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000588 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000589 1.*|2.0.*)
Tim Rice7df8d392005-09-19 09:33:39 -0700590 AC_DEFINE(BROKEN_CMSG_TYPE, 1,
591 [Define if cmsg_type is not passed correctly])
Darren Tucker3c016542003-05-02 20:48:21 +1000592 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000593 esac
Damien Miller89e03ba2005-12-31 16:42:03 +1100594 # tun(4) forwarding compat code
Damien Millerc4bcc912005-12-31 17:05:58 +1100595 AC_CHECK_HEADERS(linux/if_tun.h)
Damien Millerbd4e4102006-01-01 21:03:30 +1100596 if test "x$ac_cv_header_linux_if_tun_h" = "xyes" ; then
Damien Miller89e03ba2005-12-31 16:42:03 +1100597 AC_DEFINE(SSH_TUN_LINUX, 1,
598 [Open tunnel devices the Linux tun/tap way])
599 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
600 [Use tunnel device compatibility to OpenBSD])
601 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
602 [Prepend the address family to IP tunnel traffic])
603 fi
Damien Millerb29ea912000-01-15 14:12:03 +1100604 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000605mips-sony-bsd|mips-sony-newsos4)
Darren Tucker988b3fd2006-02-08 22:11:27 +1100606 AC_DEFINE(NEED_SETPGRP, 1, [Need setpgrp to acquire controlling tty])
Ben Lindstromb5628642000-10-18 00:02:25 +0000607 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000608 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100609*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000610 check_for_libcrypt_before=1
Tim Riceeae17cc2005-03-17 16:52:20 -0800611 if test "x$withval" != "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800612 need_dash_r=1
613 fi
Damien Miller2dcddbf2006-01-01 19:47:05 +1100614 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
615 AC_CHECK_HEADER([net/if_tap.h], ,
616 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
617 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
618 [Prepend the address family to IP tunnel traffic])
Damien Milleree1c0b32000-01-21 00:18:15 +1100619 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100620*-*-freebsd*)
621 check_for_libcrypt_later=1
Darren Tuckerac7e6302005-10-06 01:39:58 +1000622 AC_DEFINE(LOCKED_PASSWD_PREFIX, "*LOCKED*", [Account locked with pw(1)])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100623 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
624 AC_CHECK_HEADER([net/if_tap.h], ,
625 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
Darren Tucker54e859f2008-03-02 21:52:27 +1100626 AC_DEFINE(BROKEN_GLOB, 1, [FreeBSD glob does not do what we need])
Damien Millerfbd884a2001-02-27 08:39:07 +1100627 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000628*-*-bsdi*)
629 AC_DEFINE(SETEUID_BREAKS_SETUID)
630 AC_DEFINE(BROKEN_SETREUID)
631 AC_DEFINE(BROKEN_SETREGID)
632 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000633*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000634 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100635 conf_utmp_location=/etc/utmp
636 conf_wtmp_location=/usr/adm/wtmp
637 MAIL=/usr/spool/mail
Tim Rice7df8d392005-09-19 09:33:39 -0700638 AC_DEFINE(HAVE_NEXT, 1, [Define if you are on NeXT])
Ben Lindstromb4df15d2000-10-15 00:17:36 +0000639 AC_DEFINE(BROKEN_REALPATH)
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000640 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700641 AC_DEFINE(BROKEN_SAVED_UIDS, 1, [Needed for NeXT])
Damien Miller0f91b4e2000-06-18 15:43:25 +1000642 ;;
Darren Tucker4a422572005-07-14 17:22:11 +1000643*-*-openbsd*)
644 AC_DEFINE(HAVE_ATTRIBUTE__SENTINEL__, 1, [OpenBSD's gcc has sentinel])
Darren Tucker9ac1a652005-10-09 11:40:03 +1000645 AC_DEFINE(HAVE_ATTRIBUTE__BOUNDED__, 1, [OpenBSD's gcc has bounded])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100646 AC_DEFINE(SSH_TUN_OPENBSD, 1, [Open tunnel devices the OpenBSD way])
Damien Millerbb598142006-08-19 08:38:23 +1000647 AC_DEFINE(SYSLOG_R_SAFE_IN_SIGHAND, 1,
648 [syslog_r function is safe to use in in a signal handler])
Darren Tucker4a422572005-07-14 17:22:11 +1000649 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100650*-*-solaris*)
Tim Riceeae17cc2005-03-17 16:52:20 -0800651 if test "x$withval" != "xno" ; then
Tim Ricead4a1882004-02-29 15:53:37 -0800652 need_dash_r=1
653 fi
Damien Miller82cf0ce2000-12-20 13:34:48 +1100654 AC_DEFINE(PAM_SUN_CODEBASE)
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000655 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700656 AC_DEFINE(LOGIN_NEEDS_TERM, 1,
657 [Some versions of /bin/login need the TERM supplied
658 on the commandline])
Ben Lindstrom95276712001-10-23 17:14:00 +0000659 AC_DEFINE(PAM_TTY_KLUDGE)
Tim Rice7df8d392005-09-19 09:33:39 -0700660 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
661 [Define if pam_chauthtok wants real uid set
662 to the unpriv'ed user])
Darren Tuckere41bba52003-08-25 11:51:19 +1000663 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Darren Tuckerc437cda2003-05-10 17:05:46 +1000664 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
Tim Rice7df8d392005-09-19 09:33:39 -0700665 AC_DEFINE(SSHD_ACQUIRES_CTTY, 1,
666 [Define if sshd somehow reacquires a controlling TTY
667 after setsid()])
Darren Tucker0249f932006-06-24 12:10:07 +1000668 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd
669 in case the name is longer than 8 chars])
Darren Tuckere1a790d2003-09-16 11:52:19 +1000670 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000671 # hardwire lastlog location (can't detect it on some versions)
672 conf_lastlog_location="/var/adm/lastlog"
Damien Millera1cb6442000-06-09 11:58:35 +1000673 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
674 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
675 if test "$sol2ver" -ge 8; then
676 AC_MSG_RESULT(yes)
677 AC_DEFINE(DISABLE_UTMP)
Tim Rice7df8d392005-09-19 09:33:39 -0700678 AC_DEFINE(DISABLE_WTMP, 1,
679 [Define if you don't want to use wtmp])
Damien Millera1cb6442000-06-09 11:58:35 +1000680 else
681 AC_MSG_RESULT(no)
682 fi
Damien Miller1b06dc32006-08-31 03:24:41 +1000683 AC_ARG_WITH(solaris-contracts,
684 [ --with-solaris-contracts Enable Solaris process contracts (experimental)],
685 [
686 AC_CHECK_LIB(contract, ct_tmpl_activate,
687 [ AC_DEFINE(USE_SOLARIS_PROCESS_CONTRACTS, 1,
688 [Define if you have Solaris process contracts])
689 SSHDLIBS="$SSHDLIBS -lcontract"
690 AC_SUBST(SSHDLIBS)
691 SPC_MSG="yes" ], )
692 ],
693 )
Damien Miller75b1d102000-01-07 14:01:41 +1100694 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +1000695*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000696 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Damien Millerdfc83f42000-05-20 15:02:59 +1000697 AC_CHECK_FUNCS(getpwanam)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100698 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000699 conf_utmp_location=/etc/utmp
700 conf_wtmp_location=/var/adm/wtmp
701 conf_lastlog_location=/var/adm/lastlog
Damien Millerb0785672000-08-23 09:10:39 +1000702 AC_DEFINE(USE_PIPES)
Damien Millerdfc83f42000-05-20 15:02:59 +1000703 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000704*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -0700705 LIBS="$LIBS -lc89"
Kevin Steves0bd4b342002-01-05 23:24:27 +0000706 AC_DEFINE(USE_PIPES)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000707 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker00130112003-09-22 11:40:24 +1000708 AC_DEFINE(SETEUID_BREAKS_SETUID)
709 AC_DEFINE(BROKEN_SETREUID)
710 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000711 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000712*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -0700713 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Darren Tucker89df7a32003-10-07 20:35:57 +1000714 AC_CHECK_LIB(dl, dlsym, ,)
Darren Tucker79d09fa2005-11-24 22:34:54 +1100715 # -lresolv needs to be at the end of LIBS or DNS lookups break
716 AC_CHECK_LIB(resolv, res_query, [ LIBS="$LIBS -lresolv" ])
Damien Millerfd9885e2001-01-10 08:16:53 +1100717 IPADDR_IN_DISPLAY=yes
718 AC_DEFINE(USE_PIPES)
Damien Miller2ae714f2000-07-11 09:29:50 +1000719 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker3b2a06c2003-10-07 18:37:11 +1000720 AC_DEFINE(SETEUID_BREAKS_SETUID)
721 AC_DEFINE(BROKEN_SETREUID)
722 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000723 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckere1a790d2003-09-16 11:52:19 +1000724 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -0700725 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
726 # Attention: always take care to bind libsocket and libnsl before libc,
727 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +1000728 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800729# UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
Damien Miller78315eb2000-09-29 23:01:36 +1100730*-*-sysv4.2*)
Damien Miller5dfe9762001-02-16 12:05:39 +1100731 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700732 AC_DEFINE(SETEUID_BREAKS_SETUID)
733 AC_DEFINE(BROKEN_SETREUID)
734 AC_DEFINE(BROKEN_SETREGID)
Tim Rice2f97b8b2005-04-11 19:00:18 -0700735 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd])
Tim Rice46259d82005-11-28 18:40:34 -0800736 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller78315eb2000-09-29 23:01:36 +1100737 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800738# UnixWare 7.x, OpenUNIX 8
Damien Miller78315eb2000-09-29 23:01:36 +1100739*-*-sysv5*)
Tim Riceeb456542005-08-30 07:12:02 -0700740 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
Damien Miller5dfe9762001-02-16 12:05:39 +1100741 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700742 AC_DEFINE(SETEUID_BREAKS_SETUID)
743 AC_DEFINE(BROKEN_SETREUID)
744 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700745 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Tim Rice4dbacff2005-06-01 20:09:28 -0700746 case "$host" in
747 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
748 TEST_SHELL=/u95/bin/sh
Tim Rice7df8d392005-09-19 09:33:39 -0700749 AC_DEFINE(BROKEN_LIBIAF, 1,
750 [ia_uinfo routines not supported by OS yet])
Tim Riceb8f00192006-09-06 18:11:29 -0700751 AC_DEFINE(BROKEN_UPDWTMPX)
Tim Rice351529c2009-01-07 10:04:12 -0800752 AC_CHECK_LIB(prot, getluid,[ LIBS="$LIBS -lprot"
753 AC_CHECK_FUNCS(getluid setluid,,,-lprot)
754 AC_DEFINE(HAVE_SECUREWARE)
755 AC_DEFINE(DISABLE_SHADOW)
756 ],,)
Tim Rice4dbacff2005-06-01 20:09:28 -0700757 ;;
Tim Rice46259d82005-11-28 18:40:34 -0800758 *) AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Tim Rice26767912009-01-07 20:50:08 -0800759 check_for_libcrypt_later=1
Tim Rice46259d82005-11-28 18:40:34 -0800760 ;;
Tim Rice4dbacff2005-06-01 20:09:28 -0700761 esac
Damien Miller78315eb2000-09-29 23:01:36 +1100762 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100763*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +1100764 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800765# SCO UNIX and OEM versions of SCO UNIX
Damien Miller78315eb2000-09-29 23:01:36 +1100766*-*-sco3.2v4*)
Tim Ricec390c8d2005-03-07 01:21:37 -0800767 AC_MSG_ERROR("This Platform is no longer supported.")
Damien Miller78315eb2000-09-29 23:01:36 +1100768 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800769# SCO OpenServer 5.x
Damien Miller78315eb2000-09-29 23:01:36 +1100770*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -0800771 if test -z "$GCC"; then
772 CFLAGS="$CFLAGS -belf"
773 fi
Damien Miller5dfe9762001-02-16 12:05:39 +1100774 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000775 no_dev_ptmx=1
Damien Miller5dfe9762001-02-16 12:05:39 +1100776 AC_DEFINE(USE_PIPES)
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000777 AC_DEFINE(HAVE_SECUREWARE)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000778 AC_DEFINE(DISABLE_SHADOW)
Tim Rice9dd30812002-07-07 13:43:36 -0700779 AC_DEFINE(DISABLE_FD_PASSING)
Tim Riced546a842003-09-11 22:24:36 -0700780 AC_DEFINE(SETEUID_BREAKS_SETUID)
781 AC_DEFINE(BROKEN_SETREUID)
782 AC_DEFINE(BROKEN_SETREGID)
Tim Riceae477e92003-09-12 18:15:15 -0700783 AC_DEFINE(WITH_ABBREV_NO_TTY)
Tim Rice816bd0d2004-07-19 10:19:26 -0700784 AC_DEFINE(BROKEN_UPDWTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700785 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Damien Miller217f5672001-02-16 12:12:41 +1100786 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700787 MANTYPE=man
Tim Ricef7ba8f62004-06-20 10:37:32 -0700788 TEST_SHELL=ksh
Damien Millera66626b2000-06-13 18:57:53 +1000789 ;;
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000790*-*-unicosmk*)
Tim Rice7df8d392005-09-19 09:33:39 -0700791 AC_DEFINE(NO_SSH_LASTLOG, 1,
792 [Define if you don't want to use lastlog in session.c])
Darren Tucker2df33432004-01-30 14:34:21 +1100793 AC_DEFINE(SETEUID_BREAKS_SETUID)
794 AC_DEFINE(BROKEN_SETREUID)
795 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000796 AC_DEFINE(USE_PIPES)
797 AC_DEFINE(DISABLE_FD_PASSING)
798 LDFLAGS="$LDFLAGS"
799 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
800 MANTYPE=cat
Ben Lindstrom762104e2002-07-23 00:00:05 +0000801 ;;
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000802*-*-unicosmp*)
Darren Tucker2df33432004-01-30 14:34:21 +1100803 AC_DEFINE(SETEUID_BREAKS_SETUID)
804 AC_DEFINE(BROKEN_SETREUID)
805 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000806 AC_DEFINE(WITH_ABBREV_NO_TTY)
807 AC_DEFINE(USE_PIPES)
808 AC_DEFINE(DISABLE_FD_PASSING)
809 LDFLAGS="$LDFLAGS"
Darren Tucker2df33432004-01-30 14:34:21 +1100810 LIBS="$LIBS -lgen -lacid -ldb"
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000811 MANTYPE=cat
812 ;;
Ben Lindstromd9e08242001-07-22 19:32:00 +0000813*-*-unicos*)
Darren Tucker2df33432004-01-30 14:34:21 +1100814 AC_DEFINE(SETEUID_BREAKS_SETUID)
815 AC_DEFINE(BROKEN_SETREUID)
816 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstromd9e08242001-07-22 19:32:00 +0000817 AC_DEFINE(USE_PIPES)
Tim Rice9dd30812002-07-07 13:43:36 -0700818 AC_DEFINE(DISABLE_FD_PASSING)
Tim Rice81ed5182002-09-25 17:38:46 -0700819 AC_DEFINE(NO_SSH_LASTLOG)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000820 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
821 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
822 MANTYPE=cat
Tim Ricee991e3c2001-08-07 15:29:07 -0700823 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000824*-dec-osf*)
Ben Lindstrom72af2ef2001-05-08 20:42:28 +0000825 AC_MSG_CHECKING(for Digital Unix SIA)
826 no_osfsia=""
827 AC_ARG_WITH(osfsia,
828 [ --with-osfsia Enable Digital Unix SIA],
829 [
830 if test "x$withval" = "xno" ; then
831 AC_MSG_RESULT(disabled)
832 no_osfsia=1
833 fi
834 ],
835 )
836 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +1000837 if test -f /etc/sia/matrix.conf; then
838 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -0700839 AC_DEFINE(HAVE_OSF_SIA, 1,
840 [Define if you have Digital Unix Security
841 Integration Architecture])
842 AC_DEFINE(DISABLE_LOGIN, 1,
843 [Define if you don't want to use your
844 system's login() call])
Ben Lindstromc8c548d2003-03-21 01:18:09 +0000845 AC_DEFINE(DISABLE_FD_PASSING)
Damien Millerb8c656e2000-06-28 15:22:41 +1000846 LIBS="$LIBS -lsecurity -ldb -lm -laud"
Damien Miller1b06dc32006-08-31 03:24:41 +1000847 SIA_MSG="yes"
Damien Millerb8c656e2000-06-28 15:22:41 +1000848 else
849 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -0700850 AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin",
851 [String used in /etc/passwd to denote locked account])
Damien Millerb8c656e2000-06-28 15:22:41 +1000852 fi
853 fi
Darren Tucker3c8e1e12003-08-25 13:27:40 +1000854 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Rice7a74c6b2003-09-21 21:00:59 -0700855 AC_DEFINE(SETEUID_BREAKS_SETUID)
Darren Tuckered92b212003-09-22 11:26:16 +1000856 AC_DEFINE(BROKEN_SETREUID)
857 AC_DEFINE(BROKEN_SETREGID)
Damien Millerff2e4922008-07-05 09:52:03 +1000858 AC_DEFINE(BROKEN_READV_COMPARISON, 1, [Can't do comparisons on readv])
Damien Millerb8c656e2000-06-28 15:22:41 +1000859 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000860
Tim Rice70335a62006-02-04 17:42:58 -0800861*-*-nto-qnx*)
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000862 AC_DEFINE(USE_PIPES)
863 AC_DEFINE(NO_X11_UNIX_SOCKETS)
Tim Rice7df8d392005-09-19 09:33:39 -0700864 AC_DEFINE(MISSING_NFDBITS, 1, [Define on *nto-qnx systems])
865 AC_DEFINE(MISSING_HOWMANY, 1, [Define on *nto-qnx systems])
866 AC_DEFINE(MISSING_FD_MASK, 1, [Define on *nto-qnx systems])
Tim Rice70335a62006-02-04 17:42:58 -0800867 AC_DEFINE(DISABLE_LASTLOG)
Darren Tucker54b75fe2006-02-26 12:31:48 +1100868 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckerbc1bd9d2007-09-27 07:03:20 +1000869 AC_DEFINE(BROKEN_SHADOW_EXPIRE, 1, [QNX shadow support is broken])
Tim Rice2f993462006-02-11 18:37:48 -0800870 enable_etc_default_login=no # has incompatible /etc/default/login
Darren Tucker8acb3b62007-08-10 14:36:12 +1000871 case "$host" in
872 *-*-nto-qnx6*)
873 AC_DEFINE(DISABLE_FD_PASSING)
874 ;;
875 esac
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000876 ;;
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000877
878*-*-ultrix*)
Tim Rice7df8d392005-09-19 09:33:39 -0700879 AC_DEFINE(BROKEN_GETGROUPS, 1, [getgroups(0,NULL) will return -1])
880 AC_DEFINE(BROKEN_MMAP, 1, [Ultrix mmap can't map files])
Darren Tucker988b3fd2006-02-08 22:11:27 +1100881 AC_DEFINE(NEED_SETPGRP)
Tim Ricefcc7ff12005-06-02 20:28:29 -0700882 AC_DEFINE(HAVE_SYS_SYSLOG_H, 1, [Force use of sys/syslog.h on Ultrix])
883 ;;
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000884
885*-*-lynxos)
886 CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
Tim Rice7df8d392005-09-19 09:33:39 -0700887 AC_DEFINE(MISSING_HOWMANY)
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000888 AC_DEFINE(BROKEN_SETVBUF, 1, [LynxOS has broken setvbuf() implementation])
889 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100890esac
891
Darren Tucker6eb93042003-06-29 21:30:41 +1000892AC_MSG_CHECKING(compiler and flags for sanity)
Darren Tucker623d92f2004-09-12 22:36:15 +1000893AC_RUN_IFELSE(
894 [AC_LANG_SOURCE([
Darren Tucker6eb93042003-06-29 21:30:41 +1000895#include <stdio.h>
896int main(){exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +1000897 ])],
Darren Tucker6eb93042003-06-29 21:30:41 +1000898 [ AC_MSG_RESULT(yes) ],
899 [
900 AC_MSG_RESULT(no)
901 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000902 ],
903 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
Darren Tucker6eb93042003-06-29 21:30:41 +1000904)
905
Darren Tucker0c9653f2005-05-28 15:58:14 +1000906dnl Checks for header files.
Damien Millera22ba012000-03-02 23:09:20 +1100907# Checks for libraries.
Tim Rice13aae5e2001-10-21 17:53:58 -0700908AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
909AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000910
Tim Rice1e1ef642003-09-11 22:19:31 -0700911dnl IRIX and Solaris 2.5.1 have dirname() in libgen
912AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
913 AC_CHECK_LIB(gen, dirname,[
914 AC_CACHE_CHECK([for broken dirname],
915 ac_cv_have_broken_dirname, [
916 save_LIBS="$LIBS"
917 LIBS="$LIBS -lgen"
Darren Tucker314d89e2005-10-17 23:29:23 +1000918 AC_RUN_IFELSE(
919 [AC_LANG_SOURCE([[
Tim Rice1e1ef642003-09-11 22:19:31 -0700920#include <libgen.h>
921#include <string.h>
922
923int main(int argc, char **argv) {
924 char *s, buf[32];
925
926 strncpy(buf,"/etc", 32);
927 s = dirname(buf);
928 if (!s || strncmp(s, "/", 32) != 0) {
929 exit(1);
930 } else {
931 exit(0);
932 }
933}
Darren Tucker314d89e2005-10-17 23:29:23 +1000934 ]])],
Tim Rice1e1ef642003-09-11 22:19:31 -0700935 [ ac_cv_have_broken_dirname="no" ],
Darren Tucker314d89e2005-10-17 23:29:23 +1000936 [ ac_cv_have_broken_dirname="yes" ],
937 [ ac_cv_have_broken_dirname="no" ],
Tim Rice1e1ef642003-09-11 22:19:31 -0700938 )
939 LIBS="$save_LIBS"
940 ])
941 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
942 LIBS="$LIBS -lgen"
943 AC_DEFINE(HAVE_DIRNAME)
944 AC_CHECK_HEADERS(libgen.h)
945 fi
946 ])
947])
948
949AC_CHECK_FUNC(getspnam, ,
950 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
Tim Rice7df8d392005-09-19 09:33:39 -0700951AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME, 1,
952 [Define if you have the basename function.]))
Tim Rice1e1ef642003-09-11 22:19:31 -0700953
Tim Rice13aae5e2001-10-21 17:53:58 -0700954dnl zlib is required
955AC_ARG_WITH(zlib,
956 [ --with-zlib=PATH Use zlib in PATH],
Darren Tucker86a5f8d2005-03-21 09:55:17 +1100957 [ if test "x$withval" = "xno" ; then
958 AC_MSG_ERROR([*** zlib is required ***])
959 elif test "x$withval" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -0700960 if test -d "$withval/lib"; then
961 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700962 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700963 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700964 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700965 fi
966 else
967 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700968 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700969 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700970 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700971 fi
972 fi
973 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -0700974 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700975 else
Tim Rice02cebcd2001-10-25 10:01:30 -0700976 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -0700977 fi
Darren Tucker86a5f8d2005-03-21 09:55:17 +1100978 fi ]
Tim Rice13aae5e2001-10-21 17:53:58 -0700979)
980
Tim Ricefcb62202004-01-23 18:35:16 -0800981AC_CHECK_LIB(z, deflate, ,
982 [
983 saved_CPPFLAGS="$CPPFLAGS"
984 saved_LDFLAGS="$LDFLAGS"
985 save_LIBS="$LIBS"
986 dnl Check default zlib install dir
987 if test -n "${need_dash_r}"; then
988 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
989 else
990 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
991 fi
992 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
993 LIBS="$LIBS -lz"
994 AC_TRY_LINK_FUNC(deflate, AC_DEFINE(HAVE_LIBZ),
995 [
996 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
997 ]
998 )
999 ]
1000)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001001AC_CHECK_HEADER([zlib.h], ,AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***]))
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001002
1003AC_ARG_WITH(zlib-version-check,
1004 [ --without-zlib-version-check Disable zlib version check],
1005 [ if test "x$withval" = "xno" ; then
1006 zlib_check_nonfatal=1
1007 fi
1008 ]
1009)
1010
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001011AC_MSG_CHECKING(for possibly buggy zlib)
Darren Tucker623d92f2004-09-12 22:36:15 +10001012AC_RUN_IFELSE([AC_LANG_SOURCE([[
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001013#include <stdio.h>
Darren Tucker2dcd2392004-01-23 17:13:33 +11001014#include <zlib.h>
1015int main()
1016{
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001017 int a=0, b=0, c=0, d=0, n, v;
1018 n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
1019 if (n != 3 && n != 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001020 exit(1);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001021 v = a*1000000 + b*10000 + c*100 + d;
1022 fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
1023
1024 /* 1.1.4 is OK */
1025 if (a == 1 && b == 1 && c >= 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001026 exit(0);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001027
Darren Tucker41097ed2005-07-25 15:24:21 +10001028 /* 1.2.3 and up are OK */
1029 if (v >= 1020300)
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001030 exit(0);
1031
Darren Tucker2dcd2392004-01-23 17:13:33 +11001032 exit(2);
1033}
Darren Tucker623d92f2004-09-12 22:36:15 +10001034 ]])],
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001035 AC_MSG_RESULT(no),
1036 [ AC_MSG_RESULT(yes)
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001037 if test -z "$zlib_check_nonfatal" ; then
1038 AC_MSG_ERROR([*** zlib too old - check config.log ***
1039Your reported zlib version has known security problems. It's possible your
1040vendor has fixed these problems without changing the version number. If you
1041are sure this is the case, you can disable the check by running
1042"./configure --without-zlib-version-check".
Darren Tuckerac1910f2005-07-26 12:00:42 +10001043If you are in doubt, upgrade zlib to version 1.2.3 or greater.
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001044See http://www.gzip.org/zlib/ for details.])
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001045 else
1046 AC_MSG_WARN([zlib version may have security problems])
1047 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10001048 ],
1049 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
Darren Tucker2dcd2392004-01-23 17:13:33 +11001050)
Damien Miller6f9c3372000-10-25 10:06:04 +11001051
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001052dnl UnixWare 2.x
Damien Millera8e06ce2003-11-21 23:48:55 +11001053AC_CHECK_FUNC(strcasecmp,
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001054 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
1055)
Darren Tucker5bfe1682005-11-12 18:42:36 +11001056AC_CHECK_FUNCS(utimes,
Tim Ricecbb90662002-07-08 19:17:10 -07001057 [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
1058 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001059)
Damien Millerab18c411999-11-11 10:40:23 +11001060
Tim Ricee589a292001-11-03 11:09:32 -08001061dnl Checks for libutil functions
1062AC_CHECK_HEADERS(libutil.h)
Tim Rice7df8d392005-09-19 09:33:39 -07001063AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN, 1,
1064 [Define if your libraries define login()])])
Damien Millera7058ec2008-05-20 08:57:06 +10001065AC_CHECK_FUNCS(fmt_scaled logout updwtmp logwtmp)
Tim Ricee589a292001-11-03 11:09:32 -08001066
Ben Lindstrom8697e082001-02-24 21:41:10 +00001067AC_FUNC_STRFTIME
1068
Damien Miller3c027682001-03-14 11:39:45 +11001069# Check for ALTDIRFUNC glob() extension
1070AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
1071AC_EGREP_CPP(FOUNDIT,
1072 [
1073 #include <glob.h>
1074 #ifdef GLOB_ALTDIRFUNC
1075 FOUNDIT
1076 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001077 ],
Damien Miller3c027682001-03-14 11:39:45 +11001078 [
Tim Rice7df8d392005-09-19 09:33:39 -07001079 AC_DEFINE(GLOB_HAS_ALTDIRFUNC, 1,
1080 [Define if your system glob() function has
1081 the GLOB_ALTDIRFUNC extension])
Damien Miller3c027682001-03-14 11:39:45 +11001082 AC_MSG_RESULT(yes)
1083 ],
1084 [
1085 AC_MSG_RESULT(no)
1086 ]
1087)
Damien Millerab18c411999-11-11 10:40:23 +11001088
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001089# Check for g.gl_matchc glob() extension
1090AC_MSG_CHECKING(for gl_matchc field in glob_t)
Darren Tucker486d95e2006-03-15 21:31:39 +11001091AC_TRY_COMPILE(
Damien Milleraf87af12006-03-15 13:02:28 +11001092 [ #include <glob.h> ],
1093 [glob_t g; g.gl_matchc = 1;],
Damien Millera8e06ce2003-11-21 23:48:55 +11001094 [
Tim Rice7df8d392005-09-19 09:33:39 -07001095 AC_DEFINE(GLOB_HAS_GL_MATCHC, 1,
1096 [Define if your system glob() function has
1097 gl_matchc options in glob_t])
Damien Millera8e06ce2003-11-21 23:48:55 +11001098 AC_MSG_RESULT(yes)
1099 ],
1100 [
1101 AC_MSG_RESULT(no)
1102 ]
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001103)
1104
Darren Tucker096faec2006-09-01 20:29:10 +10001105AC_CHECK_DECLS(GLOB_NOMATCH, , , [#include <glob.h>])
1106
Damien Miller18bb4732001-03-28 14:35:30 +10001107AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001108AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001109 [AC_LANG_SOURCE([[
Damien Miller18bb4732001-03-28 14:35:30 +10001110#include <sys/types.h>
1111#include <dirent.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001112int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
Darren Tucker623d92f2004-09-12 22:36:15 +10001113 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001114 [AC_MSG_RESULT(yes)],
Damien Miller18bb4732001-03-28 14:35:30 +10001115 [
1116 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -07001117 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
Darren Tucker79d09fa2005-11-24 22:34:54 +11001118 [Define if your struct dirent expects you to
Tim Rice7df8d392005-09-19 09:33:39 -07001119 allocate extra space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001120 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08001121 [
Darren Tuckera0c2b392004-09-11 23:26:37 +10001122 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
1123 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
Damien Miller18bb4732001-03-28 14:35:30 +10001124 ]
1125)
1126
Damien Miller36f49652004-08-15 18:40:59 +10001127AC_MSG_CHECKING([for /proc/pid/fd directory])
1128if test -d "/proc/$$/fd" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07001129 AC_DEFINE(HAVE_PROC_PID, 1, [Define if you have /proc/$pid/fd])
Damien Miller36f49652004-08-15 18:40:59 +10001130 AC_MSG_RESULT(yes)
1131else
1132 AC_MSG_RESULT(no)
1133fi
1134
Damien Millerc547bf12001-02-16 10:18:12 +11001135# Check whether user wants S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +11001136SKEY_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +11001137AC_ARG_WITH(skey,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001138 [ --with-skey[[=PATH]] Enable S/Key support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +11001139 [
1140 if test "x$withval" != "xno" ; then
1141
1142 if test "x$withval" != "xyes" ; then
1143 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1144 LDFLAGS="$LDFLAGS -L${withval}/lib"
1145 fi
1146
Tim Rice7df8d392005-09-19 09:33:39 -07001147 AC_DEFINE(SKEY, 1, [Define if you want S/Key support])
Damien Millerc547bf12001-02-16 10:18:12 +11001148 LIBS="-lskey $LIBS"
Damien Millera8e06ce2003-11-21 23:48:55 +11001149 SKEY_MSG="yes"
Tim Riceeae17cc2005-03-17 16:52:20 -08001150
Tim Rice4cec93f2002-02-26 08:40:48 -08001151 AC_MSG_CHECKING([for s/key support])
Darren Tucker314d89e2005-10-17 23:29:23 +10001152 AC_LINK_IFELSE(
1153 [AC_LANG_SOURCE([[
Tim Rice4cec93f2002-02-26 08:40:48 -08001154#include <stdio.h>
1155#include <skey.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001156int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
Darren Tucker314d89e2005-10-17 23:29:23 +10001157 ]])],
Tim Rice4cec93f2002-02-26 08:40:48 -08001158 [AC_MSG_RESULT(yes)],
1159 [
1160 AC_MSG_RESULT(no)
Damien Millerc547bf12001-02-16 10:18:12 +11001161 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
1162 ])
Darren Tucker3b908f62004-04-14 15:26:39 +10001163 AC_MSG_CHECKING(if skeychallenge takes 4 arguments)
1164 AC_TRY_COMPILE(
1165 [#include <stdio.h>
1166 #include <skey.h>],
1167 [(void)skeychallenge(NULL,"name","",0);],
1168 [AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001169 AC_DEFINE(SKEYCHALLENGE_4ARG, 1,
1170 [Define if your skeychallenge()
1171 function takes 4 arguments (NetBSD)])],
Darren Tucker3b908f62004-04-14 15:26:39 +10001172 [AC_MSG_RESULT(no)]
1173 )
Damien Millerc547bf12001-02-16 10:18:12 +11001174 fi
1175 ]
1176)
1177
1178# Check whether user wants TCP wrappers support
Tim Rice13aae5e2001-10-21 17:53:58 -07001179TCPW_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +11001180AC_ARG_WITH(tcp-wrappers,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001181 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +11001182 [
1183 if test "x$withval" != "xno" ; then
1184 saved_LIBS="$LIBS"
Tim Rice13aae5e2001-10-21 17:53:58 -07001185 saved_LDFLAGS="$LDFLAGS"
1186 saved_CPPFLAGS="$CPPFLAGS"
Tim Rice8bb561b2005-03-17 16:23:19 -08001187 if test -n "${withval}" && \
Tim Rice35cc69d2005-03-17 16:44:25 -08001188 test "x${withval}" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001189 if test -d "${withval}/lib"; then
1190 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001191 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001192 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001193 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001194 fi
1195 else
1196 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001197 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001198 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001199 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001200 fi
1201 fi
1202 if test -d "${withval}/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001203 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001204 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001205 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001206 fi
Tim Rice13aae5e2001-10-21 17:53:58 -07001207 fi
Darren Tucker20e9f972007-03-25 18:26:01 +10001208 LIBS="-lwrap $LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001209 AC_MSG_CHECKING(for libwrap)
1210 AC_TRY_LINK(
1211 [
Damien Miller0ac45002004-04-14 20:14:26 +10001212#include <sys/types.h>
1213#include <sys/socket.h>
1214#include <netinet/in.h>
Damien Millerc547bf12001-02-16 10:18:12 +11001215#include <tcpd.h>
1216 int deny_severity = 0, allow_severity = 0;
1217 ],
1218 [hosts_access(0);],
1219 [
1220 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001221 AC_DEFINE(LIBWRAP, 1,
1222 [Define if you want
1223 TCP Wrappers support])
Darren Tucker20e9f972007-03-25 18:26:01 +10001224 SSHDLIBS="$SSHDLIBS -lwrap"
Tim Rice13aae5e2001-10-21 17:53:58 -07001225 TCPW_MSG="yes"
Damien Millerc547bf12001-02-16 10:18:12 +11001226 ],
1227 [
1228 AC_MSG_ERROR([*** libwrap missing])
1229 ]
1230 )
Tim Rice4cec93f2002-02-26 08:40:48 -08001231 LIBS="$saved_LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001232 fi
1233 ]
1234)
1235
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001236# Check whether user wants libedit support
1237LIBEDIT_MSG="no"
1238AC_ARG_WITH(libedit,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001239 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001240 [ if test "x$withval" != "xno" ; then
Darren Tucker1df61452005-03-21 09:58:07 +11001241 if test "x$withval" != "xyes"; then
Darren Tuckerc373a562005-09-22 20:15:08 +10001242 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1243 if test -n "${need_dash_r}"; then
1244 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1245 else
1246 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1247 fi
Darren Tucker1df61452005-03-21 09:58:07 +11001248 fi
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001249 AC_CHECK_LIB(edit, el_init,
Tim Rice7df8d392005-09-19 09:33:39 -07001250 [ AC_DEFINE(USE_LIBEDIT, 1, [Use libedit for sftp])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001251 LIBEDIT="-ledit -lcurses"
1252 LIBEDIT_MSG="yes"
1253 AC_SUBST(LIBEDIT)
1254 ],
Darren Tucker1df61452005-03-21 09:58:07 +11001255 [ AC_MSG_ERROR(libedit not found) ],
1256 [ -lcurses ]
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001257 )
Darren Tuckerc7572b22005-08-10 20:34:15 +10001258 AC_MSG_CHECKING(if libedit version is compatible)
Tim Ricec1819c82005-08-15 17:48:40 -07001259 AC_COMPILE_IFELSE(
1260 [AC_LANG_SOURCE([[
1261#include <histedit.h>
Darren Tuckerc7572b22005-08-10 20:34:15 +10001262int main(void)
1263{
1264 int i = H_SETSIZE;
1265 el_init("", NULL, NULL, NULL);
1266 exit(0);
1267}
Tim Ricec1819c82005-08-15 17:48:40 -07001268 ]])],
Darren Tuckerc7572b22005-08-10 20:34:15 +10001269 [ AC_MSG_RESULT(yes) ],
1270 [ AC_MSG_RESULT(no)
1271 AC_MSG_ERROR(libedit version is not compatible) ]
1272 )
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001273 fi ]
1274)
1275
Darren Tuckerd9f88912005-02-20 21:01:48 +11001276AUDIT_MODULE=none
1277AC_ARG_WITH(audit,
1278 [ --with-audit=module Enable EXPERIMENTAL audit support (modules=debug,bsm)],
1279 [
1280 AC_MSG_CHECKING(for supported audit module)
1281 case "$withval" in
1282 bsm)
1283 AC_MSG_RESULT(bsm)
1284 AUDIT_MODULE=bsm
1285 dnl Checks for headers, libs and functions
1286 AC_CHECK_HEADERS(bsm/audit.h, [],
Darren Tucker6d0d6fb2006-09-09 01:05:21 +10001287 [AC_MSG_ERROR(BSM enabled and bsm/audit.h not found)],
1288 [
1289#ifdef HAVE_TIME_H
1290# include <time.h>
1291#endif
1292 ]
1293)
Darren Tuckerd9f88912005-02-20 21:01:48 +11001294 AC_CHECK_LIB(bsm, getaudit, [],
1295 [AC_MSG_ERROR(BSM enabled and required library not found)])
1296 AC_CHECK_FUNCS(getaudit, [],
1297 [AC_MSG_ERROR(BSM enabled and required function not found)])
1298 # These are optional
Darren Tuckeracada072008-02-25 21:05:04 +11001299 AC_CHECK_FUNCS(getaudit_addr aug_get_machine)
Tim Rice7df8d392005-09-19 09:33:39 -07001300 AC_DEFINE(USE_BSM_AUDIT, 1, [Use BSM audit module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001301 ;;
1302 debug)
1303 AUDIT_MODULE=debug
1304 AC_MSG_RESULT(debug)
Tim Rice7df8d392005-09-19 09:33:39 -07001305 AC_DEFINE(SSH_AUDIT_EVENTS, 1, Use audit debugging module)
Darren Tuckerd9f88912005-02-20 21:01:48 +11001306 ;;
Tim Rice8bc6b902005-08-09 10:09:53 -07001307 no)
Tim Ricec1819c82005-08-15 17:48:40 -07001308 AC_MSG_RESULT(no)
Tim Rice8bc6b902005-08-09 10:09:53 -07001309 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001310 *)
1311 AC_MSG_ERROR([Unknown audit module $withval])
1312 ;;
1313 esac ]
1314)
1315
Damien Millerfe1f1432003-02-24 15:45:42 +11001316dnl Checks for library functions. Please keep in alphabetical order
Darren Tucker0c9653f2005-05-28 15:58:14 +10001317AC_CHECK_FUNCS( \
1318 arc4random \
Damien Millera4be7c22008-05-19 14:47:37 +10001319 arc4random_buf \
1320 arc4random_uniform \
Damien Miller57f39152005-11-24 19:58:19 +11001321 asprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001322 b64_ntop \
1323 __b64_ntop \
1324 b64_pton \
1325 __b64_pton \
1326 bcopy \
1327 bindresvport_sa \
1328 clock \
1329 closefrom \
1330 dirfd \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001331 fchmod \
1332 fchown \
1333 freeaddrinfo \
Darren Tucker598eaa62008-06-09 03:32:29 +10001334 fstatvfs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001335 futimes \
1336 getaddrinfo \
1337 getcwd \
1338 getgrouplist \
1339 getnameinfo \
1340 getopt \
1341 getpeereid \
Darren Tucker164aa302007-03-21 21:39:57 +11001342 getpeerucred \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001343 _getpty \
1344 getrlimit \
1345 getttyent \
1346 glob \
1347 inet_aton \
1348 inet_ntoa \
1349 inet_ntop \
1350 innetgr \
1351 login_getcapbool \
1352 md5_crypt \
1353 memmove \
1354 mkdtemp \
1355 mmap \
1356 ngetaddrinfo \
1357 nsleep \
1358 ogetaddrinfo \
1359 openlog_r \
1360 openpty \
Darren Tuckerfebf0f52007-06-25 22:15:12 +10001361 poll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001362 prctl \
1363 pstat \
1364 readpassphrase \
1365 realpath \
1366 recvmsg \
1367 rresvport_af \
1368 sendmsg \
1369 setdtablesize \
1370 setegid \
1371 setenv \
1372 seteuid \
1373 setgroups \
1374 setlogin \
1375 setpcred \
1376 setproctitle \
1377 setregid \
1378 setreuid \
1379 setrlimit \
1380 setsid \
1381 setvbuf \
1382 sigaction \
1383 sigvec \
1384 snprintf \
1385 socketpair \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +10001386 statfs \
1387 statvfs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001388 strdup \
1389 strerror \
1390 strlcat \
1391 strlcpy \
1392 strmode \
1393 strnvis \
1394 strtonum \
Darren Tucker81eb5d52005-06-01 21:39:33 +10001395 strtoll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001396 strtoul \
Damien Miller34a17692007-06-11 14:15:42 +10001397 swap32 \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001398 sysconf \
1399 tcgetpgrp \
1400 truncate \
1401 unsetenv \
1402 updwtmpx \
Damien Miller57f39152005-11-24 19:58:19 +11001403 vasprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001404 vhangup \
1405 vsnprintf \
1406 waitpid \
Damien Millerfe1f1432003-02-24 15:45:42 +11001407)
Tim Rice13aae5e2001-10-21 17:53:58 -07001408
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001409# IRIX has a const char return value for gai_strerror()
1410AC_CHECK_FUNCS(gai_strerror,[
1411 AC_DEFINE(HAVE_GAI_STRERROR)
1412 AC_TRY_COMPILE([
1413#include <sys/types.h>
1414#include <sys/socket.h>
1415#include <netdb.h>
1416
1417const char *gai_strerror(int);],[
1418char *str;
1419
1420str = gai_strerror(0);],[
1421 AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1,
1422 [Define if gai_strerror() returns const char *])])])
1423
Tim Rice7df8d392005-09-19 09:33:39 -07001424AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP, 1,
1425 [Some systems put nanosleep outside of libc]))
Damien Millercd6853c2003-01-28 11:33:42 +11001426
Darren Tuckerf1159b52003-07-07 19:44:01 +10001427dnl Make sure prototypes are defined for these before using them.
Darren Tuckerf1159b52003-07-07 19:44:01 +10001428AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
Darren Tucker390b6d52005-05-28 16:54:36 +10001429AC_CHECK_DECL(strsep,
1430 [AC_CHECK_FUNCS(strsep)],
1431 [],
1432 [
1433#ifdef HAVE_STRING_H
1434# include <string.h>
1435#endif
1436 ])
Ben Lindstrom3e006472002-10-16 00:24:03 +00001437
Darren Tuckerb2427c82003-09-10 15:22:44 +10001438dnl tcsendbreak might be a macro
1439AC_CHECK_DECL(tcsendbreak,
1440 [AC_DEFINE(HAVE_TCSENDBREAK)],
Damien Millera8e06ce2003-11-21 23:48:55 +11001441 [AC_CHECK_FUNCS(tcsendbreak)],
Darren Tuckerb2427c82003-09-10 15:22:44 +10001442 [#include <termios.h>]
1443)
1444
Darren Tucker5bb14002004-04-23 18:53:10 +10001445AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>])
1446
Darren Tucker128a0892006-07-12 19:02:56 +10001447AC_CHECK_DECLS(SHUT_RD, , ,
1448 [
1449#include <sys/types.h>
1450#include <sys/socket.h>
1451 ])
Darren Tucker248469b2006-07-12 14:14:31 +10001452
1453AC_CHECK_DECLS(O_NONBLOCK, , ,
1454 [
1455#include <sys/types.h>
1456#ifdef HAVE_SYS_STAT_H
1457# include <sys/stat.h>
1458#endif
1459#ifdef HAVE_FCNTL_H
1460# include <fcntl.h>
1461#endif
1462 ])
1463
Darren Tuckered0b5922006-09-03 22:44:49 +10001464AC_CHECK_DECLS(writev, , , [
1465#include <sys/types.h>
1466#include <sys/uio.h>
1467#include <unistd.h>
1468 ])
1469
Darren Tucker6d862a52007-04-29 14:39:02 +10001470AC_CHECK_DECLS(MAXSYMLINKS, , , [
1471#include <sys/param.h>
1472 ])
1473
Darren Tuckerdca0edf2007-04-29 15:06:44 +10001474AC_CHECK_DECLS(offsetof, , , [
1475#include <stddef.h>
1476 ])
1477
Darren Tucker2a6b0292003-12-31 14:59:17 +11001478AC_CHECK_FUNCS(setresuid, [
1479 dnl Some platorms have setresuid that isn't implemented, test for this
1480 AC_MSG_CHECKING(if setresuid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001481 AC_RUN_IFELSE(
1482 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001483#include <stdlib.h>
1484#include <errno.h>
1485int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001486 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001487 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001488 [AC_DEFINE(BROKEN_SETRESUID, 1,
1489 [Define if your setresuid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001490 AC_MSG_RESULT(not implemented)],
1491 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001492 )
1493])
Darren Tuckere937be32003-12-17 18:53:26 +11001494
Darren Tucker2a6b0292003-12-31 14:59:17 +11001495AC_CHECK_FUNCS(setresgid, [
1496 dnl Some platorms have setresgid that isn't implemented, test for this
1497 AC_MSG_CHECKING(if setresgid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001498 AC_RUN_IFELSE(
1499 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001500#include <stdlib.h>
1501#include <errno.h>
1502int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001503 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001504 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001505 [AC_DEFINE(BROKEN_SETRESGID, 1,
1506 [Define if your setresgid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001507 AC_MSG_RESULT(not implemented)],
1508 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001509 )
1510])
Darren Tuckere937be32003-12-17 18:53:26 +11001511
Damien Millerad833b32000-08-23 10:46:23 +10001512dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +00001513AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +10001514dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001515AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +00001516AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +10001517dnl Checks for utmpx functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001518AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
andre2ff7b5d2000-06-03 14:57:40 +00001519AC_CHECK_FUNCS(setutxent utmpxname)
Damien Miller20e231f2009-02-12 13:12:21 +11001520dnl Checks for lastlog functions
1521AC_CHECK_FUNCS(getlastlogxbyname)
Damien Millercedfecc1999-11-15 14:36:53 +11001522
Damien Millera8e06ce2003-11-21 23:48:55 +11001523AC_CHECK_FUNC(daemon,
Tim Rice7df8d392005-09-19 09:33:39 -07001524 [AC_DEFINE(HAVE_DAEMON, 1, [Define if your libraries define daemon()])],
1525 [AC_CHECK_LIB(bsd, daemon,
1526 [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
Damien Miller04f80141999-11-19 15:32:34 +11001527)
1528
Damien Millera8e06ce2003-11-21 23:48:55 +11001529AC_CHECK_FUNC(getpagesize,
Tim Rice7df8d392005-09-19 09:33:39 -07001530 [AC_DEFINE(HAVE_GETPAGESIZE, 1,
1531 [Define if your libraries define getpagesize()])],
1532 [AC_CHECK_LIB(ucb, getpagesize,
1533 [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
Damien Miller9fb07e42000-03-05 16:22:59 +11001534)
1535
Damien Millercb170cb2000-07-01 16:52:55 +10001536# Check for broken snprintf
1537if test "x$ac_cv_func_snprintf" = "xyes" ; then
1538 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001539 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001540 [AC_LANG_SOURCE([[
Damien Millercb170cb2000-07-01 16:52:55 +10001541#include <stdio.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001542int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
Darren Tucker623d92f2004-09-12 22:36:15 +10001543 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001544 [AC_MSG_RESULT(yes)],
Damien Millercb170cb2000-07-01 16:52:55 +10001545 [
1546 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -07001547 AC_DEFINE(BROKEN_SNPRINTF, 1,
1548 [Define if your snprintf is busted])
Damien Millercb170cb2000-07-01 16:52:55 +10001549 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001550 ],
1551 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
Damien Millercb170cb2000-07-01 16:52:55 +10001552 )
1553fi
1554
Damien Miller57f39152005-11-24 19:58:19 +11001555# If we don't have a working asprintf, then we strongly depend on vsnprintf
1556# returning the right thing on overflow: the number of characters it tried to
1557# create (as per SUSv3)
1558if test "x$ac_cv_func_asprintf" != "xyes" && \
1559 test "x$ac_cv_func_vsnprintf" = "xyes" ; then
1560 AC_MSG_CHECKING([whether vsnprintf returns correct values on overflow])
1561 AC_RUN_IFELSE(
1562 [AC_LANG_SOURCE([[
1563#include <sys/types.h>
1564#include <stdio.h>
1565#include <stdarg.h>
1566
1567int x_snprintf(char *str,size_t count,const char *fmt,...)
1568{
1569 size_t ret; va_list ap;
1570 va_start(ap, fmt); ret = vsnprintf(str, count, fmt, ap); va_end(ap);
1571 return ret;
1572}
1573int main(void)
1574{
1575 char x[1];
1576 exit(x_snprintf(x, 1, "%s %d", "hello", 12345) == 11 ? 0 : 1);
1577} ]])],
1578 [AC_MSG_RESULT(yes)],
1579 [
1580 AC_MSG_RESULT(no)
1581 AC_DEFINE(BROKEN_SNPRINTF, 1,
1582 [Define if your snprintf is busted])
1583 AC_MSG_WARN([****** Your vsnprintf() function is broken, complain to your vendor])
1584 ],
1585 [ AC_MSG_WARN([cross compiling: Assuming working vsnprintf()]) ]
1586 )
1587fi
1588
Darren Tuckerd40c66c2005-12-17 22:32:03 +11001589# On systems where [v]snprintf is broken, but is declared in stdio,
1590# check that the fmt argument is const char * or just char *.
1591# This is only useful for when BROKEN_SNPRINTF
1592AC_MSG_CHECKING([whether snprintf can declare const char *fmt])
1593AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
1594 int snprintf(char *a, size_t b, const char *c, ...) { return 0; }
1595 int main(void) { snprintf(0, 0, 0); }
1596 ]])],
1597 [AC_MSG_RESULT(yes)
1598 AC_DEFINE(SNPRINTF_CONST, [const],
1599 [Define as const if snprintf() can declare const char *fmt])],
1600 [AC_MSG_RESULT(no)
1601 AC_DEFINE(SNPRINTF_CONST, [/* not const */])])
1602
Damien Millerb4097182004-05-23 14:09:40 +10001603# Check for missing getpeereid (or equiv) support
1604NO_PEERCHECK=""
Darren Tucker164aa302007-03-21 21:39:57 +11001605if test "x$ac_cv_func_getpeereid" != "xyes" -a "x$ac_cv_func_getpeerucred" != "xyes"; then
Damien Millerb4097182004-05-23 14:09:40 +10001606 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
1607 AC_TRY_COMPILE(
1608 [#include <sys/types.h>
1609 #include <sys/socket.h>],
1610 [int i = SO_PEERCRED;],
Darren Tucker9d2562c2005-04-05 19:22:45 +10001611 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001612 AC_DEFINE(HAVE_SO_PEERCRED, 1, [Have PEERCRED socket option])
Darren Tucker9d2562c2005-04-05 19:22:45 +10001613 ],
Damien Millerb4097182004-05-23 14:09:40 +10001614 [AC_MSG_RESULT(no)
1615 NO_PEERCHECK=1]
1616 )
1617fi
1618
Damien Millere8328192003-01-07 15:18:32 +11001619dnl see whether mkstemp() requires XXXXXX
1620if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
1621AC_MSG_CHECKING([for (overly) strict mkstemp])
Darren Tucker314d89e2005-10-17 23:29:23 +10001622AC_RUN_IFELSE(
1623 [AC_LANG_SOURCE([[
Damien Millere8328192003-01-07 15:18:32 +11001624#include <stdlib.h>
1625main() { char template[]="conftest.mkstemp-test";
1626if (mkstemp(template) == -1)
1627 exit(1);
1628unlink(template); exit(0);
1629}
Darren Tucker314d89e2005-10-17 23:29:23 +10001630 ]])],
Damien Millere8328192003-01-07 15:18:32 +11001631 [
1632 AC_MSG_RESULT(no)
1633 ],
Damien Millera8e06ce2003-11-21 23:48:55 +11001634 [
Damien Millere8328192003-01-07 15:18:32 +11001635 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001636 AC_DEFINE(HAVE_STRICT_MKSTEMP, 1, [Silly mkstemp()])
Damien Millere8328192003-01-07 15:18:32 +11001637 ],
1638 [
1639 AC_MSG_RESULT(yes)
1640 AC_DEFINE(HAVE_STRICT_MKSTEMP)
Damien Millera8e06ce2003-11-21 23:48:55 +11001641 ]
Damien Millere8328192003-01-07 15:18:32 +11001642)
1643fi
1644
Darren Tucker70a3d552003-08-21 17:58:29 +10001645dnl make sure that openpty does not reacquire controlling terminal
1646if test ! -z "$check_for_openpty_ctty_bug"; then
1647 AC_MSG_CHECKING(if openpty correctly handles controlling tty)
Darren Tucker314d89e2005-10-17 23:29:23 +10001648 AC_RUN_IFELSE(
1649 [AC_LANG_SOURCE([[
Darren Tucker70a3d552003-08-21 17:58:29 +10001650#include <stdio.h>
1651#include <sys/fcntl.h>
1652#include <sys/types.h>
1653#include <sys/wait.h>
1654
1655int
1656main()
1657{
1658 pid_t pid;
1659 int fd, ptyfd, ttyfd, status;
1660
1661 pid = fork();
1662 if (pid < 0) { /* failed */
1663 exit(1);
1664 } else if (pid > 0) { /* parent */
1665 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +11001666 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +10001667 exit(WEXITSTATUS(status));
1668 else
1669 exit(2);
1670 } else { /* child */
1671 close(0); close(1); close(2);
1672 setsid();
1673 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
1674 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
1675 if (fd >= 0)
1676 exit(3); /* Acquired ctty: broken */
1677 else
1678 exit(0); /* Did not acquire ctty: OK */
1679 }
1680}
Darren Tucker314d89e2005-10-17 23:29:23 +10001681 ]])],
Darren Tucker70a3d552003-08-21 17:58:29 +10001682 [
1683 AC_MSG_RESULT(yes)
1684 ],
1685 [
1686 AC_MSG_RESULT(no)
1687 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker314d89e2005-10-17 23:29:23 +10001688 ],
1689 [
1690 AC_MSG_RESULT(cross-compiling, assuming yes)
Darren Tucker70a3d552003-08-21 17:58:29 +10001691 ]
1692 )
1693fi
1694
Tim Rice8bb561b2005-03-17 16:23:19 -08001695if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1696 test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
Darren Tucker4398cf52004-04-06 21:39:02 +10001697 AC_MSG_CHECKING(if getaddrinfo seems to work)
Darren Tucker314d89e2005-10-17 23:29:23 +10001698 AC_RUN_IFELSE(
1699 [AC_LANG_SOURCE([[
Darren Tucker4398cf52004-04-06 21:39:02 +10001700#include <stdio.h>
1701#include <sys/socket.h>
1702#include <netdb.h>
1703#include <errno.h>
1704#include <netinet/in.h>
1705
1706#define TEST_PORT "2222"
1707
1708int
1709main(void)
1710{
1711 int err, sock;
1712 struct addrinfo *gai_ai, *ai, hints;
1713 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1714
1715 memset(&hints, 0, sizeof(hints));
1716 hints.ai_family = PF_UNSPEC;
1717 hints.ai_socktype = SOCK_STREAM;
1718 hints.ai_flags = AI_PASSIVE;
1719
1720 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1721 if (err != 0) {
1722 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1723 exit(1);
1724 }
1725
1726 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1727 if (ai->ai_family != AF_INET6)
1728 continue;
1729
1730 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1731 sizeof(ntop), strport, sizeof(strport),
1732 NI_NUMERICHOST|NI_NUMERICSERV);
1733
1734 if (err != 0) {
1735 if (err == EAI_SYSTEM)
1736 perror("getnameinfo EAI_SYSTEM");
1737 else
1738 fprintf(stderr, "getnameinfo failed: %s\n",
1739 gai_strerror(err));
1740 exit(2);
1741 }
1742
1743 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1744 if (sock < 0)
1745 perror("socket");
1746 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1747 if (errno == EBADF)
1748 exit(3);
1749 }
1750 }
1751 exit(0);
1752}
Darren Tucker314d89e2005-10-17 23:29:23 +10001753 ]])],
Darren Tucker4398cf52004-04-06 21:39:02 +10001754 [
1755 AC_MSG_RESULT(yes)
1756 ],
1757 [
1758 AC_MSG_RESULT(no)
1759 AC_DEFINE(BROKEN_GETADDRINFO)
Darren Tucker314d89e2005-10-17 23:29:23 +10001760 ],
1761 [
1762 AC_MSG_RESULT(cross-compiling, assuming yes)
Darren Tucker4398cf52004-04-06 21:39:02 +10001763 ]
1764 )
1765fi
1766
Tim Rice8bb561b2005-03-17 16:23:19 -08001767if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1768 test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
Darren Tucker691d5232005-02-15 21:45:57 +11001769 AC_MSG_CHECKING(if getaddrinfo seems to work)
Darren Tucker314d89e2005-10-17 23:29:23 +10001770 AC_RUN_IFELSE(
1771 [AC_LANG_SOURCE([[
Darren Tucker691d5232005-02-15 21:45:57 +11001772#include <stdio.h>
1773#include <sys/socket.h>
1774#include <netdb.h>
1775#include <errno.h>
1776#include <netinet/in.h>
1777
1778#define TEST_PORT "2222"
1779
1780int
1781main(void)
1782{
1783 int err, sock;
1784 struct addrinfo *gai_ai, *ai, hints;
1785 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1786
1787 memset(&hints, 0, sizeof(hints));
1788 hints.ai_family = PF_UNSPEC;
1789 hints.ai_socktype = SOCK_STREAM;
1790 hints.ai_flags = AI_PASSIVE;
1791
1792 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1793 if (err != 0) {
1794 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1795 exit(1);
1796 }
1797
1798 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1799 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1800 continue;
1801
1802 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1803 sizeof(ntop), strport, sizeof(strport),
1804 NI_NUMERICHOST|NI_NUMERICSERV);
1805
1806 if (ai->ai_family == AF_INET && err != 0) {
1807 perror("getnameinfo");
1808 exit(2);
1809 }
1810 }
1811 exit(0);
1812}
Darren Tucker314d89e2005-10-17 23:29:23 +10001813 ]])],
Darren Tucker691d5232005-02-15 21:45:57 +11001814 [
1815 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001816 AC_DEFINE(AIX_GETNAMEINFO_HACK, 1,
1817 [Define if you have a getaddrinfo that fails
1818 for the all-zeros IPv6 address])
Darren Tucker691d5232005-02-15 21:45:57 +11001819 ],
1820 [
1821 AC_MSG_RESULT(no)
1822 AC_DEFINE(BROKEN_GETADDRINFO)
Darren Tucker314d89e2005-10-17 23:29:23 +10001823 ],
Darren Tucker8b272ab2006-06-27 11:20:28 +10001824 [
Darren Tucker314d89e2005-10-17 23:29:23 +10001825 AC_MSG_RESULT(cross-compiling, assuming no)
Darren Tucker691d5232005-02-15 21:45:57 +11001826 ]
1827 )
1828fi
1829
Darren Tuckera56f1912004-11-02 20:30:54 +11001830if test "x$check_for_conflicting_getspnam" = "x1"; then
1831 AC_MSG_CHECKING(for conflicting getspnam in shadow.h)
1832 AC_COMPILE_IFELSE(
1833 [
1834#include <shadow.h>
1835int main(void) {exit(0);}
1836 ],
1837 [
1838 AC_MSG_RESULT(no)
1839 ],
1840 [
1841 AC_MSG_RESULT(yes)
1842 AC_DEFINE(GETSPNAM_CONFLICTING_DEFS, 1,
1843 [Conflicting defs for getspnam])
1844 ]
1845 )
1846fi
1847
Damien Miller606f8802000-09-16 15:39:56 +11001848AC_FUNC_GETPGRP
1849
Tim Riceaef73712002-05-11 13:17:42 -07001850# Search for OpenSSL
1851saved_CPPFLAGS="$CPPFLAGS"
1852saved_LDFLAGS="$LDFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +11001853AC_ARG_WITH(ssl-dir,
1854 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
1855 [
Ben Lindstrom23e13712000-10-29 22:49:19 +00001856 if test "x$withval" != "xno" ; then
Darren Tuckerc7e38d52005-02-09 22:12:30 +11001857 case "$withval" in
1858 # Relative paths
1859 ./*|../*) withval="`pwd`/$withval"
1860 esac
Tim Riceaef73712002-05-11 13:17:42 -07001861 if test -d "$withval/lib"; then
1862 if test -n "${need_dash_r}"; then
1863 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1864 else
1865 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1866 fi
1867 else
1868 if test -n "${need_dash_r}"; then
1869 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
1870 else
1871 LDFLAGS="-L${withval} ${LDFLAGS}"
1872 fi
1873 fi
1874 if test -d "$withval/include"; then
1875 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
1876 else
1877 CPPFLAGS="-I${withval} ${CPPFLAGS}"
1878 fi
Damien Millera22ba012000-03-02 23:09:20 +11001879 fi
1880 ]
1881)
Tim Rice3d5352e2004-02-12 09:27:21 -08001882LIBS="-lcrypto $LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07001883AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL, 1,
1884 [Define if your ssl headers are included
1885 with #include <openssl/header.h>]),
Damien Miller3b512e12000-05-17 23:29:18 +10001886 [
Tim Riceaef73712002-05-11 13:17:42 -07001887 dnl Check default openssl install dir
1888 if test -n "${need_dash_r}"; then
1889 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001890 else
Tim Riceaef73712002-05-11 13:17:42 -07001891 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10001892 fi
Tim Riceaef73712002-05-11 13:17:42 -07001893 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
1894 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
1895 [
1896 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
1897 ]
1898 )
1899 ]
1900)
1901
Tim Riced730b782002-08-13 18:52:10 -07001902# Determine OpenSSL header version
1903AC_MSG_CHECKING([OpenSSL header version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001904AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001905 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07001906#include <stdio.h>
1907#include <string.h>
1908#include <openssl/opensslv.h>
1909#define DATA "conftest.sslincver"
1910int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001911 FILE *fd;
1912 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001913
Damien Millera8e06ce2003-11-21 23:48:55 +11001914 fd = fopen(DATA,"w");
1915 if(fd == NULL)
1916 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001917
1918 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
1919 exit(1);
1920
1921 exit(0);
1922}
Darren Tucker623d92f2004-09-12 22:36:15 +10001923 ]])],
Tim Riced730b782002-08-13 18:52:10 -07001924 [
1925 ssl_header_ver=`cat conftest.sslincver`
1926 AC_MSG_RESULT($ssl_header_ver)
1927 ],
1928 [
1929 AC_MSG_RESULT(not found)
1930 AC_MSG_ERROR(OpenSSL version header not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10001931 ],
1932 [
1933 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07001934 ]
1935)
1936
1937# Determine OpenSSL library version
1938AC_MSG_CHECKING([OpenSSL library version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001939AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001940 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07001941#include <stdio.h>
1942#include <string.h>
1943#include <openssl/opensslv.h>
1944#include <openssl/crypto.h>
1945#define DATA "conftest.ssllibver"
1946int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001947 FILE *fd;
1948 int rc;
Tim Riced730b782002-08-13 18:52:10 -07001949
Damien Millera8e06ce2003-11-21 23:48:55 +11001950 fd = fopen(DATA,"w");
1951 if(fd == NULL)
1952 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07001953
1954 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
1955 exit(1);
1956
1957 exit(0);
1958}
Darren Tucker623d92f2004-09-12 22:36:15 +10001959 ]])],
Tim Riced730b782002-08-13 18:52:10 -07001960 [
1961 ssl_library_ver=`cat conftest.ssllibver`
1962 AC_MSG_RESULT($ssl_library_ver)
1963 ],
1964 [
1965 AC_MSG_RESULT(not found)
1966 AC_MSG_ERROR(OpenSSL library not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10001967 ],
1968 [
1969 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07001970 ]
1971)
Damien Millera22ba012000-03-02 23:09:20 +11001972
Damien Miller9975e482007-03-05 11:51:27 +11001973AC_ARG_WITH(openssl-header-check,
1974 [ --without-openssl-header-check Disable OpenSSL version consistency check],
1975 [ if test "x$withval" = "xno" ; then
1976 openssl_check_nonfatal=1
1977 fi
1978 ]
1979)
1980
Damien Millerec932372002-01-22 22:16:03 +11001981# Sanity check OpenSSL headers
1982AC_MSG_CHECKING([whether OpenSSL's headers match the library])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001983AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001984 [AC_LANG_SOURCE([[
Damien Millerec932372002-01-22 22:16:03 +11001985#include <string.h>
1986#include <openssl/opensslv.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001987int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10001988 ]])],
Damien Millerec932372002-01-22 22:16:03 +11001989 [
1990 AC_MSG_RESULT(yes)
1991 ],
1992 [
1993 AC_MSG_RESULT(no)
Damien Miller9975e482007-03-05 11:51:27 +11001994 if test "x$openssl_check_nonfatal" = "x"; then
1995 AC_MSG_ERROR([Your OpenSSL headers do not match your
1996library. Check config.log for details.
1997If you are sure your installation is consistent, you can disable the check
1998by running "./configure --without-openssl-header-check".
1999Also see contrib/findssl.sh for help identifying header/library mismatches.
2000])
2001 else
2002 AC_MSG_WARN([Your OpenSSL headers do not match your
2003library. Check config.log for details.
Darren Tuckera0472e02003-06-24 20:22:09 +10002004Also see contrib/findssl.sh for help identifying header/library mismatches.])
Damien Miller9975e482007-03-05 11:51:27 +11002005 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10002006 ],
2007 [
2008 AC_MSG_WARN([cross compiling: not checking])
Damien Millerec932372002-01-22 22:16:03 +11002009 ]
2010)
2011
Darren Tucker639bbe82006-08-20 20:17:53 +10002012AC_MSG_CHECKING([if programs using OpenSSL functions will link])
2013AC_LINK_IFELSE(
2014 [AC_LANG_SOURCE([[
2015#include <openssl/evp.h>
2016int main(void) { SSLeay_add_all_algorithms(); }
2017 ]])],
2018 [
2019 AC_MSG_RESULT(yes)
2020 ],
2021 [
2022 AC_MSG_RESULT(no)
2023 saved_LIBS="$LIBS"
2024 LIBS="$LIBS -ldl"
2025 AC_MSG_CHECKING([if programs using OpenSSL need -ldl])
2026 AC_LINK_IFELSE(
2027 [AC_LANG_SOURCE([[
2028#include <openssl/evp.h>
2029int main(void) { SSLeay_add_all_algorithms(); }
2030 ]])],
2031 [
2032 AC_MSG_RESULT(yes)
2033 ],
2034 [
2035 AC_MSG_RESULT(no)
2036 LIBS="$saved_LIBS"
2037 ]
2038 )
2039 ]
2040)
2041
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002042AC_ARG_WITH(ssl-engine,
2043 [ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
2044 [ if test "x$withval" != "xno" ; then
2045 AC_MSG_CHECKING(for OpenSSL ENGINE support)
2046 AC_TRY_COMPILE(
2047 [ #include <openssl/engine.h>],
2048 [
Darren Tucker5e8381e2006-09-29 20:16:51 +10002049ENGINE_load_builtin_engines();ENGINE_register_all_complete();
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002050 ],
2051 [ AC_MSG_RESULT(yes)
2052 AC_DEFINE(USE_OPENSSL_ENGINE, 1,
2053 [Enable OpenSSL engine support])
2054 ],
2055 [ AC_MSG_ERROR(OpenSSL ENGINE support not found)]
2056 )
2057 fi ]
2058)
2059
Darren Tucker129d0bb2005-12-19 17:40:40 +11002060# Check for OpenSSL without EVP_aes_{192,256}_cbc
2061AC_MSG_CHECKING([whether OpenSSL has crippled AES support])
Darren Tuckerf1f4bdd2006-08-04 19:44:23 +10002062AC_LINK_IFELSE(
Darren Tucker129d0bb2005-12-19 17:40:40 +11002063 [AC_LANG_SOURCE([[
2064#include <string.h>
2065#include <openssl/evp.h>
Darren Tuckercc7c2122006-02-02 18:44:19 +11002066int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);}
Darren Tucker129d0bb2005-12-19 17:40:40 +11002067 ]])],
2068 [
2069 AC_MSG_RESULT(no)
2070 ],
2071 [
2072 AC_MSG_RESULT(yes)
2073 AC_DEFINE(OPENSSL_LOBOTOMISED_AES, 1,
2074 [libcrypto is missing AES 192 and 256 bit functions])
2075 ]
2076)
2077
Darren Tucker3e7e15f2009-03-07 22:22:35 +11002078AC_MSG_CHECKING([if EVP_DigestUpdate returns an int])
2079AC_LINK_IFELSE(
2080 [AC_LANG_SOURCE([[
2081#include <string.h>
2082#include <openssl/evp.h>
2083int main(void) { if(EVP_DigestUpdate(NULL, NULL,0)) exit(0); }
2084 ]])],
2085 [
2086 AC_MSG_RESULT(yes)
2087 ],
2088 [
2089 AC_MSG_RESULT(no)
2090 AC_DEFINE(OPENSSL_EVP_DIGESTUPDATE_VOID, 1,
2091 [Define if EVP_DigestUpdate returns void])
2092 ]
2093)
2094
Tim Rice3d5352e2004-02-12 09:27:21 -08002095# Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
2096# because the system crypt() is more featureful.
2097if test "x$check_for_libcrypt_before" = "x1"; then
2098 AC_CHECK_LIB(crypt, crypt)
2099fi
2100
Damien Millera8e06ce2003-11-21 23:48:55 +11002101# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
Tim Rice43fa5572004-02-11 14:46:40 -08002102# version in OpenSSL.
Damien Miller4f9f42a2003-05-10 19:28:02 +10002103if test "x$check_for_libcrypt_later" = "x1"; then
Damien Miller95aa2d62001-03-01 09:16:11 +11002104 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
Damien Millera64b57a2001-01-17 10:44:13 +11002105fi
2106
Damien Milleraf87af12006-03-15 13:02:28 +11002107# Search for SHA256 support in libc and/or OpenSSL
2108AC_CHECK_FUNCS(SHA256_Update EVP_sha256)
2109
Tim Rice99203ec2007-03-26 09:35:28 -07002110saved_LIBS="$LIBS"
2111AC_CHECK_LIB(iaf, ia_openinfo, [
2112 LIBS="$LIBS -liaf"
Tim Rice0eeaf122007-09-10 16:24:17 -07002113 AC_CHECK_FUNCS(set_id, [SSHDLIBS="$SSHDLIBS -liaf"
2114 AC_DEFINE(HAVE_LIBIAF, 1,
2115 [Define if system has libiaf that supports set_id])
2116 ])
Tim Rice99203ec2007-03-26 09:35:28 -07002117])
2118LIBS="$saved_LIBS"
Damien Miller6c21c512002-01-22 21:57:53 +11002119
2120### Configure cryptographic random number support
2121
2122# Check wheter OpenSSL seeds itself
2123AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002124AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002125 [AC_LANG_SOURCE([[
Damien Miller6c21c512002-01-22 21:57:53 +11002126#include <string.h>
2127#include <openssl/rand.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07002128int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10002129 ]])],
Damien Miller6c21c512002-01-22 21:57:53 +11002130 [
2131 OPENSSL_SEEDS_ITSELF=yes
2132 AC_MSG_RESULT(yes)
2133 ],
2134 [
2135 AC_MSG_RESULT(no)
2136 # Default to use of the rand helper if OpenSSL doesn't
2137 # seed itself
2138 USE_RAND_HELPER=yes
Darren Tuckera0c2b392004-09-11 23:26:37 +10002139 ],
2140 [
2141 AC_MSG_WARN([cross compiling: assuming yes])
2142 # This is safe, since all recent OpenSSL versions will
Tim Riceeae17cc2005-03-17 16:52:20 -08002143 # complain at runtime if not seeded correctly.
Darren Tuckera0c2b392004-09-11 23:26:37 +10002144 OPENSSL_SEEDS_ITSELF=yes
Damien Miller6c21c512002-01-22 21:57:53 +11002145 ]
2146)
2147
Darren Tucker3e6bde42006-08-20 20:03:50 +10002148# Check for PAM libs
2149PAM_MSG="no"
2150AC_ARG_WITH(pam,
2151 [ --with-pam Enable PAM support ],
2152 [
2153 if test "x$withval" != "xno" ; then
2154 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
2155 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
2156 AC_MSG_ERROR([PAM headers not found])
2157 fi
2158
2159 saved_LIBS="$LIBS"
2160 AC_CHECK_LIB(dl, dlopen, , )
2161 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
2162 AC_CHECK_FUNCS(pam_getenvlist)
2163 AC_CHECK_FUNCS(pam_putenv)
2164 LIBS="$saved_LIBS"
2165
2166 PAM_MSG="yes"
2167
Darren Tucker20e9f972007-03-25 18:26:01 +10002168 SSHDLIBS="$SSHDLIBS -lpam"
Darren Tucker3e6bde42006-08-20 20:03:50 +10002169 AC_DEFINE(USE_PAM, 1,
2170 [Define if you want to enable PAM support])
Darren Tucker639bbe82006-08-20 20:17:53 +10002171
Darren Tucker3e6bde42006-08-20 20:03:50 +10002172 if test $ac_cv_lib_dl_dlopen = yes; then
Darren Tucker639bbe82006-08-20 20:17:53 +10002173 case "$LIBS" in
2174 *-ldl*)
2175 # libdl already in LIBS
2176 ;;
2177 *)
Darren Tucker20e9f972007-03-25 18:26:01 +10002178 SSHDLIBS="$SSHDLIBS -ldl"
Darren Tucker639bbe82006-08-20 20:17:53 +10002179 ;;
2180 esac
Darren Tucker3e6bde42006-08-20 20:03:50 +10002181 fi
Darren Tucker3e6bde42006-08-20 20:03:50 +10002182 fi
2183 ]
2184)
2185
2186# Check for older PAM
2187if test "x$PAM_MSG" = "xyes" ; then
2188 # Check PAM strerror arguments (old PAM)
2189 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
2190 AC_TRY_COMPILE(
2191 [
2192#include <stdlib.h>
2193#if defined(HAVE_SECURITY_PAM_APPL_H)
2194#include <security/pam_appl.h>
2195#elif defined (HAVE_PAM_PAM_APPL_H)
2196#include <pam/pam_appl.h>
2197#endif
2198 ],
2199 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
2200 [AC_MSG_RESULT(no)],
2201 [
2202 AC_DEFINE(HAVE_OLD_PAM, 1,
2203 [Define if you have an old version of PAM
2204 which takes only one argument to pam_strerror])
2205 AC_MSG_RESULT(yes)
2206 PAM_MSG="yes (old library)"
2207 ]
2208 )
2209fi
Damien Miller6c21c512002-01-22 21:57:53 +11002210
2211# Do we want to force the use of the rand helper?
2212AC_ARG_WITH(rand-helper,
2213 [ --with-rand-helper Use subprocess to gather strong randomness ],
2214 [
2215 if test "x$withval" = "xno" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11002216 # Force use of OpenSSL's internal RNG, even if
Damien Miller6c21c512002-01-22 21:57:53 +11002217 # the previous test showed it to be unseeded.
2218 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
2219 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
2220 OPENSSL_SEEDS_ITSELF=yes
2221 USE_RAND_HELPER=""
2222 fi
2223 else
2224 USE_RAND_HELPER=yes
2225 fi
2226 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08002227)
Damien Miller6c21c512002-01-22 21:57:53 +11002228
2229# Which randomness source do we use?
Tim Rice8bb561b2005-03-17 16:23:19 -08002230if test ! -z "$OPENSSL_SEEDS_ITSELF" && test -z "$USE_RAND_HELPER" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002231 # OpenSSL only
Tim Rice7df8d392005-09-19 09:33:39 -07002232 AC_DEFINE(OPENSSL_PRNG_ONLY, 1,
2233 [Define if you want OpenSSL's internally seeded PRNG only])
Damien Miller6c21c512002-01-22 21:57:53 +11002234 RAND_MSG="OpenSSL internal ONLY"
2235 INSTALL_SSH_RAND_HELPER=""
Tim Rice1e2c6002002-01-30 22:14:03 -08002236elif test ! -z "$USE_RAND_HELPER" ; then
2237 # install rand helper
Damien Miller6c21c512002-01-22 21:57:53 +11002238 RAND_MSG="ssh-rand-helper"
2239 INSTALL_SSH_RAND_HELPER="yes"
2240fi
2241AC_SUBST(INSTALL_SSH_RAND_HELPER)
2242
2243### Configuration of ssh-rand-helper
2244
2245# PRNGD TCP socket
2246AC_ARG_WITH(prngd-port,
2247 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
2248 [
Damien Millere996d722002-01-23 11:20:59 +11002249 case "$withval" in
2250 no)
2251 withval=""
2252 ;;
2253 [[0-9]]*)
2254 ;;
2255 *)
2256 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
2257 ;;
2258 esac
2259 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002260 PRNGD_PORT="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07002261 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT,
2262 [Port number of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11002263 fi
2264 ]
2265)
2266
2267# PRNGD Unix domain socket
2268AC_ARG_WITH(prngd-socket,
2269 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
2270 [
Damien Millere996d722002-01-23 11:20:59 +11002271 case "$withval" in
2272 yes)
Damien Miller6c21c512002-01-22 21:57:53 +11002273 withval="/var/run/egd-pool"
Damien Millere996d722002-01-23 11:20:59 +11002274 ;;
2275 no)
2276 withval=""
2277 ;;
2278 /*)
2279 ;;
2280 *)
2281 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
2282 ;;
2283 esac
2284
2285 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002286 if test ! -z "$PRNGD_PORT" ; then
2287 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
2288 fi
Damien Miller6385ba02002-01-23 08:12:36 +11002289 if test ! -r "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002290 AC_MSG_WARN(Entropy socket is not readable)
2291 fi
2292 PRNGD_SOCKET="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07002293 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET",
2294 [Location of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11002295 fi
Tim Rice4cec93f2002-02-26 08:40:48 -08002296 ],
2297 [
2298 # Check for existing socket only if we don't have a random device already
2299 if test "$USE_RAND_HELPER" = yes ; then
2300 AC_MSG_CHECKING(for PRNGD/EGD socket)
2301 # Insert other locations here
2302 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
2303 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
2304 PRNGD_SOCKET="$sock"
2305 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
2306 break;
2307 fi
2308 done
2309 if test ! -z "$PRNGD_SOCKET" ; then
2310 AC_MSG_RESULT($PRNGD_SOCKET)
2311 else
2312 AC_MSG_RESULT(not found)
2313 fi
2314 fi
Damien Miller6c21c512002-01-22 21:57:53 +11002315 ]
2316)
2317
2318# Change default command timeout for hashing entropy source
2319entropy_timeout=200
2320AC_ARG_WITH(entropy-timeout,
2321 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
2322 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002323 if test -n "$withval" && test "x$withval" != "xno" && \
2324 test "x${withval}" != "xyes"; then
Damien Miller6c21c512002-01-22 21:57:53 +11002325 entropy_timeout=$withval
2326 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08002327 ]
Damien Miller6c21c512002-01-22 21:57:53 +11002328)
Tim Rice7df8d392005-09-19 09:33:39 -07002329AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout,
2330 [Builtin PRNG command timeout])
Damien Miller6c21c512002-01-22 21:57:53 +11002331
Damien Millerd3f6ad22002-06-25 10:24:47 +10002332SSH_PRIVSEP_USER=sshd
Kevin Steves7ff91122002-04-07 19:22:54 +00002333AC_ARG_WITH(privsep-user,
Kevin Stevesc81e1292002-05-13 03:51:40 +00002334 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00002335 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002336 if test -n "$withval" && test "x$withval" != "xno" && \
2337 test "x${withval}" != "xyes"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10002338 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00002339 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08002340 ]
Kevin Steves7ff91122002-04-07 19:22:54 +00002341)
Tim Rice7df8d392005-09-19 09:33:39 -07002342AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER",
2343 [non-privileged user for privilege separation])
Damien Millerd3f6ad22002-06-25 10:24:47 +10002344AC_SUBST(SSH_PRIVSEP_USER)
Kevin Steves7ff91122002-04-07 19:22:54 +00002345
Tim Rice88f2ab52002-03-17 12:17:34 -08002346# We do this little dance with the search path to insure
2347# that programs that we select for use by installed programs
2348# (which may be run by the super-user) come from trusted
2349# locations before they come from the user's private area.
2350# This should help avoid accidentally configuring some
2351# random version of a program in someone's personal bin.
2352
2353OPATH=$PATH
2354PATH=/bin:/usr/bin
Tim Riceae49fe62002-04-12 10:26:21 -07002355test -h /bin 2> /dev/null && PATH=/usr/bin
Tim Rice88f2ab52002-03-17 12:17:34 -08002356test -d /sbin && PATH=$PATH:/sbin
2357test -d /usr/sbin && PATH=$PATH:/usr/sbin
2358PATH=$PATH:/etc:$OPATH
2359
Damien Millera8e06ce2003-11-21 23:48:55 +11002360# These programs are used by the command hashing source to gather entropy
Damien Miller6c21c512002-01-22 21:57:53 +11002361OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
2362OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
2363OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
2364OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
2365OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
2366OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
2367OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
2368OSSH_PATH_ENTROPY_PROG(PROG_W, w)
2369OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
2370OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
2371OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
2372OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
2373OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
2374OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
2375OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
2376OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
Tim Rice88f2ab52002-03-17 12:17:34 -08002377# restore PATH
2378PATH=$OPATH
Damien Miller6c21c512002-01-22 21:57:53 +11002379
2380# Where does ssh-rand-helper get its randomness from?
2381INSTALL_SSH_PRNG_CMDS=""
2382if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
2383 if test ! -z "$PRNGD_PORT" ; then
2384 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
2385 elif test ! -z "$PRNGD_SOCKET" ; then
2386 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
2387 else
2388 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
2389 RAND_HELPER_CMDHASH=yes
2390 INSTALL_SSH_PRNG_CMDS="yes"
2391 fi
2392fi
2393AC_SUBST(INSTALL_SSH_PRNG_CMDS)
2394
2395
Ben Lindstromb5628642000-10-18 00:02:25 +00002396# Cheap hack to ensure NEWS-OS libraries are arranged right.
2397if test ! -z "$SONY" ; then
2398 LIBS="$LIBS -liberty";
2399fi
2400
Damien Miller57f39152005-11-24 19:58:19 +11002401# Check for long long datatypes
2402AC_CHECK_TYPES([long long, unsigned long long, long double])
2403
2404# Check datatype sizes
Damien Millere0f45742000-01-18 09:12:06 +11002405AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +11002406AC_CHECK_SIZEOF(short int, 2)
2407AC_CHECK_SIZEOF(int, 4)
2408AC_CHECK_SIZEOF(long int, 4)
2409AC_CHECK_SIZEOF(long long int, 8)
2410
Damien Millerfa2bb692002-04-23 23:22:25 +10002411# Sanity check long long for some platforms (AIX)
2412if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
2413 ac_cv_sizeof_long_long_int=0
2414fi
2415
Darren Tucker537f1ed2005-10-25 18:38:33 +10002416# compute LLONG_MIN and LLONG_MAX if we don't know them.
2417if test -z "$have_llong_max"; then
2418 AC_MSG_CHECKING([for max value of long long])
2419 AC_RUN_IFELSE(
2420 [AC_LANG_SOURCE([[
2421#include <stdio.h>
2422/* Why is this so damn hard? */
2423#ifdef __GNUC__
2424# undef __GNUC__
2425#endif
2426#define __USE_ISOC99
2427#include <limits.h>
2428#define DATA "conftest.llminmax"
Darren Tuckerd1450db2006-03-13 19:06:51 +11002429#define my_abs(a) ((a) < 0 ? ((a) * -1) : (a))
2430
2431/*
2432 * printf in libc on some platforms (eg old Tru64) does not understand %lld so
2433 * we do this the hard way.
2434 */
2435static int
2436fprint_ll(FILE *f, long long n)
2437{
2438 unsigned int i;
2439 int l[sizeof(long long) * 8];
2440
2441 if (n < 0)
2442 if (fprintf(f, "-") < 0)
2443 return -1;
2444 for (i = 0; n != 0; i++) {
2445 l[i] = my_abs(n % 10);
2446 n /= 10;
2447 }
2448 do {
2449 if (fprintf(f, "%d", l[--i]) < 0)
2450 return -1;
2451 } while (i != 0);
2452 if (fprintf(f, " ") < 0)
2453 return -1;
2454 return 0;
2455}
2456
Darren Tucker537f1ed2005-10-25 18:38:33 +10002457int main(void) {
2458 FILE *f;
2459 long long i, llmin, llmax = 0;
2460
2461 if((f = fopen(DATA,"w")) == NULL)
2462 exit(1);
2463
2464#if defined(LLONG_MIN) && defined(LLONG_MAX)
2465 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
2466 llmin = LLONG_MIN;
2467 llmax = LLONG_MAX;
2468#else
2469 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n");
2470 /* This will work on one's complement and two's complement */
2471 for (i = 1; i > llmax; i <<= 1, i++)
2472 llmax = i;
2473 llmin = llmax + 1LL; /* wrap */
2474#endif
2475
2476 /* Sanity check */
2477 if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
Darren Tuckerd1450db2006-03-13 19:06:51 +11002478 || llmax - 1 > llmax || llmin == llmax || llmin == 0
2479 || llmax == 0 || llmax < LONG_MAX || llmin > LONG_MIN) {
Darren Tucker537f1ed2005-10-25 18:38:33 +10002480 fprintf(f, "unknown unknown\n");
2481 exit(2);
2482 }
2483
Darren Tuckerd1450db2006-03-13 19:06:51 +11002484 if (fprint_ll(f, llmin) < 0)
Darren Tucker537f1ed2005-10-25 18:38:33 +10002485 exit(3);
Darren Tuckerd1450db2006-03-13 19:06:51 +11002486 if (fprint_ll(f, llmax) < 0)
2487 exit(4);
2488 if (fclose(f) < 0)
2489 exit(5);
Darren Tucker537f1ed2005-10-25 18:38:33 +10002490 exit(0);
2491}
2492 ]])],
2493 [
2494 llong_min=`$AWK '{print $1}' conftest.llminmax`
2495 llong_max=`$AWK '{print $2}' conftest.llminmax`
2496
Darren Tucker537f1ed2005-10-25 18:38:33 +10002497 AC_MSG_RESULT($llong_max)
2498 AC_DEFINE_UNQUOTED(LLONG_MAX, [${llong_max}LL],
2499 [max value of long long calculated by configure])
2500 AC_MSG_CHECKING([for min value of long long])
2501 AC_MSG_RESULT($llong_min)
2502 AC_DEFINE_UNQUOTED(LLONG_MIN, [${llong_min}LL],
2503 [min value of long long calculated by configure])
2504 ],
2505 [
2506 AC_MSG_RESULT(not found)
2507 ],
2508 [
2509 AC_MSG_WARN([cross compiling: not checking])
2510 ]
2511 )
2512fi
2513
2514
Damien Millera22ba012000-03-02 23:09:20 +11002515# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11002516AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
2517 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002518 [ #include <sys/types.h> ],
2519 [ u_int a; a = 1;],
Damien Millercaf6dd62000-08-29 11:33:50 +11002520 [ ac_cv_have_u_int="yes" ],
2521 [ ac_cv_have_u_int="no" ]
2522 )
2523])
2524if test "x$ac_cv_have_u_int" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002525 AC_DEFINE(HAVE_U_INT, 1, [define if you have u_int data type])
Damien Millercaf6dd62000-08-29 11:33:50 +11002526 have_u_int=1
2527fi
2528
Damien Miller61e50f12000-05-08 20:49:37 +10002529AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
2530 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002531 [ #include <sys/types.h> ],
2532 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002533 [ ac_cv_have_intxx_t="yes" ],
2534 [ ac_cv_have_intxx_t="no" ]
2535 )
2536])
2537if test "x$ac_cv_have_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002538 AC_DEFINE(HAVE_INTXX_T, 1, [define if you have intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002539 have_intxx_t=1
2540fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002541
2542if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002543 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002544then
2545 AC_MSG_CHECKING([for intXX_t types in stdint.h])
2546 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002547 [ #include <stdint.h> ],
2548 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002549 [
2550 AC_DEFINE(HAVE_INTXX_T)
2551 AC_MSG_RESULT(yes)
2552 ],
2553 [ AC_MSG_RESULT(no) ]
2554 )
2555fi
2556
Damien Miller578783e2000-09-23 14:12:24 +11002557AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
2558 AC_TRY_COMPILE(
Tim Rice907881e2002-07-18 11:44:50 -07002559 [
2560#include <sys/types.h>
2561#ifdef HAVE_STDINT_H
2562# include <stdint.h>
2563#endif
2564#include <sys/socket.h>
2565#ifdef HAVE_SYS_BITYPES_H
2566# include <sys/bitypes.h>
2567#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11002568 ],
2569 [ int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002570 [ ac_cv_have_int64_t="yes" ],
2571 [ ac_cv_have_int64_t="no" ]
2572 )
2573])
2574if test "x$ac_cv_have_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002575 AC_DEFINE(HAVE_INT64_T, 1, [define if you have int64_t data type])
Tim Rice4cec93f2002-02-26 08:40:48 -08002576fi
2577
Damien Miller61e50f12000-05-08 20:49:37 +10002578AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
2579 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002580 [ #include <sys/types.h> ],
2581 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002582 [ ac_cv_have_u_intxx_t="yes" ],
2583 [ ac_cv_have_u_intxx_t="no" ]
2584 )
2585])
2586if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002587 AC_DEFINE(HAVE_U_INTXX_T, 1, [define if you have u_intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002588 have_u_intxx_t=1
2589fi
Damien Millerc6398ef1999-11-20 12:18:40 +11002590
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002591if test -z "$have_u_intxx_t" ; then
2592 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
2593 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002594 [ #include <sys/socket.h> ],
2595 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002596 [
2597 AC_DEFINE(HAVE_U_INTXX_T)
2598 AC_MSG_RESULT(yes)
2599 ],
2600 [ AC_MSG_RESULT(no) ]
2601 )
2602fi
2603
Damien Miller578783e2000-09-23 14:12:24 +11002604AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
2605 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002606 [ #include <sys/types.h> ],
2607 [ u_int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002608 [ ac_cv_have_u_int64_t="yes" ],
2609 [ ac_cv_have_u_int64_t="no" ]
2610 )
2611])
2612if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002613 AC_DEFINE(HAVE_U_INT64_T, 1, [define if you have u_int64_t data type])
Damien Miller578783e2000-09-23 14:12:24 +11002614 have_u_int64_t=1
2615fi
2616
Tim Rice4cec93f2002-02-26 08:40:48 -08002617if test -z "$have_u_int64_t" ; then
2618 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
2619 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002620 [ #include <sys/bitypes.h> ],
Tim Rice4cec93f2002-02-26 08:40:48 -08002621 [ u_int64_t a; a = 1],
2622 [
2623 AC_DEFINE(HAVE_U_INT64_T)
2624 AC_MSG_RESULT(yes)
2625 ],
2626 [ AC_MSG_RESULT(no) ]
2627 )
2628fi
2629
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002630if test -z "$have_u_intxx_t" ; then
2631 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
2632 AC_TRY_COMPILE(
2633 [
2634#include <sys/types.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002635 ],
2636 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002637 [ ac_cv_have_uintxx_t="yes" ],
2638 [ ac_cv_have_uintxx_t="no" ]
2639 )
2640 ])
2641 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002642 AC_DEFINE(HAVE_UINTXX_T, 1,
2643 [define if you have uintxx_t data type])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002644 fi
2645fi
2646
2647if test -z "$have_uintxx_t" ; then
2648 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
2649 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002650 [ #include <stdint.h> ],
2651 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002652 [
2653 AC_DEFINE(HAVE_UINTXX_T)
2654 AC_MSG_RESULT(yes)
2655 ],
2656 [ AC_MSG_RESULT(no) ]
2657 )
2658fi
2659
Damien Milleredb82922000-06-20 13:25:52 +10002660if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002661 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11002662then
2663 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
2664 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +10002665 [
2666#include <sys/bitypes.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002667 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002668 [
Damien Miller70494d12000-04-03 15:57:06 +10002669 int8_t a; int16_t b; int32_t c;
2670 u_int8_t e; u_int16_t f; u_int32_t g;
2671 a = b = c = e = f = g = 1;
Damien Millera8e06ce2003-11-21 23:48:55 +11002672 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002673 [
2674 AC_DEFINE(HAVE_U_INTXX_T)
2675 AC_DEFINE(HAVE_INTXX_T)
2676 AC_MSG_RESULT(yes)
2677 ],
2678 [AC_MSG_RESULT(no)]
Damien Millera8e06ce2003-11-21 23:48:55 +11002679 )
Damien Millerb29ea912000-01-15 14:12:03 +11002680fi
2681
Damien Miller58be7382001-09-15 21:31:54 +10002682
2683AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
2684 AC_TRY_COMPILE(
2685 [
2686#include <sys/types.h>
2687 ],
2688 [ u_char foo; foo = 125; ],
2689 [ ac_cv_have_u_char="yes" ],
2690 [ ac_cv_have_u_char="no" ]
2691 )
2692])
2693if test "x$ac_cv_have_u_char" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002694 AC_DEFINE(HAVE_U_CHAR, 1, [define if you have u_char data type])
Damien Miller58be7382001-09-15 21:31:54 +10002695fi
2696
Tim Rice13aae5e2001-10-21 17:53:58 -07002697TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11002698
Tim Rice200a5c02002-02-26 22:12:34 -08002699AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
Darren Tucker598eaa62008-06-09 03:32:29 +10002700AC_CHECK_TYPES([fsblkcnt_t, fsfilcnt_t],,,[
2701#include <sys/types.h>
2702#ifdef HAVE_SYS_BITYPES_H
2703#include <sys/bitypes.h>
2704#endif
2705#ifdef HAVE_SYS_STATFS_H
2706#include <sys/statfs.h>
2707#endif
2708#ifdef HAVE_SYS_STATVFS_H
2709#include <sys/statvfs.h>
2710#endif
2711])
Tim Rice4cec93f2002-02-26 08:40:48 -08002712
Darren Tucker30ed6682009-03-07 18:06:22 +11002713AC_CHECK_TYPES([in_addr_t, in_port_t],,,
Damien Miller848b9932005-02-24 12:12:34 +11002714[#include <sys/types.h>
2715#include <netinet/in.h>])
Darren Tuckerd9f88912005-02-20 21:01:48 +11002716
Damien Miller61e50f12000-05-08 20:49:37 +10002717AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
2718 AC_TRY_COMPILE(
2719 [
2720#include <sys/types.h>
2721 ],
2722 [ size_t foo; foo = 1235; ],
2723 [ ac_cv_have_size_t="yes" ],
2724 [ ac_cv_have_size_t="no" ]
2725 )
2726])
2727if test "x$ac_cv_have_size_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002728 AC_DEFINE(HAVE_SIZE_T, 1, [define if you have size_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002729fi
Damien Miller95058511999-12-29 10:36:45 +11002730
Damien Miller615f9392000-05-17 22:53:33 +10002731AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
2732 AC_TRY_COMPILE(
2733 [
2734#include <sys/types.h>
2735 ],
2736 [ ssize_t foo; foo = 1235; ],
2737 [ ac_cv_have_ssize_t="yes" ],
2738 [ ac_cv_have_ssize_t="no" ]
2739 )
2740])
2741if test "x$ac_cv_have_ssize_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002742 AC_DEFINE(HAVE_SSIZE_T, 1, [define if you have ssize_t data type])
Damien Miller615f9392000-05-17 22:53:33 +10002743fi
2744
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002745AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
2746 AC_TRY_COMPILE(
2747 [
2748#include <time.h>
2749 ],
2750 [ clock_t foo; foo = 1235; ],
2751 [ ac_cv_have_clock_t="yes" ],
2752 [ ac_cv_have_clock_t="no" ]
2753 )
2754])
2755if test "x$ac_cv_have_clock_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002756 AC_DEFINE(HAVE_CLOCK_T, 1, [define if you have clock_t data type])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002757fi
2758
Damien Millerb54b40e2000-06-23 08:23:34 +10002759AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
2760 AC_TRY_COMPILE(
2761 [
2762#include <sys/types.h>
2763#include <sys/socket.h>
2764 ],
2765 [ sa_family_t foo; foo = 1235; ],
2766 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +11002767 [ AC_TRY_COMPILE(
2768 [
2769#include <sys/types.h>
2770#include <sys/socket.h>
2771#include <netinet/in.h>
2772 ],
2773 [ sa_family_t foo; foo = 1235; ],
2774 [ ac_cv_have_sa_family_t="yes" ],
2775
Damien Millerb54b40e2000-06-23 08:23:34 +10002776 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +11002777 )]
Damien Millerb54b40e2000-06-23 08:23:34 +10002778 )
2779])
2780if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002781 AC_DEFINE(HAVE_SA_FAMILY_T, 1,
2782 [define if you have sa_family_t data type])
Damien Millerb54b40e2000-06-23 08:23:34 +10002783fi
2784
Damien Miller0f91b4e2000-06-18 15:43:25 +10002785AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
2786 AC_TRY_COMPILE(
2787 [
2788#include <sys/types.h>
2789 ],
2790 [ pid_t foo; foo = 1235; ],
2791 [ ac_cv_have_pid_t="yes" ],
2792 [ ac_cv_have_pid_t="no" ]
2793 )
2794])
2795if test "x$ac_cv_have_pid_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002796 AC_DEFINE(HAVE_PID_T, 1, [define if you have pid_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002797fi
2798
2799AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
2800 AC_TRY_COMPILE(
2801 [
2802#include <sys/types.h>
2803 ],
2804 [ mode_t foo; foo = 1235; ],
2805 [ ac_cv_have_mode_t="yes" ],
2806 [ ac_cv_have_mode_t="no" ]
2807 )
2808])
2809if test "x$ac_cv_have_mode_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002810 AC_DEFINE(HAVE_MODE_T, 1, [define if you have mode_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002811fi
2812
Damien Miller61e50f12000-05-08 20:49:37 +10002813
2814AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
2815 AC_TRY_COMPILE(
2816 [
Damien Miller81171112000-04-23 11:14:01 +10002817#include <sys/types.h>
2818#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002819 ],
2820 [ struct sockaddr_storage s; ],
2821 [ ac_cv_have_struct_sockaddr_storage="yes" ],
2822 [ ac_cv_have_struct_sockaddr_storage="no" ]
2823 )
2824])
2825if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002826 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE, 1,
2827 [define if you have struct sockaddr_storage data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002828fi
Damien Miller34132e52000-01-14 15:45:46 +11002829
Damien Miller61e50f12000-05-08 20:49:37 +10002830AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
2831 AC_TRY_COMPILE(
2832 [
Damien Miller7b22d652000-06-18 14:07:04 +10002833#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002834#include <netinet/in.h>
2835 ],
2836 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
2837 [ ac_cv_have_struct_sockaddr_in6="yes" ],
2838 [ ac_cv_have_struct_sockaddr_in6="no" ]
2839 )
2840])
2841if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002842 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6, 1,
2843 [define if you have struct sockaddr_in6 data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002844fi
Damien Miller34132e52000-01-14 15:45:46 +11002845
Damien Miller61e50f12000-05-08 20:49:37 +10002846AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
2847 AC_TRY_COMPILE(
2848 [
Damien Miller7b22d652000-06-18 14:07:04 +10002849#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002850#include <netinet/in.h>
2851 ],
2852 [ struct in6_addr s; s.s6_addr[0] = 0; ],
2853 [ ac_cv_have_struct_in6_addr="yes" ],
2854 [ ac_cv_have_struct_in6_addr="no" ]
2855 )
2856])
2857if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002858 AC_DEFINE(HAVE_STRUCT_IN6_ADDR, 1,
2859 [define if you have struct in6_addr data type])
Tim Rice0f4d2c02008-11-18 21:26:41 -08002860
2861dnl Now check for sin6_scope_id
2862 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
2863 [
2864#ifdef HAVE_SYS_TYPES_H
2865#include <sys/types.h>
2866#endif
2867#include <netinet/in.h>
2868 ])
Damien Miller61e50f12000-05-08 20:49:37 +10002869fi
Damien Miller34132e52000-01-14 15:45:46 +11002870
Damien Miller61e50f12000-05-08 20:49:37 +10002871AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
2872 AC_TRY_COMPILE(
2873 [
Damien Miller81171112000-04-23 11:14:01 +10002874#include <sys/types.h>
2875#include <sys/socket.h>
2876#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002877 ],
2878 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
2879 [ ac_cv_have_struct_addrinfo="yes" ],
2880 [ ac_cv_have_struct_addrinfo="no" ]
2881 )
2882])
2883if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002884 AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1,
2885 [define if you have struct addrinfo data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002886fi
2887
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002888AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
2889 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002890 [ #include <sys/time.h> ],
2891 [ struct timeval tv; tv.tv_sec = 1;],
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002892 [ ac_cv_have_struct_timeval="yes" ],
2893 [ ac_cv_have_struct_timeval="no" ]
2894 )
2895])
2896if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002897 AC_DEFINE(HAVE_STRUCT_TIMEVAL, 1, [define if you have struct timeval])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00002898 have_struct_timeval=1
2899fi
2900
Tim Rice4e4dc562003-03-18 10:21:40 -08002901AC_CHECK_TYPES(struct timespec)
2902
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00002903# We need int64_t or else certian parts of the compile will fail.
Tim Rice8bb561b2005-03-17 16:23:19 -08002904if test "x$ac_cv_have_int64_t" = "xno" && \
2905 test "x$ac_cv_sizeof_long_int" != "x8" && \
2906 test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00002907 echo "OpenSSH requires int64_t support. Contact your vendor or install"
2908 echo "an alternative compiler (I.E., GCC) before continuing."
2909 echo ""
2910 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08002911else
2912dnl test snprintf (broken on SCO w/gcc)
Darren Tuckera0c2b392004-09-11 23:26:37 +10002913 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002914 [AC_LANG_SOURCE([[
Tim Ricebee3f222001-03-11 17:32:12 -08002915#include <stdio.h>
2916#include <string.h>
2917#ifdef HAVE_SNPRINTF
2918main()
2919{
2920 char buf[50];
2921 char expected_out[50];
2922 int mazsize = 50 ;
2923#if (SIZEOF_LONG_INT == 8)
2924 long int num = 0x7fffffffffffffff;
2925#else
Kevin Steves6482ec82001-07-15 02:09:28 +00002926 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08002927#endif
2928 strcpy(expected_out, "9223372036854775807");
2929 snprintf(buf, mazsize, "%lld", num);
2930 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11002931 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08002932 exit(0);
2933}
2934#else
2935main() { exit(0); }
2936#endif
Darren Tucker623d92f2004-09-12 22:36:15 +10002937 ]])], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],
Darren Tuckera0c2b392004-09-11 23:26:37 +10002938 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
Tim Ricebee3f222001-03-11 17:32:12 -08002939 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00002940fi
2941
Damien Miller78315eb2000-09-29 23:01:36 +11002942dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10002943OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
2944OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
2945OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
2946OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
2947OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10002948OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10002949OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
2950OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10002951OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10002952OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
2953OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
2954OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
2955OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00002956OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
2957OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
2958OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
2959OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Tim Rice13aae5e2001-10-21 17:53:58 -07002960
2961AC_CHECK_MEMBERS([struct stat.st_blksize])
Darren Tucker58e298d2005-11-25 13:14:58 +11002962AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE(__res_state, state,
2963 [Define if we don't have struct __res_state in resolv.h])],
2964[
2965#include <stdio.h>
2966#if HAVE_SYS_TYPES_H
2967# include <sys/types.h>
2968#endif
2969#include <netinet/in.h>
2970#include <arpa/nameser.h>
2971#include <resolv.h>
2972])
andre2ff7b5d2000-06-03 14:57:40 +00002973
Damien Miller61e50f12000-05-08 20:49:37 +10002974AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
2975 ac_cv_have_ss_family_in_struct_ss, [
2976 AC_TRY_COMPILE(
2977 [
Damien Miller81171112000-04-23 11:14:01 +10002978#include <sys/types.h>
2979#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002980 ],
2981 [ struct sockaddr_storage s; s.ss_family = 1; ],
2982 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
2983 [ ac_cv_have_ss_family_in_struct_ss="no" ],
2984 )
2985])
2986if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002987 AC_DEFINE(HAVE_SS_FAMILY_IN_SS, 1, [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10002988fi
2989
Damien Miller61e50f12000-05-08 20:49:37 +10002990AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
2991 ac_cv_have___ss_family_in_struct_ss, [
2992 AC_TRY_COMPILE(
2993 [
Damien Miller81171112000-04-23 11:14:01 +10002994#include <sys/types.h>
2995#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002996 ],
2997 [ struct sockaddr_storage s; s.__ss_family = 1; ],
2998 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
2999 [ ac_cv_have___ss_family_in_struct_ss="no" ]
3000 )
3001])
3002if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003003 AC_DEFINE(HAVE___SS_FAMILY_IN_SS, 1,
3004 [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10003005fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11003006
Damien Millerad833b32000-08-23 10:46:23 +10003007AC_CACHE_CHECK([for pw_class field in struct passwd],
3008 ac_cv_have_pw_class_in_struct_passwd, [
3009 AC_TRY_COMPILE(
3010 [
Damien Millerad833b32000-08-23 10:46:23 +10003011#include <pwd.h>
3012 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00003013 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10003014 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
3015 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
3016 )
3017])
3018if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003019 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD, 1,
3020 [Define if your password has a pw_class field])
Damien Millerad833b32000-08-23 10:46:23 +10003021fi
3022
Kevin Steves82456952001-06-22 21:14:18 +00003023AC_CACHE_CHECK([for pw_expire field in struct passwd],
3024 ac_cv_have_pw_expire_in_struct_passwd, [
3025 AC_TRY_COMPILE(
3026 [
3027#include <pwd.h>
3028 ],
3029 [ struct passwd p; p.pw_expire = 0; ],
3030 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
3031 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
3032 )
3033])
3034if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003035 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD, 1,
3036 [Define if your password has a pw_expire field])
Kevin Steves82456952001-06-22 21:14:18 +00003037fi
3038
3039AC_CACHE_CHECK([for pw_change field in struct passwd],
3040 ac_cv_have_pw_change_in_struct_passwd, [
3041 AC_TRY_COMPILE(
3042 [
3043#include <pwd.h>
3044 ],
3045 [ struct passwd p; p.pw_change = 0; ],
3046 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
3047 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
3048 )
3049])
3050if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003051 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD, 1,
3052 [Define if your password has a pw_change field])
Kevin Steves82456952001-06-22 21:14:18 +00003053fi
Damien Miller61e50f12000-05-08 20:49:37 +10003054
Tim Rice28bbb0c2002-05-27 17:37:32 -07003055dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00003056AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
3057 ac_cv_have_accrights_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10003058 AC_COMPILE_IFELSE(
Kevin Steves939c9db2002-03-22 17:23:25 +00003059 [
Tim Riceae49fe62002-04-12 10:26:21 -07003060#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00003061#include <sys/socket.h>
3062#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07003063int main() {
3064#ifdef msg_accrights
Darren Tuckera0c2b392004-09-11 23:26:37 +10003065#error "msg_accrights is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07003066exit(1);
3067#endif
3068struct msghdr m;
3069m.msg_accrights = 0;
3070exit(0);
3071}
Kevin Steves939c9db2002-03-22 17:23:25 +00003072 ],
Kevin Steves939c9db2002-03-22 17:23:25 +00003073 [ ac_cv_have_accrights_in_msghdr="yes" ],
3074 [ ac_cv_have_accrights_in_msghdr="no" ]
3075 )
3076])
3077if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003078 AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR, 1,
3079 [Define if your system uses access rights style
3080 file descriptor passing])
Kevin Steves939c9db2002-03-22 17:23:25 +00003081fi
3082
Darren Tucker77001382008-06-09 06:17:53 +10003083AC_MSG_CHECKING(if f_fsid has val members)
3084AC_TRY_COMPILE([
3085#include <sys/types.h>
3086#include <sys/statvfs.h>],
3087[struct fsid_t t; t.val[0] = 0;],
3088 [ AC_MSG_RESULT(yes)
3089 AC_DEFINE(FSID_HAS_VAL, 1, f_fsid has members) ],
3090 [ AC_MSG_RESULT(no) ]
3091)
3092
Kevin Stevesa44e0352002-04-07 16:18:03 +00003093AC_CACHE_CHECK([for msg_control field in struct msghdr],
3094 ac_cv_have_control_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10003095 AC_COMPILE_IFELSE(
Kevin Stevesa44e0352002-04-07 16:18:03 +00003096 [
Tim Riceae49fe62002-04-12 10:26:21 -07003097#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00003098#include <sys/socket.h>
3099#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07003100int main() {
3101#ifdef msg_control
Darren Tuckera0c2b392004-09-11 23:26:37 +10003102#error "msg_control is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07003103exit(1);
3104#endif
3105struct msghdr m;
3106m.msg_control = 0;
3107exit(0);
3108}
Kevin Stevesa44e0352002-04-07 16:18:03 +00003109 ],
Kevin Stevesa44e0352002-04-07 16:18:03 +00003110 [ ac_cv_have_control_in_msghdr="yes" ],
3111 [ ac_cv_have_control_in_msghdr="no" ]
3112 )
3113])
3114if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003115 AC_DEFINE(HAVE_CONTROL_IN_MSGHDR, 1,
3116 [Define if your system uses ancillary data style
3117 file descriptor passing])
Kevin Stevesa44e0352002-04-07 16:18:03 +00003118fi
3119
Damien Miller61e50f12000-05-08 20:49:37 +10003120AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Damien Millera8e06ce2003-11-21 23:48:55 +11003121 AC_TRY_LINK([],
3122 [ extern char *__progname; printf("%s", __progname); ],
Damien Miller61e50f12000-05-08 20:49:37 +10003123 [ ac_cv_libc_defines___progname="yes" ],
3124 [ ac_cv_libc_defines___progname="no" ]
3125 )
3126])
3127if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003128 AC_DEFINE(HAVE___PROGNAME, 1, [Define if libc defines __progname])
Damien Miller61e50f12000-05-08 20:49:37 +10003129fi
3130
Kevin Steves4846f4a2002-03-22 18:19:53 +00003131AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
3132 AC_TRY_LINK([
3133#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11003134],
3135 [ printf("%s", __FUNCTION__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00003136 [ ac_cv_cc_implements___FUNCTION__="yes" ],
3137 [ ac_cv_cc_implements___FUNCTION__="no" ]
3138 )
3139])
3140if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003141 AC_DEFINE(HAVE___FUNCTION__, 1,
3142 [Define if compiler implements __FUNCTION__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00003143fi
3144
3145AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
3146 AC_TRY_LINK([
3147#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11003148],
3149 [ printf("%s", __func__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00003150 [ ac_cv_cc_implements___func__="yes" ],
3151 [ ac_cv_cc_implements___func__="no" ]
3152 )
3153])
3154if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003155 AC_DEFINE(HAVE___func__, 1, [Define if compiler implements __func__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00003156fi
3157
Damien Miller57f39152005-11-24 19:58:19 +11003158AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [
3159 AC_TRY_LINK(
3160 [#include <stdarg.h>
3161 va_list x,y;],
3162 [va_copy(x,y);],
3163 [ ac_cv_have_va_copy="yes" ],
3164 [ ac_cv_have_va_copy="no" ]
3165 )
3166])
3167if test "x$ac_cv_have_va_copy" = "xyes" ; then
3168 AC_DEFINE(HAVE_VA_COPY, 1, [Define if va_copy exists])
3169fi
3170
3171AC_CACHE_CHECK([whether __va_copy exists], ac_cv_have___va_copy, [
3172 AC_TRY_LINK(
3173 [#include <stdarg.h>
3174 va_list x,y;],
3175 [__va_copy(x,y);],
3176 [ ac_cv_have___va_copy="yes" ],
3177 [ ac_cv_have___va_copy="no" ]
3178 )
3179])
3180if test "x$ac_cv_have___va_copy" = "xyes" ; then
3181 AC_DEFINE(HAVE___VA_COPY, 1, [Define if __va_copy exists])
3182fi
3183
Damien Miller4f8e6692001-07-14 13:22:53 +10003184AC_CACHE_CHECK([whether getopt has optreset support],
3185 ac_cv_have_getopt_optreset, [
3186 AC_TRY_LINK(
3187 [
3188#include <getopt.h>
3189 ],
3190 [ extern int optreset; optreset = 0; ],
3191 [ ac_cv_have_getopt_optreset="yes" ],
3192 [ ac_cv_have_getopt_optreset="no" ]
3193 )
3194])
3195if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003196 AC_DEFINE(HAVE_GETOPT_OPTRESET, 1,
3197 [Define if your getopt(3) defines and uses optreset])
Damien Miller4f8e6692001-07-14 13:22:53 +10003198fi
Damien Millera22ba012000-03-02 23:09:20 +11003199
Damien Millerecbb26d2000-07-15 14:59:14 +10003200AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Damien Millera8e06ce2003-11-21 23:48:55 +11003201 AC_TRY_LINK([],
3202 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
Damien Millerecbb26d2000-07-15 14:59:14 +10003203 [ ac_cv_libc_defines_sys_errlist="yes" ],
3204 [ ac_cv_libc_defines_sys_errlist="no" ]
3205 )
3206])
3207if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003208 AC_DEFINE(HAVE_SYS_ERRLIST, 1,
3209 [Define if your system defines sys_errlist[]])
Damien Millerecbb26d2000-07-15 14:59:14 +10003210fi
3211
3212
Damien Miller11fa2cc2000-08-16 10:35:58 +10003213AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Damien Millera8e06ce2003-11-21 23:48:55 +11003214 AC_TRY_LINK([],
3215 [ extern int sys_nerr; printf("%i", sys_nerr);],
Damien Miller11fa2cc2000-08-16 10:35:58 +10003216 [ ac_cv_libc_defines_sys_nerr="yes" ],
3217 [ ac_cv_libc_defines_sys_nerr="no" ]
3218 )
3219])
3220if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003221 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if your system defines sys_nerr])
Damien Miller11fa2cc2000-08-16 10:35:58 +10003222fi
3223
Damien Millera8e06ce2003-11-21 23:48:55 +11003224SCARD_MSG="no"
Ben Lindstroma42694f2002-04-05 16:11:45 +00003225# Check whether user wants sectok support
3226AC_ARG_WITH(sectok,
3227 [ --with-sectok Enable smartcard support using libsectok],
Damien Miller85de5802001-09-18 14:01:11 +10003228 [
3229 if test "x$withval" != "xno" ; then
3230 if test "x$withval" != "xyes" ; then
3231 CPPFLAGS="$CPPFLAGS -I${withval}"
3232 LDFLAGS="$LDFLAGS -L${withval}"
3233 if test ! -z "$need_dash_r" ; then
3234 LDFLAGS="$LDFLAGS -R${withval}"
3235 fi
3236 if test ! -z "$blibpath" ; then
3237 blibpath="$blibpath:${withval}"
3238 fi
3239 fi
3240 AC_CHECK_HEADERS(sectok.h)
3241 if test "$ac_cv_header_sectok_h" != yes; then
3242 AC_MSG_ERROR(Can't find sectok.h)
3243 fi
3244 AC_CHECK_LIB(sectok, sectok_open)
3245 if test "$ac_cv_lib_sectok_sectok_open" != yes; then
3246 AC_MSG_ERROR(Can't find libsectok)
3247 fi
Tim Rice7df8d392005-09-19 09:33:39 -07003248 AC_DEFINE(SMARTCARD, 1,
3249 [Define if you want smartcard support])
3250 AC_DEFINE(USE_SECTOK, 1,
3251 [Define if you want smartcard support
3252 using sectok])
Damien Millera8e06ce2003-11-21 23:48:55 +11003253 SCARD_MSG="yes, using sectok"
Ben Lindstroma42694f2002-04-05 16:11:45 +00003254 fi
3255 ]
3256)
3257
3258# Check whether user wants OpenSC support
Tim Rice12ee8e22005-03-17 13:37:04 -08003259OPENSC_CONFIG="no"
Ben Lindstroma42694f2002-04-05 16:11:45 +00003260AC_ARG_WITH(opensc,
Darren Tucker82171c62005-09-22 20:19:54 +10003261 [ --with-opensc[[=PFX]] Enable smartcard support using OpenSC (optionally in PATH)],
Tim Rice12ee8e22005-03-17 13:37:04 -08003262 [
3263 if test "x$withval" != "xno" ; then
3264 if test "x$withval" != "xyes" ; then
3265 OPENSC_CONFIG=$withval/bin/opensc-config
3266 else
3267 AC_PATH_PROG(OPENSC_CONFIG, opensc-config, no)
3268 fi
3269 if test "$OPENSC_CONFIG" != "no"; then
3270 LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags`
3271 LIBOPENSC_LIBS=`$OPENSC_CONFIG --libs`
3272 CPPFLAGS="$CPPFLAGS $LIBOPENSC_CFLAGS"
Darren Tucker0ee3cbf2006-09-23 16:25:19 +10003273 LIBS="$LIBS $LIBOPENSC_LIBS"
Tim Rice12ee8e22005-03-17 13:37:04 -08003274 AC_DEFINE(SMARTCARD)
Tim Rice7df8d392005-09-19 09:33:39 -07003275 AC_DEFINE(USE_OPENSC, 1,
3276 [Define if you want smartcard support
3277 using OpenSC])
Tim Rice12ee8e22005-03-17 13:37:04 -08003278 SCARD_MSG="yes, using OpenSC"
3279 fi
3280 fi
3281 ]
3282)
Damien Miller85de5802001-09-18 14:01:11 +10003283
Darren Tucker5f88d342003-10-15 16:57:57 +10003284# Check libraries needed by DNS fingerprint support
Damien Millera8e06ce2003-11-21 23:48:55 +11003285AC_SEARCH_LIBS(getrrsetbyname, resolv,
Tim Rice7df8d392005-09-19 09:33:39 -07003286 [AC_DEFINE(HAVE_GETRRSETBYNAME, 1,
3287 [Define if getrrsetbyname() exists])],
Damien Miller7abe09b2003-05-15 10:53:49 +10003288 [
Darren Tucker5f88d342003-10-15 16:57:57 +10003289 # Needed by our getrrsetbyname()
3290 AC_SEARCH_LIBS(res_query, resolv)
3291 AC_SEARCH_LIBS(dn_expand, resolv)
Darren Tucker8e968a52004-05-13 11:56:16 +10003292 AC_MSG_CHECKING(if res_query will link)
3293 AC_TRY_LINK_FUNC(res_query, AC_MSG_RESULT(yes),
3294 [AC_MSG_RESULT(no)
3295 saved_LIBS="$LIBS"
3296 LIBS="$LIBS -lresolv"
3297 AC_MSG_CHECKING(for res_query in -lresolv)
3298 AC_LINK_IFELSE([
3299#include <resolv.h>
3300int main()
3301{
3302 res_query (0, 0, 0, 0, 0);
3303 return 0;
3304}
3305 ],
3306 [LIBS="$LIBS -lresolv"
3307 AC_MSG_RESULT(yes)],
3308 [LIBS="$saved_LIBS"
3309 AC_MSG_RESULT(no)])
3310 ])
Darren Tucker5f88d342003-10-15 16:57:57 +10003311 AC_CHECK_FUNCS(_getshort _getlong)
Darren Tuckerd886e1c2005-06-01 18:57:45 +10003312 AC_CHECK_DECLS([_getshort, _getlong], , ,
Tim Ricefcc7ff12005-06-02 20:28:29 -07003313 [#include <sys/types.h>
3314 #include <arpa/nameser.h>])
Darren Tucker5f88d342003-10-15 16:57:57 +10003315 AC_CHECK_MEMBER(HEADER.ad,
Tim Rice7df8d392005-09-19 09:33:39 -07003316 [AC_DEFINE(HAVE_HEADER_AD, 1,
3317 [Define if HEADER.ad exists in arpa/nameser.h])],,
Darren Tucker5f88d342003-10-15 16:57:57 +10003318 [#include <arpa/nameser.h>])
3319 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10003320
Darren Tuckercc40d5e2007-04-29 13:58:06 +10003321AC_MSG_CHECKING(if struct __res_state _res is an extern)
3322AC_LINK_IFELSE([
3323#include <stdio.h>
3324#if HAVE_SYS_TYPES_H
3325# include <sys/types.h>
3326#endif
3327#include <netinet/in.h>
3328#include <arpa/nameser.h>
3329#include <resolv.h>
3330extern struct __res_state _res;
3331int main() { return 0; }
3332 ],
3333 [AC_MSG_RESULT(yes)
3334 AC_DEFINE(HAVE__RES_EXTERN, 1,
3335 [Define if you have struct __res_state _res as an extern])
3336 ],
3337 [ AC_MSG_RESULT(no) ]
3338)
3339
Damien Miller73b42d22006-04-22 21:26:08 +10003340# Check whether user wants SELinux support
3341SELINUX_MSG="no"
3342LIBSELINUX=""
3343AC_ARG_WITH(selinux,
Damien Miller5b1c8b32008-03-27 12:33:07 +11003344 [ --with-selinux Enable SELinux support],
Damien Miller73b42d22006-04-22 21:26:08 +10003345 [ if test "x$withval" != "xno" ; then
Darren Tucker20e9f972007-03-25 18:26:01 +10003346 save_LIBS="$LIBS"
Damien Miller73b42d22006-04-22 21:26:08 +10003347 AC_DEFINE(WITH_SELINUX,1,[Define if you want SELinux support.])
3348 SELINUX_MSG="yes"
3349 AC_CHECK_HEADER([selinux/selinux.h], ,
3350 AC_MSG_ERROR(SELinux support requires selinux.h header))
3351 AC_CHECK_LIB(selinux, setexeccon, [ LIBSELINUX="-lselinux" ],
3352 AC_MSG_ERROR(SELinux support requires libselinux library))
Darren Tucker20e9f972007-03-25 18:26:01 +10003353 SSHDLIBS="$SSHDLIBS $LIBSELINUX"
Damien Miller73b42d22006-04-22 21:26:08 +10003354 AC_CHECK_FUNCS(getseuserbyname get_default_context_with_level)
Darren Tuckeradc947d2006-10-07 09:07:20 +10003355 LIBS="$save_LIBS"
Damien Miller73b42d22006-04-22 21:26:08 +10003356 fi ]
3357)
Damien Miller73b42d22006-04-22 21:26:08 +10003358
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003359# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11003360KRB5_MSG="no"
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003361AC_ARG_WITH(kerberos5,
Damien Millera8e06ce2003-11-21 23:48:55 +11003362 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11003363 [ if test "x$withval" != "xno" ; then
3364 if test "x$withval" = "xyes" ; then
3365 KRB5ROOT="/usr/local"
3366 else
3367 KRB5ROOT=${withval}
3368 fi
3369
Tim Rice7df8d392005-09-19 09:33:39 -07003370 AC_DEFINE(KRB5, 1, [Define if you want Kerberos 5 support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11003371 KRB5_MSG="yes"
3372
3373 AC_MSG_CHECKING(for krb5-config)
3374 if test -x $KRB5ROOT/bin/krb5-config ; then
3375 KRB5CONF=$KRB5ROOT/bin/krb5-config
3376 AC_MSG_RESULT($KRB5CONF)
3377
3378 AC_MSG_CHECKING(for gssapi support)
3379 if $KRB5CONF | grep gssapi >/dev/null ; then
3380 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003381 AC_DEFINE(GSSAPI, 1,
3382 [Define this if you want GSSAPI
3383 support in the version 2 protocol])
Darren Tucker0d27ed12004-02-24 10:37:33 +11003384 k5confopts=gssapi
Damien Millera8e06ce2003-11-21 23:48:55 +11003385 else
Darren Tucker1d3ca582004-01-22 12:05:34 +11003386 AC_MSG_RESULT(no)
Darren Tucker0d27ed12004-02-24 10:37:33 +11003387 k5confopts=""
Damien Millera8e06ce2003-11-21 23:48:55 +11003388 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11003389 K5CFLAGS="`$KRB5CONF --cflags $k5confopts`"
3390 K5LIBS="`$KRB5CONF --libs $k5confopts`"
Darren Tucker1d3ca582004-01-22 12:05:34 +11003391 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11003392 AC_MSG_CHECKING(whether we are using Heimdal)
3393 AC_TRY_COMPILE([ #include <krb5.h> ],
3394 [ char *tmp = heimdal_version; ],
3395 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003396 AC_DEFINE(HEIMDAL, 1,
3397 [Define this if you are using the
3398 Heimdal version of Kerberos V5]) ],
Darren Tucker1d3ca582004-01-22 12:05:34 +11003399 AC_MSG_RESULT(no)
3400 )
3401 else
3402 AC_MSG_RESULT(no)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003403 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11003404 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Damien Millera8e06ce2003-11-21 23:48:55 +11003405 AC_MSG_CHECKING(whether we are using Heimdal)
3406 AC_TRY_COMPILE([ #include <krb5.h> ],
3407 [ char *tmp = heimdal_version; ],
3408 [ AC_MSG_RESULT(yes)
3409 AC_DEFINE(HEIMDAL)
Damien Miller5561e0b2004-04-20 20:28:55 +10003410 K5LIBS="-lkrb5 -ldes"
3411 K5LIBS="$K5LIBS -lcom_err -lasn1"
Tim Riceeae17cc2005-03-17 16:52:20 -08003412 AC_CHECK_LIB(roken, net_write,
Damien Miller5561e0b2004-04-20 20:28:55 +10003413 [K5LIBS="$K5LIBS -lroken"])
Damien Millera8e06ce2003-11-21 23:48:55 +11003414 ],
3415 [ AC_MSG_RESULT(no)
3416 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
3417 ]
3418 )
Damien Miller200d0a72003-06-30 19:21:36 +10003419 AC_SEARCH_LIBS(dn_expand, resolv)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003420
Darren Tucker30fd49e2008-06-14 09:14:46 +10003421 AC_CHECK_LIB(gssapi_krb5, gss_init_sec_context,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003422 [ AC_DEFINE(GSSAPI)
Darren Tucker30fd49e2008-06-14 09:14:46 +10003423 K5LIBS="-lgssapi_krb5 $K5LIBS" ],
3424 [ AC_CHECK_LIB(gssapi, gss_init_sec_context,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003425 [ AC_DEFINE(GSSAPI)
Darren Tucker30fd49e2008-06-14 09:14:46 +10003426 K5LIBS="-lgssapi $K5LIBS" ],
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003427 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
3428 $K5LIBS)
3429 ],
3430 $K5LIBS)
Tim Riceeae17cc2005-03-17 16:52:20 -08003431
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003432 AC_CHECK_HEADER(gssapi.h, ,
3433 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11003434 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003435 AC_CHECK_HEADERS(gssapi.h, ,
3436 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11003437 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003438 ]
3439 )
3440
3441 oldCPP="$CPPFLAGS"
3442 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
3443 AC_CHECK_HEADER(gssapi_krb5.h, ,
3444 [ CPPFLAGS="$oldCPP" ])
3445
Damien Millera8e06ce2003-11-21 23:48:55 +11003446 fi
Darren Tucker1d3ca582004-01-22 12:05:34 +11003447 if test ! -z "$need_dash_r" ; then
3448 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
3449 fi
3450 if test ! -z "$blibpath" ; then
3451 blibpath="$blibpath:${KRB5ROOT}/lib"
3452 fi
Tim Ricefd9e9e32005-09-12 17:36:10 -07003453
3454 AC_CHECK_HEADERS(gssapi.h gssapi/gssapi.h)
3455 AC_CHECK_HEADERS(gssapi_krb5.h gssapi/gssapi_krb5.h)
3456 AC_CHECK_HEADERS(gssapi_generic.h gssapi/gssapi_generic.h)
3457
3458 LIBS="$LIBS $K5LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07003459 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS, 1,
3460 [Define this if you want to use libkafs' AFS support]))
Darren Tucker0d27ed12004-02-24 10:37:33 +11003461 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11003462 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003463)
Damien Millerc79bc0d2001-03-28 13:03:42 +10003464
Damien Millera22ba012000-03-02 23:09:20 +11003465# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11003466
Damien Millerf58c6722002-05-13 13:15:42 +10003467PRIVSEP_PATH=/var/empty
3468AC_ARG_WITH(privsep-path,
Tim Ricecbb90662002-07-08 19:17:10 -07003469 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10003470 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003471 if test -n "$withval" && test "x$withval" != "xno" && \
3472 test "x${withval}" != "xyes"; then
Damien Millerf58c6722002-05-13 13:15:42 +10003473 PRIVSEP_PATH=$withval
3474 fi
3475 ]
3476)
3477AC_SUBST(PRIVSEP_PATH)
3478
Damien Millera22ba012000-03-02 23:09:20 +11003479AC_ARG_WITH(xauth,
3480 [ --with-xauth=PATH Specify path to xauth program ],
3481 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003482 if test -n "$withval" && test "x$withval" != "xno" && \
3483 test "x${withval}" != "xyes"; then
Damien Miller7b22d652000-06-18 14:07:04 +10003484 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11003485 fi
3486 ],
3487 [
Tim Ricee22be3b2002-07-17 19:20:07 -07003488 TestPath="$PATH"
3489 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
3490 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
3491 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
3492 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
3493 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
Damien Milleredb82922000-06-20 13:25:52 +10003494 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11003495 xauth_path="/usr/openwin/bin/xauth"
3496 fi
3497 ]
3498)
3499
Damien Miller7d901272003-01-13 16:55:22 +11003500STRIP_OPT=-s
3501AC_ARG_ENABLE(strip,
3502 [ --disable-strip Disable calling strip(1) on install],
3503 [
3504 if test "x$enableval" = "xno" ; then
3505 STRIP_OPT=
3506 fi
3507 ]
3508)
3509AC_SUBST(STRIP_OPT)
3510
Damien Millera19cf472000-11-29 13:28:50 +11003511if test -z "$xauth_path" ; then
3512 XAUTH_PATH="undefined"
3513 AC_SUBST(XAUTH_PATH)
3514else
Tim Rice7df8d392005-09-19 09:33:39 -07003515 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path",
3516 [Define if xauth is found in your path])
Damien Millera19cf472000-11-29 13:28:50 +11003517 XAUTH_PATH=$xauth_path
3518 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11003519fi
Damien Millera22ba012000-03-02 23:09:20 +11003520
3521# Check for mail directory (last resort if we cannot get it from headers)
3522if test ! -z "$MAIL" ; then
3523 maildir=`dirname $MAIL`
Tim Rice7df8d392005-09-19 09:33:39 -07003524 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir",
3525 [Set this to your mail directory if you don't have maillock.h])
Damien Millera22ba012000-03-02 23:09:20 +11003526fi
3527
Darren Tucker623d92f2004-09-12 22:36:15 +10003528if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10003529 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
3530 disable_ptmx_check=yes
3531fi
Damien Millera22ba012000-03-02 23:09:20 +11003532if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003533 if test "x$disable_ptmx_check" != "xyes" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11003534 AC_CHECK_FILE("/dev/ptmx",
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003535 [
Tim Rice7df8d392005-09-19 09:33:39 -07003536 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX, 1,
3537 [Define if you have /dev/ptmx])
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003538 have_dev_ptmx=1
3539 ]
3540 )
3541 fi
Damien Millera22ba012000-03-02 23:09:20 +11003542fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10003543
Darren Tucker623d92f2004-09-12 22:36:15 +10003544if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10003545 AC_CHECK_FILE("/dev/ptc",
3546 [
Tim Rice7df8d392005-09-19 09:33:39 -07003547 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC, 1,
3548 [Define if you have /dev/ptc])
Darren Tuckera0c2b392004-09-11 23:26:37 +10003549 have_dev_ptc=1
3550 ]
3551 )
3552else
3553 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
3554fi
Damien Miller204ad072000-03-02 23:56:12 +11003555
Damien Millera22ba012000-03-02 23:09:20 +11003556# Options from here on. Some of these are preset by platform above
Ben Lindstrom9841b0a2001-06-09 02:26:58 +00003557AC_ARG_WITH(mantype,
Damien Miller897741e2001-04-16 10:41:46 +10003558 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11003559 [
Damien Miller897741e2001-04-16 10:41:46 +10003560 case "$withval" in
3561 man|cat|doc)
3562 MANTYPE=$withval
3563 ;;
3564 *)
3565 AC_MSG_ERROR(invalid man type: $withval)
3566 ;;
3567 esac
Damien Miller670a4b82000-01-22 13:53:11 +11003568 ]
3569)
Ben Lindstrombc709922001-04-18 18:04:21 +00003570if test -z "$MANTYPE"; then
Tim Ricee22be3b2002-07-17 19:20:07 -07003571 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
3572 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
Ben Lindstrombc709922001-04-18 18:04:21 +00003573 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
3574 MANTYPE=doc
3575 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
3576 MANTYPE=man
3577 else
3578 MANTYPE=cat
3579 fi
3580fi
Damien Miller670a4b82000-01-22 13:53:11 +11003581AC_SUBST(MANTYPE)
Ben Lindstrombc709922001-04-18 18:04:21 +00003582if test "$MANTYPE" = "doc"; then
3583 mansubdir=man;
3584else
3585 mansubdir=$MANTYPE;
3586fi
3587AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11003588
Damien Millera22ba012000-03-02 23:09:20 +11003589# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11003590MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11003591AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003592 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11003593 [
Damien Millerb85dcad2000-03-11 11:37:00 +11003594 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003595 AC_DEFINE(HAVE_MD5_PASSWORDS, 1,
3596 [Define if you want to allow MD5 passwords])
Damien Millera8e06ce2003-11-21 23:48:55 +11003597 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11003598 fi
3599 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003600)
3601
Damien Millera22ba012000-03-02 23:09:20 +11003602# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11003603AC_ARG_WITH(shadow,
3604 [ --without-shadow Disable shadow password support],
3605 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003606 if test "x$withval" = "xno" ; then
Damien Miller76112de1999-12-21 11:18:08 +11003607 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10003608 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11003609 fi
3610 ]
3611)
3612
Damien Miller1f335fb2000-06-26 11:31:33 +10003613if test -z "$disable_shadow" ; then
3614 AC_MSG_CHECKING([if the systems has expire shadow information])
3615 AC_TRY_COMPILE(
3616 [
3617#include <sys/types.h>
3618#include <shadow.h>
3619 struct spwd sp;
3620 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
3621 [ sp_expire_available=yes ], []
3622 )
3623
3624 if test "x$sp_expire_available" = "xyes" ; then
3625 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003626 AC_DEFINE(HAS_SHADOW_EXPIRE, 1,
3627 [Define if you want to use shadow password expire field])
Damien Miller1f335fb2000-06-26 11:31:33 +10003628 else
3629 AC_MSG_RESULT(no)
3630 fi
3631fi
3632
Damien Millera22ba012000-03-02 23:09:20 +11003633# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11003634if test ! -z "$IPADDR_IN_DISPLAY" ; then
3635 DISPLAY_HACK_MSG="yes"
Tim Rice7df8d392005-09-19 09:33:39 -07003636 AC_DEFINE(IPADDR_IN_DISPLAY, 1,
3637 [Define if you need to use IP address
3638 instead of hostname in $DISPLAY])
Damien Miller9a947342000-08-30 10:03:33 +11003639else
Damien Millera8e06ce2003-11-21 23:48:55 +11003640 DISPLAY_HACK_MSG="no"
Damien Miller9a947342000-08-30 10:03:33 +11003641 AC_ARG_WITH(ipaddr-display,
3642 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
3643 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003644 if test "x$withval" != "xno" ; then
Damien Miller9a947342000-08-30 10:03:33 +11003645 AC_DEFINE(IPADDR_IN_DISPLAY)
Damien Millera8e06ce2003-11-21 23:48:55 +11003646 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11003647 fi
3648 ]
3649 )
3650fi
Damien Miller76112de1999-12-21 11:18:08 +11003651
Darren Tuckere1a790d2003-09-16 11:52:19 +10003652# check for /etc/default/login and use it if present.
Tim Rice7ff4e6d2003-09-22 19:50:14 -07003653AC_ARG_ENABLE(etc-default-login,
Darren Tucker1b6f2292005-02-11 16:11:49 +11003654 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
Darren Tucker2f9573d2005-02-10 22:28:54 +11003655 [ if test "x$enableval" = "xno"; then
3656 AC_MSG_NOTICE([/etc/default/login handling disabled])
3657 etc_default_login=no
3658 else
3659 etc_default_login=yes
3660 fi ],
Darren Tucker314d89e2005-10-17 23:29:23 +10003661 [ if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
3662 then
3663 AC_MSG_WARN([cross compiling: not checking /etc/default/login])
3664 etc_default_login=no
3665 else
3666 etc_default_login=yes
3667 fi ]
Darren Tucker2f9573d2005-02-10 22:28:54 +11003668)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003669
Darren Tucker2f9573d2005-02-10 22:28:54 +11003670if test "x$etc_default_login" != "xno"; then
3671 AC_CHECK_FILE("/etc/default/login",
3672 [ external_path_file=/etc/default/login ])
Darren Tucker314d89e2005-10-17 23:29:23 +10003673 if test "x$external_path_file" = "x/etc/default/login"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003674 AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN, 1,
3675 [Define if your system has /etc/default/login])
Darren Tuckera0c2b392004-09-11 23:26:37 +10003676 fi
Darren Tucker2f9573d2005-02-10 22:28:54 +11003677fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003678
Tim Rice43a1c132002-04-17 21:19:14 -07003679dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
Tim Rice8bb561b2005-03-17 16:23:19 -08003680if test $ac_cv_func_login_getcapbool = "yes" && \
3681 test $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003682 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07003683fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003684
Damien Millera22ba012000-03-02 23:09:20 +11003685# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11003686SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11003687AC_ARG_WITH(default-path,
Damien Millerf71d2a52002-05-13 15:14:08 +10003688 [ --with-default-path= Specify default \$PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11003689 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10003690 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07003691 AC_MSG_WARN([
3692--with-default-path=PATH has no effect on this system.
3693Edit /etc/login.conf instead.])
Tim Riceeae17cc2005-03-17 16:52:20 -08003694 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07003695 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003696 AC_MSG_WARN([
3697--with-default-path=PATH will only be used if PATH is not defined in
3698$external_path_file .])
3699 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003700 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11003701 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11003702 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003703 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10003704 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
3705 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07003706 else
Tim Riceb925b4b2003-09-15 22:40:49 -07003707 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003708 AC_MSG_WARN([
3709If PATH is defined in $external_path_file, ensure the path to scp is included,
3710otherwise scp will not work.])
3711 fi
Darren Tucker314d89e2005-10-17 23:29:23 +10003712 AC_RUN_IFELSE(
3713 [AC_LANG_SOURCE([[
Tim Rice59ea0a02001-03-10 13:50:45 -08003714/* find out what STDPATH is */
3715#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08003716#ifdef HAVE_PATHS_H
3717# include <paths.h>
3718#endif
3719#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08003720# ifdef _PATH_USERPATH /* Irix */
3721# define _PATH_STDPATH _PATH_USERPATH
3722# else
3723# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
3724# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08003725#endif
3726#include <sys/types.h>
3727#include <sys/stat.h>
3728#include <fcntl.h>
3729#define DATA "conftest.stdpath"
3730
3731main()
3732{
3733 FILE *fd;
3734 int rc;
Tim Riceeae17cc2005-03-17 16:52:20 -08003735
Tim Rice59ea0a02001-03-10 13:50:45 -08003736 fd = fopen(DATA,"w");
3737 if(fd == NULL)
3738 exit(1);
Tim Riceeae17cc2005-03-17 16:52:20 -08003739
Tim Rice59ea0a02001-03-10 13:50:45 -08003740 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
3741 exit(1);
3742
3743 exit(0);
3744}
Darren Tucker314d89e2005-10-17 23:29:23 +10003745 ]])],
3746 [ user_path=`cat conftest.stdpath` ],
Tim Rice59ea0a02001-03-10 13:50:45 -08003747 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
3748 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
3749 )
3750# make sure $bindir is in USER_PATH so scp will work
3751 t_bindir=`eval echo ${bindir}`
3752 case $t_bindir in
3753 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
3754 esac
3755 case $t_bindir in
3756 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
3757 esac
3758 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
3759 if test $? -ne 0 ; then
3760 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
3761 if test $? -ne 0 ; then
3762 user_path=$user_path:$t_bindir
3763 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
3764 fi
3765 fi
Tim Rice43a1c132002-04-17 21:19:14 -07003766 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11003767)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003768if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003769 AC_DEFINE_UNQUOTED(USER_PATH, "$user_path", [Specify default $PATH])
Tim Rice43a1c132002-04-17 21:19:14 -07003770 AC_SUBST(user_path)
3771fi
Damien Miller5a3e6831999-12-27 09:48:56 +11003772
Damien Millera18bbd32002-05-13 10:48:57 +10003773# Set superuser path separately to user path
Damien Millera18bbd32002-05-13 10:48:57 +10003774AC_ARG_WITH(superuser-path,
3775 [ --with-superuser-path= Specify different path for super-user],
3776 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003777 if test -n "$withval" && test "x$withval" != "xno" && \
3778 test "x${withval}" != "xyes"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003779 AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval",
3780 [Define if you want a different $PATH
3781 for the superuser])
Damien Millera18bbd32002-05-13 10:48:57 +10003782 superuser_path=$withval
3783 fi
3784 ]
3785)
3786
3787
Damien Miller61e50f12000-05-08 20:49:37 +10003788AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11003789IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11003790AC_ARG_WITH(4in6,
3791 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
3792 [
3793 if test "x$withval" != "xno" ; then
3794 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003795 AC_DEFINE(IPV4_IN_IPV6, 1,
3796 [Detect IPv4 in IPv6 mapped addresses
3797 and treat as IPv4])
Damien Millera8e06ce2003-11-21 23:48:55 +11003798 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003799 else
3800 AC_MSG_RESULT(no)
3801 fi
3802 ],[
3803 if test "x$inet6_default_4in6" = "xyes"; then
3804 AC_MSG_RESULT([yes (default)])
3805 AC_DEFINE(IPV4_IN_IPV6)
Damien Millera8e06ce2003-11-21 23:48:55 +11003806 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003807 else
3808 AC_MSG_RESULT([no (default)])
3809 fi
3810 ]
3811)
3812
Damien Miller60396b02001-02-18 17:01:00 +11003813# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11003814BSD_AUTH_MSG=no
Damien Miller60396b02001-02-18 17:01:00 +11003815AC_ARG_WITH(bsd-auth,
3816 [ --with-bsd-auth Enable BSD auth support],
3817 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003818 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003819 AC_DEFINE(BSD_AUTH, 1,
3820 [Define if you have BSD auth support])
Damien Miller6c21c512002-01-22 21:57:53 +11003821 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11003822 fi
3823 ]
3824)
3825
Damien Millera22ba012000-03-02 23:09:20 +11003826# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11003827piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11003828# make sure the directory exists
Tim Riceeae17cc2005-03-17 16:52:20 -08003829if test ! -d $piddir ; then
Damien Miller78315eb2000-09-29 23:01:36 +11003830 piddir=`eval echo ${sysconfdir}`
3831 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11003832 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11003833 esac
3834fi
3835
Tim Rice88f2ab52002-03-17 12:17:34 -08003836AC_ARG_WITH(pid-dir,
3837 [ --with-pid-dir=PATH Specify location of ssh.pid file],
3838 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003839 if test -n "$withval" && test "x$withval" != "xno" && \
3840 test "x${withval}" != "xyes"; then
Tim Rice88f2ab52002-03-17 12:17:34 -08003841 piddir=$withval
Tim Riceeae17cc2005-03-17 16:52:20 -08003842 if test ! -d $piddir ; then
Tim Rice88f2ab52002-03-17 12:17:34 -08003843 AC_MSG_WARN([** no $piddir directory on this system **])
3844 fi
3845 fi
3846 ]
3847)
3848
Tim Rice7df8d392005-09-19 09:33:39 -07003849AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir", [Specify location of ssh.pid])
Damien Millerb13c73e2000-01-17 22:02:17 +11003850AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11003851
andre2ff7b5d2000-06-03 14:57:40 +00003852dnl allow user to disable some login recording features
3853AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00003854 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003855 [
3856 if test "x$enableval" = "xno" ; then
3857 AC_DEFINE(DISABLE_LASTLOG)
3858 fi
3859 ]
andre2ff7b5d2000-06-03 14:57:40 +00003860)
3861AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00003862 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003863 [
3864 if test "x$enableval" = "xno" ; then
3865 AC_DEFINE(DISABLE_UTMP)
3866 fi
3867 ]
andre2ff7b5d2000-06-03 14:57:40 +00003868)
3869AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00003870 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003871 [
3872 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003873 AC_DEFINE(DISABLE_UTMPX, 1,
3874 [Define if you don't want to use utmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003875 fi
3876 ]
andre2ff7b5d2000-06-03 14:57:40 +00003877)
3878AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00003879 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003880 [
3881 if test "x$enableval" = "xno" ; then
3882 AC_DEFINE(DISABLE_WTMP)
3883 fi
3884 ]
andre2ff7b5d2000-06-03 14:57:40 +00003885)
3886AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00003887 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003888 [
3889 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003890 AC_DEFINE(DISABLE_WTMPX, 1,
3891 [Define if you don't want to use wtmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003892 fi
3893 ]
andre2ff7b5d2000-06-03 14:57:40 +00003894)
3895AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00003896 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003897 [
3898 if test "x$enableval" = "xno" ; then
3899 AC_DEFINE(DISABLE_LOGIN)
3900 fi
3901 ]
andre2ff7b5d2000-06-03 14:57:40 +00003902)
3903AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00003904 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003905 [
3906 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003907 AC_DEFINE(DISABLE_PUTUTLINE, 1,
3908 [Define if you don't want to use pututline()
3909 etc. to write [uw]tmp])
Darren Tuckera3020db2003-06-28 12:54:33 +10003910 fi
3911 ]
andre2ff7b5d2000-06-03 14:57:40 +00003912)
3913AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00003914 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10003915 [
3916 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003917 AC_DEFINE(DISABLE_PUTUTXLINE, 1,
3918 [Define if you don't want to use pututxline()
3919 etc. to write [uw]tmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10003920 fi
3921 ]
andre2ff7b5d2000-06-03 14:57:40 +00003922)
3923AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00003924 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11003925 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003926 if test "x$withval" = "xno" ; then
Damien Miller709528a2001-01-31 09:57:55 +11003927 AC_DEFINE(DISABLE_LASTLOG)
Tim Rice35cc69d2005-03-17 16:44:25 -08003928 elif test -n "$withval" && test "x${withval}" != "xyes"; then
Damien Miller709528a2001-01-31 09:57:55 +11003929 conf_lastlog_location=$withval
3930 fi
3931 ]
3932)
andre2ff7b5d2000-06-03 14:57:40 +00003933
3934dnl lastlog, [uw]tmpx? detection
3935dnl NOTE: set the paths in the platform section to avoid the
3936dnl need for command-line parameters
3937dnl lastlog and [uw]tmp are subject to a file search if all else fails
3938
3939dnl lastlog detection
3940dnl NOTE: the code itself will detect if lastlog is a directory
3941AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
3942AC_TRY_COMPILE([
3943#include <sys/types.h>
3944#include <utmp.h>
3945#ifdef HAVE_LASTLOG_H
3946# include <lastlog.h>
3947#endif
Damien Miller2994e082000-06-04 15:51:47 +10003948#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00003949# include <paths.h>
3950#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003951#ifdef HAVE_LOGIN_H
3952# include <login.h>
3953#endif
andre2ff7b5d2000-06-03 14:57:40 +00003954 ],
3955 [ char *lastlog = LASTLOG_FILE; ],
3956 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10003957 [
3958 AC_MSG_RESULT(no)
3959 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
3960 AC_TRY_COMPILE([
3961#include <sys/types.h>
3962#include <utmp.h>
3963#ifdef HAVE_LASTLOG_H
3964# include <lastlog.h>
3965#endif
3966#ifdef HAVE_PATHS_H
3967# include <paths.h>
3968#endif
3969 ],
3970 [ char *lastlog = _PATH_LASTLOG; ],
3971 [ AC_MSG_RESULT(yes) ],
3972 [
andree441aa32000-06-12 22:34:38 +00003973 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10003974 system_lastlog_path=no
3975 ])
3976 ]
andre2ff7b5d2000-06-03 14:57:40 +00003977)
Damien Miller2994e082000-06-04 15:51:47 +10003978
andre2ff7b5d2000-06-03 14:57:40 +00003979if test -z "$conf_lastlog_location"; then
3980 if test x"$system_lastlog_path" = x"no" ; then
3981 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10003982 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00003983 conf_lastlog_location=$f
3984 fi
3985 done
3986 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00003987 AC_MSG_WARN([** Cannot find lastlog **])
3988 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00003989 fi
3990 fi
3991fi
3992
3993if test -n "$conf_lastlog_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003994 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location",
3995 [Define if you want to specify the path to your lastlog file])
Tim Riceeae17cc2005-03-17 16:52:20 -08003996fi
andre2ff7b5d2000-06-03 14:57:40 +00003997
3998dnl utmp detection
3999AC_MSG_CHECKING([if your system defines UTMP_FILE])
4000AC_TRY_COMPILE([
4001#include <sys/types.h>
4002#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10004003#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004004# include <paths.h>
4005#endif
4006 ],
4007 [ char *utmp = UTMP_FILE; ],
4008 [ AC_MSG_RESULT(yes) ],
4009 [ AC_MSG_RESULT(no)
4010 system_utmp_path=no ]
4011)
4012if test -z "$conf_utmp_location"; then
4013 if test x"$system_utmp_path" = x"no" ; then
4014 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
4015 if test -f $f ; then
4016 conf_utmp_location=$f
4017 fi
4018 done
4019 if test -z "$conf_utmp_location"; then
4020 AC_DEFINE(DISABLE_UTMP)
4021 fi
4022 fi
4023fi
4024if test -n "$conf_utmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07004025 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location",
4026 [Define if you want to specify the path to your utmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004027fi
andre2ff7b5d2000-06-03 14:57:40 +00004028
4029dnl wtmp detection
4030AC_MSG_CHECKING([if your system defines WTMP_FILE])
4031AC_TRY_COMPILE([
4032#include <sys/types.h>
4033#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10004034#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004035# include <paths.h>
4036#endif
4037 ],
4038 [ char *wtmp = WTMP_FILE; ],
4039 [ AC_MSG_RESULT(yes) ],
4040 [ AC_MSG_RESULT(no)
4041 system_wtmp_path=no ]
4042)
4043if test -z "$conf_wtmp_location"; then
4044 if test x"$system_wtmp_path" = x"no" ; then
4045 for f in /usr/adm/wtmp /var/log/wtmp; do
4046 if test -f $f ; then
4047 conf_wtmp_location=$f
4048 fi
4049 done
4050 if test -z "$conf_wtmp_location"; then
4051 AC_DEFINE(DISABLE_WTMP)
4052 fi
4053 fi
4054fi
4055if test -n "$conf_wtmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07004056 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location",
4057 [Define if you want to specify the path to your wtmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004058fi
andre2ff7b5d2000-06-03 14:57:40 +00004059
4060
4061dnl utmpx detection - I don't know any system so perverse as to require
4062dnl utmpx, but not define UTMPX_FILE (ditto wtmpx.) No doubt it's out
4063dnl there, though.
4064AC_MSG_CHECKING([if your system defines UTMPX_FILE])
4065AC_TRY_COMPILE([
4066#include <sys/types.h>
4067#include <utmp.h>
4068#ifdef HAVE_UTMPX_H
4069#include <utmpx.h>
4070#endif
Damien Miller2994e082000-06-04 15:51:47 +10004071#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004072# include <paths.h>
4073#endif
4074 ],
4075 [ char *utmpx = UTMPX_FILE; ],
4076 [ AC_MSG_RESULT(yes) ],
4077 [ AC_MSG_RESULT(no)
4078 system_utmpx_path=no ]
4079)
4080if test -z "$conf_utmpx_location"; then
4081 if test x"$system_utmpx_path" = x"no" ; then
4082 AC_DEFINE(DISABLE_UTMPX)
4083 fi
4084else
Tim Rice7df8d392005-09-19 09:33:39 -07004085 AC_DEFINE_UNQUOTED(CONF_UTMPX_FILE, "$conf_utmpx_location",
4086 [Define if you want to specify the path to your utmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004087fi
andre2ff7b5d2000-06-03 14:57:40 +00004088
4089dnl wtmpx detection
4090AC_MSG_CHECKING([if your system defines WTMPX_FILE])
4091AC_TRY_COMPILE([
4092#include <sys/types.h>
4093#include <utmp.h>
4094#ifdef HAVE_UTMPX_H
4095#include <utmpx.h>
4096#endif
Damien Miller2994e082000-06-04 15:51:47 +10004097#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004098# include <paths.h>
4099#endif
4100 ],
4101 [ char *wtmpx = WTMPX_FILE; ],
4102 [ AC_MSG_RESULT(yes) ],
4103 [ AC_MSG_RESULT(no)
4104 system_wtmpx_path=no ]
4105)
4106if test -z "$conf_wtmpx_location"; then
4107 if test x"$system_wtmpx_path" = x"no" ; then
4108 AC_DEFINE(DISABLE_WTMPX)
4109 fi
4110else
Tim Rice7df8d392005-09-19 09:33:39 -07004111 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location",
4112 [Define if you want to specify the path to your wtmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004113fi
andre2ff7b5d2000-06-03 14:57:40 +00004114
Damien Miller4018c192000-04-30 09:30:44 +10004115
Damien Miller29ea30d2000-03-17 10:54:15 +11004116if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10004117 LDFLAGS="$LDFLAGS $blibflags$blibpath"
4118 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11004119fi
4120
Darren Tucker7da23cb2005-08-03 00:20:15 +10004121dnl Adding -Werror to CFLAGS early prevents configure tests from running.
4122dnl Add now.
4123CFLAGS="$CFLAGS $werror_flags"
4124
Darren Tucker5d376902008-06-11 04:15:05 +10004125if grep "#define BROKEN_GETADDRINFO 1" confdefs.h >/dev/null || \
4126 test "x$ac_cv_func_getaddrinfo" != "xyes" ; then
4127 AC_SUBST(TEST_SSH_IPV6, no)
4128else
4129 AC_SUBST(TEST_SSH_IPV6, yes)
4130fi
4131
Damien Millerbac2d8a2000-09-05 16:13:06 +11004132AC_EXEEXT
Damien Miller223897a2006-09-12 21:54:10 +10004133AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openssh.xml \
4134 openbsd-compat/Makefile openbsd-compat/regress/Makefile \
4135 scard/Makefile ssh_prng_cmds survey.sh])
Tim Rice13aae5e2001-10-21 17:53:58 -07004136AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10004137
Damien Miller7b22d652000-06-18 14:07:04 +10004138# Print summary of options
4139
Damien Miller7b22d652000-06-18 14:07:04 +10004140# Someone please show me a better way :)
4141A=`eval echo ${prefix}` ; A=`eval echo ${A}`
4142B=`eval echo ${bindir}` ; B=`eval echo ${B}`
4143C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
4144D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00004145E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00004146F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10004147G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10004148H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
4149I=`eval echo ${user_path}` ; I=`eval echo ${I}`
4150J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10004151
4152echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00004153echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10004154echo " User binaries: $B"
4155echo " System binaries: $C"
4156echo " Configuration files: $D"
4157echo " Askpass program: $E"
4158echo " Manual pages: $F"
4159echo " PID file: $G"
4160echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10004161if test "x$external_path_file" = "x/etc/login.conf" ; then
4162echo " At runtime, sshd will use the path defined in $external_path_file"
4163echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07004164else
Damien Millerf58c6722002-05-13 13:15:42 +10004165echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07004166 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004167echo " (If PATH is set in $external_path_file it will be used instead. If"
4168echo " used, ensure the path to scp is present, otherwise scp will not work.)"
4169 fi
Tim Rice43a1c132002-04-17 21:19:14 -07004170fi
Damien Millera18bbd32002-05-13 10:48:57 +10004171if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10004172echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10004173fi
Damien Millerf58c6722002-05-13 13:15:42 +10004174echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10004175echo " PAM support: $PAM_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10004176echo " OSF SIA support: $SIA_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004177echo " KerberosV support: $KRB5_MSG"
Damien Miller73b42d22006-04-22 21:26:08 +10004178echo " SELinux support: $SELINUX_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004179echo " Smartcard support: $SCARD_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004180echo " S/KEY support: $SKEY_MSG"
4181echo " TCP Wrappers support: $TCPW_MSG"
4182echo " MD5 password support: $MD5_MSG"
Darren Tucker16bcc1c2004-11-07 20:14:34 +11004183echo " libedit support: $LIBEDIT_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10004184echo " Solaris process contract support: $SPC_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10004185echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004186echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
4187echo " BSD Auth support: $BSD_AUTH_MSG"
4188echo " Random number source: $RAND_MSG"
Damien Miller6c21c512002-01-22 21:57:53 +11004189if test ! -z "$USE_RAND_HELPER" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10004190echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
Damien Miller60396b02001-02-18 17:01:00 +11004191fi
4192
Damien Miller7b22d652000-06-18 14:07:04 +10004193echo ""
4194
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00004195echo " Host: ${host}"
4196echo " Compiler: ${CC}"
4197echo " Compiler flags: ${CFLAGS}"
4198echo "Preprocessor flags: ${CPPFLAGS}"
4199echo " Linker flags: ${LDFLAGS}"
Darren Tucker20e9f972007-03-25 18:26:01 +10004200echo " Libraries: ${LIBS}"
4201if test ! -z "${SSHDLIBS}"; then
4202echo " +for sshd: ${SSHDLIBS}"
4203fi
Damien Miller7b22d652000-06-18 14:07:04 +10004204
4205echo ""
4206
Tim Rice6f1f7582004-05-30 21:38:51 -07004207if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
Darren Tuckercf59d312004-08-29 21:18:09 +10004208 echo "SVR4 style packages are supported with \"make package\""
4209 echo ""
Tim Rice6f1f7582004-05-30 21:38:51 -07004210fi
4211
Damien Miller82cf0ce2000-12-20 13:34:48 +11004212if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11004213 echo "PAM is enabled. You may need to install a PAM control file "
4214 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11004215 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11004216 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11004217 echo ""
4218fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00004219
Damien Miller6c21c512002-01-22 21:57:53 +11004220if test ! -z "$RAND_HELPER_CMDHASH" ; then
4221 echo "WARNING: you are using the builtin random number collection "
4222 echo "service. Please read WARNING.RNG and request that your OS "
4223 echo "vendor includes kernel-based random number collection in "
4224 echo "future versions of your OS."
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00004225 echo ""
4226fi
Damien Miller60396b02001-02-18 17:01:00 +11004227
Damien Millerb4097182004-05-23 14:09:40 +10004228if test ! -z "$NO_PEERCHECK" ; then
Darren Tucker164aa302007-03-21 21:39:57 +11004229 echo "WARNING: the operating system that you are using does not"
4230 echo "appear to support getpeereid(), getpeerucred() or the"
4231 echo "SO_PEERCRED getsockopt() option. These facilities are used to"
4232 echo "enforce security checks to prevent unauthorised connections to"
4233 echo "ssh-agent. Their absence increases the risk that a malicious"
4234 echo "user can connect to your agent."
Damien Millerb4097182004-05-23 14:09:40 +10004235 echo ""
4236fi
4237
Darren Tuckerd9f88912005-02-20 21:01:48 +11004238if test "$AUDIT_MODULE" = "bsm" ; then
4239 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
4240 echo "See the Solaris section in README.platform for details."
4241fi