blob: 0c46aebeba686b754ef1713802b64aabe1a5bb64 [file] [log] [blame]
Damien Miller71adf122011-01-25 12:16:15 +11001# $Id: configure.ac,v 1.470 2011/01/25 01:16:17 djm 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)
Damien Miller71adf122011-01-25 12:16:15 +110018AC_REVISION($Revision: 1.470 $)
Tim Rice13aae5e2001-10-21 17:53:58 -070019AC_CONFIG_SRCDIR([ssh.c])
Damien Miller7f6ea021999-10-28 13:25:17 +100020
Damien Miller134d02a2011-01-12 16:00:37 +110021# local macros
22AC_DEFUN([OPENSSH_CHECK_CFLAG_COMPILE], [{
23 AC_MSG_CHECKING([if $CC supports $1])
24 saved_CFLAGS="$CFLAGS"
25 CFLAGS="$CFLAGS $1"
26 AC_COMPILE_IFELSE([void main(void) { return 0; }],
27 [ AC_MSG_RESULT(yes) ],
28 [ AC_MSG_RESULT(no)
29 CFLAGS="$saved_CFLAGS" ]
30 )
31}])
32
Damien Miller7f6ea021999-10-28 13:25:17 +100033AC_CONFIG_HEADER(config.h)
Damien Miller856799b2000-03-15 21:18:10 +110034AC_PROG_CC
Damien Miller76112de1999-12-21 11:18:08 +110035AC_CANONICAL_HOST
Damien Miller4df5c762001-02-28 08:14:22 +110036AC_C_BIGENDIAN
Damien Miller7f6ea021999-10-28 13:25:17 +100037
Damien Millera22ba012000-03-02 23:09:20 +110038# Checks for programs.
Darren Tucker167bd9c2003-09-07 12:34:54 +100039AC_PROG_AWK
Damien Millerab18c411999-11-11 10:40:23 +110040AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +100041AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110042AC_PROG_INSTALL
Tim Ricefd80ddc2006-02-02 19:11:56 -080043AC_PROG_EGREP
Ben Lindstrom582d3982001-02-06 22:54:30 +000044AC_PATH_PROG(AR, ar)
Tim Rice5af9db92004-06-19 19:31:06 -070045AC_PATH_PROG(CAT, cat)
46AC_PATH_PROG(KILL, kill)
Tim Riceb8fbb8e2001-04-21 14:31:52 -070047AC_PATH_PROGS(PERL, perl5 perl)
Tim Riced0d7a8b2003-01-08 17:22:59 -080048AC_PATH_PROG(SED, sed)
Damien Millere79334a1999-12-29 10:03:37 +110049AC_SUBST(PERL)
Damien Miller8d1fd572000-05-17 21:34:07 +100050AC_PATH_PROG(ENT, ent)
51AC_SUBST(ENT)
Damien Miller4864e8f2001-02-08 10:07:08 +110052AC_PATH_PROG(TEST_MINUS_S_SH, bash)
53AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
54AC_PATH_PROG(TEST_MINUS_S_SH, sh)
Tim Rice0502a472002-05-08 16:04:14 -070055AC_PATH_PROG(SH, sh)
Damien Miller30a69e72011-01-04 08:16:27 +110056AC_PATH_PROG(GROFF, groff)
57AC_PATH_PROG(NROFF, nroff)
58AC_PATH_PROG(MANDOC, mandoc)
Tim Ricef7ba8f62004-06-20 10:37:32 -070059AC_SUBST(TEST_SHELL,sh)
Damien Miller2e1b0821999-12-25 10:11:29 +110060
Damien Miller30a69e72011-01-04 08:16:27 +110061dnl select manpage formatter
62if test "x$MANDOC" != "x" ; then
63 MANFMT="$MANDOC"
64elif test "x$NROFF" != "x" ; then
65 MANFMT="$NROFF -mandoc"
66elif test "x$GROFF" != "x" ; then
67 MANFMT="$GROFF -mandoc -Tascii"
68else
69 AC_MSG_WARN([no manpage formatted found])
70 MANFMT="false"
71fi
72AC_SUBST(MANFMT)
73
Tim Rice6f1f7582004-05-30 21:38:51 -070074dnl for buildpkg.sh
75AC_PATH_PROG(PATH_GROUPADD_PROG, groupadd, groupadd,
76 [/usr/sbin${PATH_SEPARATOR}/etc])
77AC_PATH_PROG(PATH_USERADD_PROG, useradd, useradd,
78 [/usr/sbin${PATH_SEPARATOR}/etc])
79AC_CHECK_PROG(MAKE_PACKAGE_SUPPORTED, pkgmk, yes, no)
Darren Tuckerfbea7642006-01-30 00:22:39 +110080if test -x /sbin/sh; then
81 AC_SUBST(STARTUP_SCRIPT_SHELL,/sbin/sh)
82else
83 AC_SUBST(STARTUP_SCRIPT_SHELL,/bin/sh)
84fi
Tim Rice6f1f7582004-05-30 21:38:51 -070085
Damien Millere8bb4502001-09-25 16:39:35 +100086# System features
87AC_SYS_LARGEFILE
88
Damien Miller3f62aba2000-11-29 11:56:35 +110089if test -z "$AR" ; then
90 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
91fi
92
Damien Millerad833b32000-08-23 10:46:23 +100093# Use LOGIN_PROGRAM from environment if possible
94if test ! -z "$LOGIN_PROGRAM" ; then
Tim Rice7df8d392005-09-19 09:33:39 -070095 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM",
96 [If your header files don't define LOGIN_PROGRAM,
97 then use this (detected) from environment and PATH])
Damien Millerad833b32000-08-23 10:46:23 +100098else
99 # Search for login
100 AC_PATH_PROG(LOGIN_PROGRAM_FALLBACK, login)
101 if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then
102 AC_DEFINE_UNQUOTED(LOGIN_PROGRAM_FALLBACK, "$LOGIN_PROGRAM_FALLBACK")
103 fi
104fi
105
Darren Tucker23bc8d02004-02-06 16:24:31 +1100106AC_PATH_PROG(PATH_PASSWD_PROG, passwd)
107if test ! -z "$PATH_PASSWD_PROG" ; then
Tim Rice7df8d392005-09-19 09:33:39 -0700108 AC_DEFINE_UNQUOTED(_PATH_PASSWD_PROG, "$PATH_PASSWD_PROG",
109 [Full path of your "passwd" program])
Darren Tucker23bc8d02004-02-06 16:24:31 +1100110fi
111
Damien Miller166bd442000-03-16 10:48:25 +1100112if test -z "$LD" ; then
113 LD=$CC
114fi
115AC_SUBST(LD)
Tim Riceeae17cc2005-03-17 16:52:20 -0800116
Damien Miller166bd442000-03-16 10:48:25 +1100117AC_C_INLINE
Darren Tucker67b37032005-06-03 17:58:31 +1000118
119AC_CHECK_DECL(LLONG_MAX, have_llong_max=1, , [#include <limits.h>])
120
Darren Tuckerb7918af2008-03-09 11:34:23 +1100121use_stack_protector=1
122AC_ARG_WITH(stackprotect,
Damien Millerda3155e2008-03-27 12:30:18 +1100123 [ --without-stackprotect Don't use compiler's stack protection], [
Darren Tuckerb7918af2008-03-09 11:34:23 +1100124 if test "x$withval" = "xno"; then
125 use_stack_protector=0
126 fi ])
127
Damien Miller134d02a2011-01-12 16:00:37 +1100128
Damien Millera8e06ce2003-11-21 23:48:55 +1100129if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
Damien Miller134d02a2011-01-12 16:00:37 +1100130 OPENSSH_CHECK_CFLAG_COMPILE([-Wall])
131 OPENSSH_CHECK_CFLAG_COMPILE([-Wpointer-arith])
132 OPENSSH_CHECK_CFLAG_COMPILE([-Wuninitialized])
133 OPENSSH_CHECK_CFLAG_COMPILE([-Wsign-compare])
134 OPENSSH_CHECK_CFLAG_COMPILE([-Wformat-security])
135 OPENSSH_CHECK_CFLAG_COMPILE([-Wno-pointer-sign])
136 OPENSSH_CHECK_CFLAG_COMPILE([-Wno-unused-result])
137 OPENSSH_CHECK_CFLAG_COMPILE([-fno-strict-aliasing])
138 AC_MSG_CHECKING(gcc version)
Darren Tucker3f9545e2005-11-12 15:20:52 +1100139 GCC_VER=`$CC -v 2>&1 | $AWK '/gcc version /{print $3}'`
Tim Rice3db1e3f2005-08-23 17:11:26 -0700140 case $GCC_VER in
Darren Tucker391de5c2007-04-29 14:49:21 +1000141 1.*) no_attrib_nonnull=1 ;;
142 2.8* | 2.9*)
Darren Tucker391de5c2007-04-29 14:49:21 +1000143 no_attrib_nonnull=1
144 ;;
145 2.*) no_attrib_nonnull=1 ;;
Darren Tuckerf0324352005-11-10 21:30:36 +1100146 *) ;;
Tim Rice3db1e3f2005-08-23 17:11:26 -0700147 esac
Damien Miller134d02a2011-01-12 16:00:37 +1100148 AC_MSG_RESULT($GCC_VER)
Damien Millerde3cb0a2005-05-26 20:48:25 +1000149
Darren Tucker330c93f2008-06-16 02:27:48 +1000150 AC_MSG_CHECKING(if $CC accepts -fno-builtin-memset)
151 saved_CFLAGS="$CFLAGS"
152 CFLAGS="$CFLAGS -fno-builtin-memset"
153 AC_LINK_IFELSE( [AC_LANG_SOURCE([[
154#include <string.h>
155int main(void){char b[10]; memset(b, 0, sizeof(b));}
156 ]])],
157 [ AC_MSG_RESULT(yes) ],
158 [ AC_MSG_RESULT(no)
159 CFLAGS="$saved_CFLAGS" ]
160)
161
Darren Tuckerb7918af2008-03-09 11:34:23 +1100162 # -fstack-protector-all doesn't always work for some GCC versions
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100163 # and/or platforms, so we test if we can. If it's not supported
Damien Miller7df2e402008-12-08 09:35:36 +1100164 # on a given platform gcc will emit a warning so we use -Werror.
Darren Tuckerb7918af2008-03-09 11:34:23 +1100165 if test "x$use_stack_protector" = "x1"; then
166 for t in -fstack-protector-all -fstack-protector; do
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100167 AC_MSG_CHECKING(if $CC supports $t)
Darren Tuckerb7918af2008-03-09 11:34:23 +1100168 saved_CFLAGS="$CFLAGS"
169 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100170 CFLAGS="$CFLAGS $t -Werror"
171 LDFLAGS="$LDFLAGS $t -Werror"
172 AC_LINK_IFELSE(
173 [AC_LANG_SOURCE([
Damien Miller7df2e402008-12-08 09:35:36 +1100174#include <stdio.h>
175int main(void){char x[[256]]; snprintf(x, sizeof(x), "XXX"); return 0;}
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100176 ])],
Darren Tuckerb7918af2008-03-09 11:34:23 +1100177 [ AC_MSG_RESULT(yes)
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100178 CFLAGS="$saved_CFLAGS $t"
179 LDFLAGS="$saved_LDFLAGS $t"
Darren Tuckerb7918af2008-03-09 11:34:23 +1100180 AC_MSG_CHECKING(if $t works)
181 AC_RUN_IFELSE(
182 [AC_LANG_SOURCE([
Damien Miller7df2e402008-12-08 09:35:36 +1100183#include <stdio.h>
184int main(void){char x[[256]]; snprintf(x, sizeof(x), "XXX"); return 0;}
Darren Tuckerb7918af2008-03-09 11:34:23 +1100185 ])],
186 [ AC_MSG_RESULT(yes)
187 break ],
188 [ AC_MSG_RESULT(no) ],
189 [ AC_MSG_WARN([cross compiling: cannot test])
190 break ]
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100191 )
Darren Tuckerb7918af2008-03-09 11:34:23 +1100192 ],
193 [ AC_MSG_RESULT(no) ]
194 )
195 CFLAGS="$saved_CFLAGS"
196 LDFLAGS="$saved_LDFLAGS"
197 done
198 fi
Darren Tucker319b3d92007-12-02 21:02:22 +1100199
Darren Tucker67b37032005-06-03 17:58:31 +1000200 if test -z "$have_llong_max"; then
201 # retry LLONG_MAX with -std=gnu99, needed on some Linuxes
202 unset ac_cv_have_decl_LLONG_MAX
203 saved_CFLAGS="$CFLAGS"
204 CFLAGS="$CFLAGS -std=gnu99"
205 AC_CHECK_DECL(LLONG_MAX,
206 [have_llong_max=1],
207 [CFLAGS="$saved_CFLAGS"],
208 [#include <limits.h>]
209 )
210 fi
Damien Miller166bd442000-03-16 10:48:25 +1100211fi
212
Darren Tucker391de5c2007-04-29 14:49:21 +1000213if test "x$no_attrib_nonnull" != "x1" ; then
214 AC_DEFINE(HAVE_ATTRIBUTE__NONNULL__, 1, [Have attribute nonnull])
215fi
216
Tim Rice88368a32003-12-08 12:35:59 -0800217AC_ARG_WITH(rpath,
218 [ --without-rpath Disable auto-added -R linker paths],
219 [
Tim Riceeae17cc2005-03-17 16:52:20 -0800220 if test "x$withval" = "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800221 need_dash_r=""
222 fi
223 if test "x$withval" = "xyes" ; then
224 need_dash_r=1
225 fi
226 ]
227)
228
Tim Rice1cfab232006-10-03 09:34:35 -0700229# Allow user to specify flags
230AC_ARG_WITH(cflags,
231 [ --with-cflags Specify additional flags to pass to compiler],
232 [
233 if test -n "$withval" && test "x$withval" != "xno" && \
234 test "x${withval}" != "xyes"; then
235 CFLAGS="$CFLAGS $withval"
236 fi
237 ]
238)
239AC_ARG_WITH(cppflags,
240 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
241 [
242 if test -n "$withval" && test "x$withval" != "xno" && \
243 test "x${withval}" != "xyes"; then
244 CPPFLAGS="$CPPFLAGS $withval"
245 fi
246 ]
247)
248AC_ARG_WITH(ldflags,
249 [ --with-ldflags Specify additional flags to pass to linker],
250 [
251 if test -n "$withval" && test "x$withval" != "xno" && \
252 test "x${withval}" != "xyes"; then
253 LDFLAGS="$LDFLAGS $withval"
254 fi
255 ]
256)
257AC_ARG_WITH(libs,
258 [ --with-libs Specify additional libraries to link with],
259 [
260 if test -n "$withval" && test "x$withval" != "xno" && \
261 test "x${withval}" != "xyes"; then
262 LIBS="$LIBS $withval"
263 fi
264 ]
265)
266AC_ARG_WITH(Werror,
267 [ --with-Werror Build main code with -Werror],
268 [
269 if test -n "$withval" && test "x$withval" != "xno"; then
270 werror_flags="-Werror"
271 if test "x${withval}" != "xyes"; then
272 werror_flags="$withval"
273 fi
274 fi
275 ]
276)
277
278AC_CHECK_HEADERS( \
279 bstring.h \
280 crypt.h \
281 crypto/sha2.h \
282 dirent.h \
283 endian.h \
284 features.h \
285 fcntl.h \
286 floatingpoint.h \
287 getopt.h \
288 glob.h \
289 ia.h \
290 iaf.h \
291 limits.h \
292 login.h \
293 maillock.h \
294 ndir.h \
295 net/if_tun.h \
296 netdb.h \
297 netgroup.h \
298 pam/pam_appl.h \
299 paths.h \
Darren Tuckerfebf0f52007-06-25 22:15:12 +1000300 poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700301 pty.h \
302 readpassphrase.h \
303 rpc/types.h \
304 security/pam_appl.h \
305 sha2.h \
306 shadow.h \
307 stddef.h \
308 stdint.h \
309 string.h \
310 strings.h \
311 sys/audit.h \
312 sys/bitypes.h \
313 sys/bsdtty.h \
314 sys/cdefs.h \
315 sys/dir.h \
316 sys/mman.h \
317 sys/ndir.h \
Darren Tucker7c92a652007-09-27 07:00:09 +1000318 sys/poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700319 sys/prctl.h \
320 sys/pstat.h \
321 sys/select.h \
322 sys/stat.h \
323 sys/stream.h \
324 sys/stropts.h \
325 sys/strtio.h \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +1000326 sys/statvfs.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700327 sys/sysmacros.h \
328 sys/time.h \
329 sys/timers.h \
330 sys/un.h \
331 time.h \
332 tmpdir.h \
333 ttyent.h \
Tim Riceaa8954f2007-05-09 15:57:43 -0700334 ucred.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700335 unistd.h \
336 usersec.h \
337 util.h \
338 utime.h \
339 utmp.h \
340 utmpx.h \
341 vis.h \
342)
343
344# lastlog.h requires sys/time.h to be included first on Solaris
345AC_CHECK_HEADERS(lastlog.h, [], [], [
346#ifdef HAVE_SYS_TIME_H
347# include <sys/time.h>
348#endif
349])
350
351# sys/ptms.h requires sys/stream.h to be included first on Solaris
352AC_CHECK_HEADERS(sys/ptms.h, [], [], [
353#ifdef HAVE_SYS_STREAM_H
354# include <sys/stream.h>
355#endif
356])
357
358# login_cap.h requires sys/types.h on NetBSD
359AC_CHECK_HEADERS(login_cap.h, [], [], [
360#include <sys/types.h>
361])
362
Darren Tuckerc4b22ca2009-07-12 21:56:29 +1000363# older BSDs need sys/param.h before sys/mount.h
364AC_CHECK_HEADERS(sys/mount.h, [], [], [
365#include <sys/param.h>
366])
367
Damien Miller1b06dc32006-08-31 03:24:41 +1000368# Messages for features tested for in target-specific section
369SIA_MSG="no"
370SPC_MSG="no"
Darren Tucker97528352010-11-05 12:03:05 +1100371SP_MSG="no"
Damien Miller1b06dc32006-08-31 03:24:41 +1000372
Damien Millera22ba012000-03-02 23:09:20 +1100373# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +1100374case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +1100375*-*-aix*)
Darren Tucker9216c372006-09-18 23:17:40 +1000376 # Some versions of VAC won't allow macro redefinitions at
377 # -qlanglevel=ansi, and autoconf 2.60 sometimes insists on using that
378 # particularly with older versions of vac or xlc.
379 # It also throws errors about null macro argments, but these are
380 # not fatal.
381 AC_MSG_CHECKING(if compiler allows macro redefinitions)
382 AC_COMPILE_IFELSE(
383 [AC_LANG_SOURCE([[
384#define testmacro foo
385#define testmacro bar
386int main(void) { exit(0); }
387 ]])],
388 [ AC_MSG_RESULT(yes) ],
389 [ AC_MSG_RESULT(no)
390 CC="`echo $CC | sed 's/-qlanglvl\=ansi//g'`"
391 LD="`echo $LD | sed 's/-qlanglvl\=ansi//g'`"
392 CFLAGS="`echo $CFLAGS | sed 's/-qlanglvl\=ansi//g'`"
393 CPPFLAGS="`echo $CPPFLAGS | sed 's/-qlanglvl\=ansi//g'`"
394 ]
395 )
396
Damien Millera8e06ce2003-11-21 23:48:55 +1100397 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
Damien Millereab4bae2003-04-29 23:22:40 +1000398 if (test -z "$blibpath"); then
Tim Ricefcb62202004-01-23 18:35:16 -0800399 blibpath="/usr/lib:/lib"
Damien Miller29ea30d2000-03-17 10:54:15 +1100400 fi
Damien Millereab4bae2003-04-29 23:22:40 +1000401 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerbdc12122006-07-06 11:56:25 +1000402 if test "$GCC" = "yes"; then
403 flags="-Wl,-blibpath: -Wl,-rpath, -blibpath:"
404 else
405 flags="-blibpath: -Wl,-blibpath: -Wl,-rpath,"
406 fi
407 for tryflags in $flags ;do
Damien Millereab4bae2003-04-29 23:22:40 +1000408 if (test -z "$blibflags"); then
409 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
410 AC_TRY_LINK([], [], [blibflags=$tryflags])
411 fi
412 done
413 if (test -z "$blibflags"); then
414 AC_MSG_RESULT(not found)
415 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
416 else
417 AC_MSG_RESULT($blibflags)
418 fi
419 LDFLAGS="$saved_LDFLAGS"
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000420 dnl Check for authenticate. Might be in libs.a on older AIXes
Tim Rice7df8d392005-09-19 09:33:39 -0700421 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE, 1,
422 [Define if you want to enable AIX4's authenticate function])],
Tim Ricee958ed32002-07-05 07:12:33 -0700423 [AC_CHECK_LIB(s,authenticate,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000424 [ AC_DEFINE(WITH_AIXAUTHENTICATE)
Tim Ricee958ed32002-07-05 07:12:33 -0700425 LIBS="$LIBS -ls"
426 ])
427 ])
Darren Tucker3c774c52005-02-16 22:49:31 +1100428 dnl Check for various auth function declarations in headers.
Darren Tucker04cfbe02005-02-20 23:27:11 +1100429 AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
Darren Tuckere66519d2005-03-21 22:46:34 +1100430 passwdexpired, setauthdb], , , [#include <usersec.h>])
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000431 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
Darren Tucker3c774c52005-02-16 22:49:31 +1100432 AC_CHECK_DECLS(loginfailed,
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000433 [AC_MSG_CHECKING(if loginfailed takes 4 arguments)
434 AC_TRY_COMPILE(
Darren Tuckera0c0b632003-07-08 20:52:12 +1000435 [#include <usersec.h>],
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000436 [(void)loginfailed("user","host","tty",0);],
437 [AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -0700438 AC_DEFINE(AIX_LOGINFAILED_4ARG, 1,
439 [Define if your AIX loginfailed() function
440 takes 4 arguments (AIX >= 5.2)])],
Darren Tuckera0c0b632003-07-08 20:52:12 +1000441 [AC_MSG_RESULT(no)]
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000442 )],
443 [],
444 [#include <usersec.h>]
445 )
Darren Tucker0f26b132008-02-28 23:16:04 +1100446 AC_CHECK_FUNCS(getgrset setauthdb)
Darren Tucker3083bc22006-08-17 19:35:49 +1000447 AC_CHECK_DECL(F_CLOSEM,
Darren Tuckerd018b2e2006-08-18 18:51:20 +1000448 AC_DEFINE(HAVE_FCNTL_CLOSEM, 1, [Use F_CLOSEM fcntl for closefrom]),
Darren Tucker3083bc22006-08-17 19:35:49 +1000449 [],
450 [ #include <limits.h>
451 #include <fcntl.h> ]
452 )
Darren Tucker691d5232005-02-15 21:45:57 +1100453 check_for_aix_broken_getaddrinfo=1
Tim Rice7df8d392005-09-19 09:33:39 -0700454 AC_DEFINE(BROKEN_REALPATH, 1, [Define if you have a broken realpath.])
455 AC_DEFINE(SETEUID_BREAKS_SETUID, 1,
456 [Define if your platform breaks doing a seteuid before a setuid])
457 AC_DEFINE(BROKEN_SETREUID, 1, [Define if your setreuid() is broken])
458 AC_DEFINE(BROKEN_SETREGID, 1, [Define if your setregid() is broken])
andre60f3c982000-06-03 16:18:19 +0000459 dnl AIX handles lastlog as part of its login message
Tim Rice7df8d392005-09-19 09:33:39 -0700460 AC_DEFINE(DISABLE_LASTLOG, 1, [Define if you don't want to use lastlog])
461 AC_DEFINE(LOGIN_NEEDS_UTMPX, 1,
462 [Some systems need a utmpx entry for /bin/login to work])
463 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV,
464 [Define to a Set Process Title type if your system is
465 supported by bsd-setproctitle.c])
Darren Tucker91d25a02005-11-26 22:24:09 +1100466 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
467 [AIX 5.2 and 5.3 (and presumably newer) require this])
Darren Tucker9afe1152006-06-23 21:24:12 +1000468 AC_DEFINE(PTY_ZEROREAD, 1, [read(1) can return 0 for a non-closed fd])
Damien Miller75b1d102000-01-07 14:01:41 +1100469 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100470*-*-cygwin*)
Damien Millerc8936ac2003-02-11 10:04:03 +1100471 check_for_libcrypt_later=1
Darren Tucker573e3872007-03-02 17:50:03 +1100472 LIBS="$LIBS /usr/lib/textreadmode.o"
Tim Rice7df8d392005-09-19 09:33:39 -0700473 AC_DEFINE(HAVE_CYGWIN, 1, [Define if you are on Cygwin])
474 AC_DEFINE(USE_PIPES, 1, [Use PIPES instead of a socketpair()])
475 AC_DEFINE(DISABLE_SHADOW, 1,
476 [Define if you want to disable shadow passwords])
Tim Rice7df8d392005-09-19 09:33:39 -0700477 AC_DEFINE(NO_X11_UNIX_SOCKETS, 1,
478 [Define if X11 doesn't support AF_UNIX sockets on that system])
479 AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT, 1,
480 [Define if the concept of ports only accessible to
481 superusers isn't known])
482 AC_DEFINE(DISABLE_FD_PASSING, 1,
483 [Define if your platform needs to skip post auth
484 file descriptor passing])
Tim Rice6761c742010-01-22 10:25:15 -0800485 AC_DEFINE(SSH_IOBUFSZ, 65535, [Windows is sensitive to read buffer size])
Damien Miller58497782011-01-17 16:17:09 +1100486 AC_DEFINE(FILESYSTEM_NO_BACKSLASH, 1, [File names may not contain backslash characters])
Damien Millerbac2d8a2000-09-05 16:13:06 +1100487 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000488*-*-dgux*)
Tim Ricea74000e2009-03-18 11:25:02 -0700489 AC_DEFINE(IP_TOS_IS_BROKEN, 1,
490 [Define if your system choked on IP TOS setting])
Darren Tucker454da0b2003-12-18 12:52:19 +1100491 AC_DEFINE(SETEUID_BREAKS_SETUID)
492 AC_DEFINE(BROKEN_SETREUID)
493 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom58055132001-02-15 18:34:29 +0000494 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000495*-*-darwin*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000496 AC_MSG_CHECKING(if we have working getaddrinfo)
497 AC_TRY_RUN([#include <mach-o/dyld.h>
498main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
499 exit(0);
500 else
501 exit(1);
502}], [AC_MSG_RESULT(working)],
503 [AC_MSG_RESULT(buggy)
Tim Rice7df8d392005-09-19 09:33:39 -0700504 AC_DEFINE(BROKEN_GETADDRINFO, 1, [getaddrinfo is broken (if present)])],
Tim Rice480ef8d2003-09-21 21:38:11 -0700505 [AC_MSG_RESULT(assume it is working)])
Darren Tucker20379a32003-09-22 11:07:40 +1000506 AC_DEFINE(SETEUID_BREAKS_SETUID)
507 AC_DEFINE(BROKEN_SETREUID)
508 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker528d6fa2007-12-31 21:29:26 +1100509 AC_DEFINE(BROKEN_GLOB, 1, [OS X glob does not do what we expect])
Tim Rice7df8d392005-09-19 09:33:39 -0700510 AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1,
511 [Define if your resolver libs need this for getrrsetbyname])
Darren Tucker3eb48342006-06-23 21:05:12 +1000512 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
513 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
514 [Use tunnel device compatibility to OpenBSD])
515 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
516 [Prepend the address family to IP tunnel traffic])
Darren Tuckeracada072008-02-25 21:05:04 +1100517 m4_pattern_allow(AU_IPv)
518 AC_CHECK_DECL(AU_IPv4, [],
519 AC_DEFINE(AU_IPv4, 0, [System only supports IPv4 audit records])
520 [#include <bsm/audit.h>]
Damien Miller20e231f2009-02-12 13:12:21 +1100521 AC_DEFINE(LASTLOG_WRITE_PUTUTXLINE, 1,
522 [Define if pututxline updates lastlog too])
Darren Tuckeracada072008-02-25 21:05:04 +1100523 )
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000524 ;;
Darren Tucker57b29202006-09-10 20:25:51 +1000525*-*-dragonfly*)
526 SSHDLIBS="$SSHDLIBS -lcrypt"
527 ;;
Darren Tuckera83d90f2010-03-26 10:27:33 +1100528*-*-haiku*)
529 LIBS="$LIBS -lbsd "
530 AC_CHECK_LIB(network, socket)
531 AC_DEFINE(HAVE_U_INT64_T)
532 MANTYPE=man
533 ;;
Darren Tuckerfd333282005-05-28 18:31:42 +1000534*-*-hpux*)
535 # first we define all of the options common to all HP-UX releases
Kevin Steves315f8b72001-06-28 00:24:41 +0000536 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100537 IPADDR_IN_DISPLAY=yes
Damien Millerb0785672000-08-23 09:10:39 +1000538 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700539 AC_DEFINE(LOGIN_NO_ENDOPT, 1,
540 [Define if your login program cannot handle end of options ("--")])
Kevin Steves5feaaef2002-04-23 20:45:55 +0000541 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700542 AC_DEFINE(LOCKED_PASSWD_STRING, "*",
543 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000544 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Darren Tucker1e6616b2005-10-08 12:07:01 +1000545 MAIL="/var/mail/username"
Tim Ricef028f1e2002-07-19 12:41:10 -0700546 LIBS="$LIBS -lsec"
Darren Tuckerfd333282005-05-28 18:31:42 +1000547 AC_CHECK_LIB(xnet, t_error, ,
548 AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
549
550 # next, we define all of the options specific to major releases
551 case "$host" in
552 *-*-hpux10*)
553 if test -z "$GCC"; then
554 CFLAGS="$CFLAGS -Ae"
555 fi
556 ;;
557 *-*-hpux11*)
Tim Rice7df8d392005-09-19 09:33:39 -0700558 AC_DEFINE(PAM_SUN_CODEBASE, 1,
559 [Define if you are using Solaris-derived PAM which
560 passes pam_messages to the conversation function
561 with an extra level of indirection])
562 AC_DEFINE(DISABLE_UTMP, 1,
563 [Define if you don't want to use utmp])
Darren Tuckerfd333282005-05-28 18:31:42 +1000564 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
565 check_for_hpux_broken_getaddrinfo=1
566 check_for_conflicting_getspnam=1
567 ;;
568 esac
569
570 # lastly, we define options specific to minor releases
571 case "$host" in
572 *-*-hpux10.26)
Tim Rice7df8d392005-09-19 09:33:39 -0700573 AC_DEFINE(HAVE_SECUREWARE, 1,
574 [Define if you have SecureWare-based
575 protected password database])
Darren Tuckerfd333282005-05-28 18:31:42 +1000576 disable_ptmx_check=yes
577 LIBS="$LIBS -lsecpw"
578 ;;
579 esac
Damien Miller1bead332000-04-30 00:47:29 +1000580 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100581*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100582 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700583 AC_DEFINE(BROKEN_INET_NTOA, 1,
584 [Define if you system's inet_ntoa is busted
585 (e.g. Irix gcc issue)])
Darren Tuckerbeaf6792003-09-24 20:03:48 +1000586 AC_DEFINE(SETEUID_BREAKS_SETUID)
587 AC_DEFINE(BROKEN_SETREUID)
588 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700589 AC_DEFINE(WITH_ABBREV_NO_TTY, 1,
590 [Define if you shouldn't strip 'tty' from your
591 ttyname in [uw]tmp])
Darren Tuckere41bba52003-08-25 11:51:19 +1000592 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller1808f382000-01-06 12:03:12 +1100593 ;;
594*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100595 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700596 AC_DEFINE(WITH_IRIX_ARRAY, 1,
597 [Define if you have/want arrays
598 (cluster-wide session managment, not C arrays)])
599 AC_DEFINE(WITH_IRIX_PROJECT, 1,
600 [Define if you want IRIX project management])
601 AC_DEFINE(WITH_IRIX_AUDIT, 1,
602 [Define if you want IRIX audit trails])
603 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS, 1,
604 [Define if you want IRIX kernel jobs])])
Damien Miller11fa2cc2000-08-16 10:35:58 +1000605 AC_DEFINE(BROKEN_INET_NTOA)
Darren Tuckerbe79af12003-09-22 11:58:21 +1000606 AC_DEFINE(SETEUID_BREAKS_SETUID)
607 AC_DEFINE(BROKEN_SETREUID)
608 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700609 AC_DEFINE(BROKEN_UPDWTMPX, 1, [updwtmpx is broken (if present)])
Damien Millerf1b9d112002-04-23 23:09:19 +1000610 AC_DEFINE(WITH_ABBREV_NO_TTY)
Darren Tuckere41bba52003-08-25 11:51:19 +1000611 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Millerbeb4ba51999-12-28 15:09:35 +1100612 ;;
Damien Miller90551722009-02-16 15:37:03 +1100613*-*-k*bsd*-gnu | *-*-kopensolaris*-gnu)
614 check_for_libcrypt_later=1
615 AC_DEFINE(PAM_TTY_KLUDGE)
616 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!")
617 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
618 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
619 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
620 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100621*-*-linux*)
622 no_dev_ptmx=1
Damien Millera64b57a2001-01-17 10:44:13 +1100623 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000624 check_for_openpty_ctty_bug=1
Tim Rice7df8d392005-09-19 09:33:39 -0700625 AC_DEFINE(PAM_TTY_KLUDGE, 1,
626 [Work around problematic Linux PAM modules handling of PAM_TTY])
627 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!",
628 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000629 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
Tim Rice7df8d392005-09-19 09:33:39 -0700630 AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM,
631 [Define to whatever link() returns for "not supported"
632 if it doesn't return EOPNOTSUPP.])
Darren Tucker2fba9932005-02-02 23:30:24 +1100633 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
Tim Rice7df8d392005-09-19 09:33:39 -0700634 AC_DEFINE(USE_BTMP)
Darren Tuckerc8802aa2009-12-08 13:39:48 +1100635 AC_DEFINE(LINUX_OOM_ADJUST, 1, [Adjust Linux out-of-memory killer])
Damien Miller7bcb0892000-03-11 20:45:40 +1100636 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000637 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000638 1.*|2.0.*)
Tim Rice7df8d392005-09-19 09:33:39 -0700639 AC_DEFINE(BROKEN_CMSG_TYPE, 1,
640 [Define if cmsg_type is not passed correctly])
Darren Tucker3c016542003-05-02 20:48:21 +1000641 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000642 esac
Damien Miller89e03ba2005-12-31 16:42:03 +1100643 # tun(4) forwarding compat code
Damien Millerc4bcc912005-12-31 17:05:58 +1100644 AC_CHECK_HEADERS(linux/if_tun.h)
Damien Millerbd4e4102006-01-01 21:03:30 +1100645 if test "x$ac_cv_header_linux_if_tun_h" = "xyes" ; then
Damien Miller89e03ba2005-12-31 16:42:03 +1100646 AC_DEFINE(SSH_TUN_LINUX, 1,
647 [Open tunnel devices the Linux tun/tap way])
648 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
649 [Use tunnel device compatibility to OpenBSD])
650 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
651 [Prepend the address family to IP tunnel traffic])
652 fi
Damien Millerb29ea912000-01-15 14:12:03 +1100653 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000654mips-sony-bsd|mips-sony-newsos4)
Darren Tucker988b3fd2006-02-08 22:11:27 +1100655 AC_DEFINE(NEED_SETPGRP, 1, [Need setpgrp to acquire controlling tty])
Ben Lindstromb5628642000-10-18 00:02:25 +0000656 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000657 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100658*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000659 check_for_libcrypt_before=1
Tim Riceeae17cc2005-03-17 16:52:20 -0800660 if test "x$withval" != "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800661 need_dash_r=1
662 fi
Damien Miller2dcddbf2006-01-01 19:47:05 +1100663 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
664 AC_CHECK_HEADER([net/if_tap.h], ,
665 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
666 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
667 [Prepend the address family to IP tunnel traffic])
Damien Milleree1c0b32000-01-21 00:18:15 +1100668 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100669*-*-freebsd*)
670 check_for_libcrypt_later=1
Darren Tuckerac7e6302005-10-06 01:39:58 +1000671 AC_DEFINE(LOCKED_PASSWD_PREFIX, "*LOCKED*", [Account locked with pw(1)])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100672 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
673 AC_CHECK_HEADER([net/if_tap.h], ,
674 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
Darren Tucker54e859f2008-03-02 21:52:27 +1100675 AC_DEFINE(BROKEN_GLOB, 1, [FreeBSD glob does not do what we need])
Damien Millerfbd884a2001-02-27 08:39:07 +1100676 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000677*-*-bsdi*)
678 AC_DEFINE(SETEUID_BREAKS_SETUID)
679 AC_DEFINE(BROKEN_SETREUID)
680 AC_DEFINE(BROKEN_SETREGID)
681 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000682*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000683 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100684 conf_utmp_location=/etc/utmp
685 conf_wtmp_location=/usr/adm/wtmp
686 MAIL=/usr/spool/mail
Tim Rice7df8d392005-09-19 09:33:39 -0700687 AC_DEFINE(HAVE_NEXT, 1, [Define if you are on NeXT])
Ben Lindstromb4df15d2000-10-15 00:17:36 +0000688 AC_DEFINE(BROKEN_REALPATH)
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000689 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700690 AC_DEFINE(BROKEN_SAVED_UIDS, 1, [Needed for NeXT])
Damien Miller0f91b4e2000-06-18 15:43:25 +1000691 ;;
Darren Tucker4a422572005-07-14 17:22:11 +1000692*-*-openbsd*)
693 AC_DEFINE(HAVE_ATTRIBUTE__SENTINEL__, 1, [OpenBSD's gcc has sentinel])
Darren Tucker9ac1a652005-10-09 11:40:03 +1000694 AC_DEFINE(HAVE_ATTRIBUTE__BOUNDED__, 1, [OpenBSD's gcc has bounded])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100695 AC_DEFINE(SSH_TUN_OPENBSD, 1, [Open tunnel devices the OpenBSD way])
Damien Millerbb598142006-08-19 08:38:23 +1000696 AC_DEFINE(SYSLOG_R_SAFE_IN_SIGHAND, 1,
697 [syslog_r function is safe to use in in a signal handler])
Darren Tucker4a422572005-07-14 17:22:11 +1000698 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100699*-*-solaris*)
Tim Riceeae17cc2005-03-17 16:52:20 -0800700 if test "x$withval" != "xno" ; then
Tim Ricead4a1882004-02-29 15:53:37 -0800701 need_dash_r=1
702 fi
Damien Miller82cf0ce2000-12-20 13:34:48 +1100703 AC_DEFINE(PAM_SUN_CODEBASE)
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000704 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700705 AC_DEFINE(LOGIN_NEEDS_TERM, 1,
706 [Some versions of /bin/login need the TERM supplied
707 on the commandline])
Ben Lindstrom95276712001-10-23 17:14:00 +0000708 AC_DEFINE(PAM_TTY_KLUDGE)
Tim Rice7df8d392005-09-19 09:33:39 -0700709 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
710 [Define if pam_chauthtok wants real uid set
711 to the unpriv'ed user])
Darren Tuckere41bba52003-08-25 11:51:19 +1000712 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Darren Tuckerc437cda2003-05-10 17:05:46 +1000713 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
Tim Rice7df8d392005-09-19 09:33:39 -0700714 AC_DEFINE(SSHD_ACQUIRES_CTTY, 1,
715 [Define if sshd somehow reacquires a controlling TTY
716 after setsid()])
Darren Tucker0249f932006-06-24 12:10:07 +1000717 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd
718 in case the name is longer than 8 chars])
Darren Tuckerac9f1b92009-08-28 15:01:20 +1000719 AC_DEFINE(BROKEN_TCGETATTR_ICANON, 1, [tcgetattr with ICANON may hang])
Darren Tuckere1a790d2003-09-16 11:52:19 +1000720 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000721 # hardwire lastlog location (can't detect it on some versions)
722 conf_lastlog_location="/var/adm/lastlog"
Damien Millera1cb6442000-06-09 11:58:35 +1000723 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
724 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
725 if test "$sol2ver" -ge 8; then
726 AC_MSG_RESULT(yes)
727 AC_DEFINE(DISABLE_UTMP)
Tim Rice7df8d392005-09-19 09:33:39 -0700728 AC_DEFINE(DISABLE_WTMP, 1,
729 [Define if you don't want to use wtmp])
Damien Millera1cb6442000-06-09 11:58:35 +1000730 else
731 AC_MSG_RESULT(no)
732 fi
Damien Miller1b06dc32006-08-31 03:24:41 +1000733 AC_ARG_WITH(solaris-contracts,
734 [ --with-solaris-contracts Enable Solaris process contracts (experimental)],
735 [
736 AC_CHECK_LIB(contract, ct_tmpl_activate,
737 [ AC_DEFINE(USE_SOLARIS_PROCESS_CONTRACTS, 1,
738 [Define if you have Solaris process contracts])
739 SSHDLIBS="$SSHDLIBS -lcontract"
Damien Miller1b06dc32006-08-31 03:24:41 +1000740 SPC_MSG="yes" ], )
741 ],
742 )
Darren Tucker97528352010-11-05 12:03:05 +1100743 AC_ARG_WITH(solaris-projects,
744 [ --with-solaris-projects Enable Solaris projects (experimental)],
745 [
746 AC_CHECK_LIB(project, setproject,
747 [ AC_DEFINE(USE_SOLARIS_PROJECTS, 1,
748 [Define if you have Solaris projects])
749 SSHDLIBS="$SSHDLIBS -lproject"
Darren Tucker97528352010-11-05 12:03:05 +1100750 SP_MSG="yes" ], )
751 ],
752 )
Damien Miller75b1d102000-01-07 14:01:41 +1100753 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +1000754*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000755 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Damien Millerdfc83f42000-05-20 15:02:59 +1000756 AC_CHECK_FUNCS(getpwanam)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100757 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000758 conf_utmp_location=/etc/utmp
759 conf_wtmp_location=/var/adm/wtmp
760 conf_lastlog_location=/var/adm/lastlog
Damien Millerb0785672000-08-23 09:10:39 +1000761 AC_DEFINE(USE_PIPES)
Damien Millerdfc83f42000-05-20 15:02:59 +1000762 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000763*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -0700764 LIBS="$LIBS -lc89"
Kevin Steves0bd4b342002-01-05 23:24:27 +0000765 AC_DEFINE(USE_PIPES)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000766 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker00130112003-09-22 11:40:24 +1000767 AC_DEFINE(SETEUID_BREAKS_SETUID)
768 AC_DEFINE(BROKEN_SETREUID)
769 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000770 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000771*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -0700772 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Darren Tucker89df7a32003-10-07 20:35:57 +1000773 AC_CHECK_LIB(dl, dlsym, ,)
Darren Tucker79d09fa2005-11-24 22:34:54 +1100774 # -lresolv needs to be at the end of LIBS or DNS lookups break
775 AC_CHECK_LIB(resolv, res_query, [ LIBS="$LIBS -lresolv" ])
Damien Millerfd9885e2001-01-10 08:16:53 +1100776 IPADDR_IN_DISPLAY=yes
777 AC_DEFINE(USE_PIPES)
Damien Miller2ae714f2000-07-11 09:29:50 +1000778 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker3b2a06c2003-10-07 18:37:11 +1000779 AC_DEFINE(SETEUID_BREAKS_SETUID)
780 AC_DEFINE(BROKEN_SETREUID)
781 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000782 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckere1a790d2003-09-16 11:52:19 +1000783 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -0700784 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
785 # Attention: always take care to bind libsocket and libnsl before libc,
786 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +1000787 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800788# UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
Damien Miller78315eb2000-09-29 23:01:36 +1100789*-*-sysv4.2*)
Damien Miller5dfe9762001-02-16 12:05:39 +1100790 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700791 AC_DEFINE(SETEUID_BREAKS_SETUID)
792 AC_DEFINE(BROKEN_SETREUID)
793 AC_DEFINE(BROKEN_SETREGID)
Tim Rice2f97b8b2005-04-11 19:00:18 -0700794 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd])
Tim Rice46259d82005-11-28 18:40:34 -0800795 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller78315eb2000-09-29 23:01:36 +1100796 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800797# UnixWare 7.x, OpenUNIX 8
Damien Miller78315eb2000-09-29 23:01:36 +1100798*-*-sysv5*)
Tim Rice641ebf12010-01-17 17:05:39 -0800799 CPPFLAGS="$CPPFLAGS -Dvsnprintf=_xvsnprintf -Dsnprintf=_xsnprintf"
Tim Riceeb456542005-08-30 07:12:02 -0700800 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
Damien Miller5dfe9762001-02-16 12:05:39 +1100801 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700802 AC_DEFINE(SETEUID_BREAKS_SETUID)
Tim Rice4a7db1c2010-01-16 12:23:25 -0800803 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Riced546a842003-09-11 22:24:36 -0700804 AC_DEFINE(BROKEN_SETREUID)
805 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700806 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Tim Rice4dbacff2005-06-01 20:09:28 -0700807 case "$host" in
808 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
809 TEST_SHELL=/u95/bin/sh
Tim Rice7df8d392005-09-19 09:33:39 -0700810 AC_DEFINE(BROKEN_LIBIAF, 1,
811 [ia_uinfo routines not supported by OS yet])
Tim Riceb8f00192006-09-06 18:11:29 -0700812 AC_DEFINE(BROKEN_UPDWTMPX)
Tim Rice351529c2009-01-07 10:04:12 -0800813 AC_CHECK_LIB(prot, getluid,[ LIBS="$LIBS -lprot"
814 AC_CHECK_FUNCS(getluid setluid,,,-lprot)
815 AC_DEFINE(HAVE_SECUREWARE)
816 AC_DEFINE(DISABLE_SHADOW)
817 ],,)
Tim Rice4dbacff2005-06-01 20:09:28 -0700818 ;;
Tim Rice46259d82005-11-28 18:40:34 -0800819 *) AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Tim Rice26767912009-01-07 20:50:08 -0800820 check_for_libcrypt_later=1
Tim Rice46259d82005-11-28 18:40:34 -0800821 ;;
Tim Rice4dbacff2005-06-01 20:09:28 -0700822 esac
Damien Miller78315eb2000-09-29 23:01:36 +1100823 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100824*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +1100825 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800826# SCO UNIX and OEM versions of SCO UNIX
Damien Miller78315eb2000-09-29 23:01:36 +1100827*-*-sco3.2v4*)
Tim Ricec390c8d2005-03-07 01:21:37 -0800828 AC_MSG_ERROR("This Platform is no longer supported.")
Damien Miller78315eb2000-09-29 23:01:36 +1100829 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800830# SCO OpenServer 5.x
Damien Miller78315eb2000-09-29 23:01:36 +1100831*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -0800832 if test -z "$GCC"; then
833 CFLAGS="$CFLAGS -belf"
834 fi
Damien Miller5dfe9762001-02-16 12:05:39 +1100835 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000836 no_dev_ptmx=1
Damien Miller5dfe9762001-02-16 12:05:39 +1100837 AC_DEFINE(USE_PIPES)
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000838 AC_DEFINE(HAVE_SECUREWARE)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000839 AC_DEFINE(DISABLE_SHADOW)
Tim Rice9dd30812002-07-07 13:43:36 -0700840 AC_DEFINE(DISABLE_FD_PASSING)
Tim Riced546a842003-09-11 22:24:36 -0700841 AC_DEFINE(SETEUID_BREAKS_SETUID)
Tim Rice7ab7b932010-01-17 12:48:22 -0800842 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Riced546a842003-09-11 22:24:36 -0700843 AC_DEFINE(BROKEN_SETREUID)
844 AC_DEFINE(BROKEN_SETREGID)
Tim Riceae477e92003-09-12 18:15:15 -0700845 AC_DEFINE(WITH_ABBREV_NO_TTY)
Tim Rice816bd0d2004-07-19 10:19:26 -0700846 AC_DEFINE(BROKEN_UPDWTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700847 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Damien Miller217f5672001-02-16 12:12:41 +1100848 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700849 MANTYPE=man
Tim Ricef7ba8f62004-06-20 10:37:32 -0700850 TEST_SHELL=ksh
Damien Millera66626b2000-06-13 18:57:53 +1000851 ;;
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000852*-*-unicosmk*)
Tim Rice7df8d392005-09-19 09:33:39 -0700853 AC_DEFINE(NO_SSH_LASTLOG, 1,
854 [Define if you don't want to use lastlog in session.c])
Darren Tucker2df33432004-01-30 14:34:21 +1100855 AC_DEFINE(SETEUID_BREAKS_SETUID)
856 AC_DEFINE(BROKEN_SETREUID)
857 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000858 AC_DEFINE(USE_PIPES)
859 AC_DEFINE(DISABLE_FD_PASSING)
860 LDFLAGS="$LDFLAGS"
861 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
862 MANTYPE=cat
Ben Lindstrom762104e2002-07-23 00:00:05 +0000863 ;;
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000864*-*-unicosmp*)
Darren Tucker2df33432004-01-30 14:34:21 +1100865 AC_DEFINE(SETEUID_BREAKS_SETUID)
866 AC_DEFINE(BROKEN_SETREUID)
867 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000868 AC_DEFINE(WITH_ABBREV_NO_TTY)
869 AC_DEFINE(USE_PIPES)
870 AC_DEFINE(DISABLE_FD_PASSING)
871 LDFLAGS="$LDFLAGS"
Darren Tucker2df33432004-01-30 14:34:21 +1100872 LIBS="$LIBS -lgen -lacid -ldb"
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000873 MANTYPE=cat
874 ;;
Ben Lindstromd9e08242001-07-22 19:32:00 +0000875*-*-unicos*)
Darren Tucker2df33432004-01-30 14:34:21 +1100876 AC_DEFINE(SETEUID_BREAKS_SETUID)
877 AC_DEFINE(BROKEN_SETREUID)
878 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstromd9e08242001-07-22 19:32:00 +0000879 AC_DEFINE(USE_PIPES)
Tim Rice9dd30812002-07-07 13:43:36 -0700880 AC_DEFINE(DISABLE_FD_PASSING)
Tim Rice81ed5182002-09-25 17:38:46 -0700881 AC_DEFINE(NO_SSH_LASTLOG)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000882 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
883 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
884 MANTYPE=cat
Tim Ricee991e3c2001-08-07 15:29:07 -0700885 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000886*-dec-osf*)
Ben Lindstrom72af2ef2001-05-08 20:42:28 +0000887 AC_MSG_CHECKING(for Digital Unix SIA)
888 no_osfsia=""
889 AC_ARG_WITH(osfsia,
890 [ --with-osfsia Enable Digital Unix SIA],
891 [
892 if test "x$withval" = "xno" ; then
893 AC_MSG_RESULT(disabled)
894 no_osfsia=1
895 fi
896 ],
897 )
898 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +1000899 if test -f /etc/sia/matrix.conf; then
900 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -0700901 AC_DEFINE(HAVE_OSF_SIA, 1,
902 [Define if you have Digital Unix Security
903 Integration Architecture])
904 AC_DEFINE(DISABLE_LOGIN, 1,
905 [Define if you don't want to use your
906 system's login() call])
Ben Lindstromc8c548d2003-03-21 01:18:09 +0000907 AC_DEFINE(DISABLE_FD_PASSING)
Damien Millerb8c656e2000-06-28 15:22:41 +1000908 LIBS="$LIBS -lsecurity -ldb -lm -laud"
Damien Miller1b06dc32006-08-31 03:24:41 +1000909 SIA_MSG="yes"
Damien Millerb8c656e2000-06-28 15:22:41 +1000910 else
911 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -0700912 AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin",
913 [String used in /etc/passwd to denote locked account])
Damien Millerb8c656e2000-06-28 15:22:41 +1000914 fi
915 fi
Darren Tucker3c8e1e12003-08-25 13:27:40 +1000916 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Rice7a74c6b2003-09-21 21:00:59 -0700917 AC_DEFINE(SETEUID_BREAKS_SETUID)
Darren Tuckered92b212003-09-22 11:26:16 +1000918 AC_DEFINE(BROKEN_SETREUID)
919 AC_DEFINE(BROKEN_SETREGID)
Damien Millerff2e4922008-07-05 09:52:03 +1000920 AC_DEFINE(BROKEN_READV_COMPARISON, 1, [Can't do comparisons on readv])
Damien Millerb8c656e2000-06-28 15:22:41 +1000921 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000922
Tim Rice70335a62006-02-04 17:42:58 -0800923*-*-nto-qnx*)
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000924 AC_DEFINE(USE_PIPES)
925 AC_DEFINE(NO_X11_UNIX_SOCKETS)
Tim Rice7df8d392005-09-19 09:33:39 -0700926 AC_DEFINE(MISSING_NFDBITS, 1, [Define on *nto-qnx systems])
927 AC_DEFINE(MISSING_HOWMANY, 1, [Define on *nto-qnx systems])
928 AC_DEFINE(MISSING_FD_MASK, 1, [Define on *nto-qnx systems])
Tim Rice70335a62006-02-04 17:42:58 -0800929 AC_DEFINE(DISABLE_LASTLOG)
Darren Tucker54b75fe2006-02-26 12:31:48 +1100930 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckerbc1bd9d2007-09-27 07:03:20 +1000931 AC_DEFINE(BROKEN_SHADOW_EXPIRE, 1, [QNX shadow support is broken])
Tim Rice2f993462006-02-11 18:37:48 -0800932 enable_etc_default_login=no # has incompatible /etc/default/login
Darren Tucker8acb3b62007-08-10 14:36:12 +1000933 case "$host" in
934 *-*-nto-qnx6*)
935 AC_DEFINE(DISABLE_FD_PASSING)
936 ;;
937 esac
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000938 ;;
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000939
940*-*-ultrix*)
Tim Rice7df8d392005-09-19 09:33:39 -0700941 AC_DEFINE(BROKEN_GETGROUPS, 1, [getgroups(0,NULL) will return -1])
942 AC_DEFINE(BROKEN_MMAP, 1, [Ultrix mmap can't map files])
Darren Tucker988b3fd2006-02-08 22:11:27 +1100943 AC_DEFINE(NEED_SETPGRP)
Tim Ricefcc7ff12005-06-02 20:28:29 -0700944 AC_DEFINE(HAVE_SYS_SYSLOG_H, 1, [Force use of sys/syslog.h on Ultrix])
945 ;;
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000946
947*-*-lynxos)
948 CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
Tim Rice7df8d392005-09-19 09:33:39 -0700949 AC_DEFINE(MISSING_HOWMANY)
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000950 AC_DEFINE(BROKEN_SETVBUF, 1, [LynxOS has broken setvbuf() implementation])
951 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100952esac
953
Darren Tucker6eb93042003-06-29 21:30:41 +1000954AC_MSG_CHECKING(compiler and flags for sanity)
Darren Tucker623d92f2004-09-12 22:36:15 +1000955AC_RUN_IFELSE(
956 [AC_LANG_SOURCE([
Darren Tucker6eb93042003-06-29 21:30:41 +1000957#include <stdio.h>
958int main(){exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +1000959 ])],
Darren Tucker6eb93042003-06-29 21:30:41 +1000960 [ AC_MSG_RESULT(yes) ],
961 [
962 AC_MSG_RESULT(no)
963 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000964 ],
965 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
Darren Tucker6eb93042003-06-29 21:30:41 +1000966)
967
Darren Tucker0c9653f2005-05-28 15:58:14 +1000968dnl Checks for header files.
Damien Millera22ba012000-03-02 23:09:20 +1100969# Checks for libraries.
Tim Rice13aae5e2001-10-21 17:53:58 -0700970AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
971AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000972
Tim Rice1e1ef642003-09-11 22:19:31 -0700973dnl IRIX and Solaris 2.5.1 have dirname() in libgen
974AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
975 AC_CHECK_LIB(gen, dirname,[
976 AC_CACHE_CHECK([for broken dirname],
977 ac_cv_have_broken_dirname, [
978 save_LIBS="$LIBS"
979 LIBS="$LIBS -lgen"
Darren Tucker314d89e2005-10-17 23:29:23 +1000980 AC_RUN_IFELSE(
981 [AC_LANG_SOURCE([[
Tim Rice1e1ef642003-09-11 22:19:31 -0700982#include <libgen.h>
983#include <string.h>
984
985int main(int argc, char **argv) {
986 char *s, buf[32];
987
988 strncpy(buf,"/etc", 32);
989 s = dirname(buf);
990 if (!s || strncmp(s, "/", 32) != 0) {
991 exit(1);
992 } else {
993 exit(0);
994 }
995}
Darren Tucker314d89e2005-10-17 23:29:23 +1000996 ]])],
Tim Rice1e1ef642003-09-11 22:19:31 -0700997 [ ac_cv_have_broken_dirname="no" ],
Darren Tucker314d89e2005-10-17 23:29:23 +1000998 [ ac_cv_have_broken_dirname="yes" ],
999 [ ac_cv_have_broken_dirname="no" ],
Tim Rice1e1ef642003-09-11 22:19:31 -07001000 )
1001 LIBS="$save_LIBS"
1002 ])
1003 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
1004 LIBS="$LIBS -lgen"
1005 AC_DEFINE(HAVE_DIRNAME)
1006 AC_CHECK_HEADERS(libgen.h)
1007 fi
1008 ])
1009])
1010
1011AC_CHECK_FUNC(getspnam, ,
1012 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
Tim Rice7df8d392005-09-19 09:33:39 -07001013AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME, 1,
1014 [Define if you have the basename function.]))
Tim Rice1e1ef642003-09-11 22:19:31 -07001015
Tim Rice13aae5e2001-10-21 17:53:58 -07001016dnl zlib is required
1017AC_ARG_WITH(zlib,
1018 [ --with-zlib=PATH Use zlib in PATH],
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001019 [ if test "x$withval" = "xno" ; then
1020 AC_MSG_ERROR([*** zlib is required ***])
1021 elif test "x$withval" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001022 if test -d "$withval/lib"; then
1023 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001024 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001025 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001026 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001027 fi
1028 else
1029 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001030 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001031 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001032 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001033 fi
1034 fi
1035 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001036 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001037 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001038 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001039 fi
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001040 fi ]
Tim Rice13aae5e2001-10-21 17:53:58 -07001041)
1042
Darren Tucker83d8f282009-08-17 09:35:22 +10001043AC_CHECK_HEADER([zlib.h], ,AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***]))
Tim Ricefcb62202004-01-23 18:35:16 -08001044AC_CHECK_LIB(z, deflate, ,
1045 [
1046 saved_CPPFLAGS="$CPPFLAGS"
1047 saved_LDFLAGS="$LDFLAGS"
1048 save_LIBS="$LIBS"
1049 dnl Check default zlib install dir
1050 if test -n "${need_dash_r}"; then
1051 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
1052 else
1053 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
1054 fi
1055 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
1056 LIBS="$LIBS -lz"
1057 AC_TRY_LINK_FUNC(deflate, AC_DEFINE(HAVE_LIBZ),
1058 [
1059 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
1060 ]
1061 )
1062 ]
1063)
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001064
1065AC_ARG_WITH(zlib-version-check,
1066 [ --without-zlib-version-check Disable zlib version check],
1067 [ if test "x$withval" = "xno" ; then
1068 zlib_check_nonfatal=1
1069 fi
1070 ]
1071)
1072
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001073AC_MSG_CHECKING(for possibly buggy zlib)
Darren Tucker623d92f2004-09-12 22:36:15 +10001074AC_RUN_IFELSE([AC_LANG_SOURCE([[
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001075#include <stdio.h>
Darren Tucker2dcd2392004-01-23 17:13:33 +11001076#include <zlib.h>
1077int main()
1078{
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001079 int a=0, b=0, c=0, d=0, n, v;
1080 n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
1081 if (n != 3 && n != 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001082 exit(1);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001083 v = a*1000000 + b*10000 + c*100 + d;
1084 fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
1085
1086 /* 1.1.4 is OK */
1087 if (a == 1 && b == 1 && c >= 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001088 exit(0);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001089
Darren Tucker41097ed2005-07-25 15:24:21 +10001090 /* 1.2.3 and up are OK */
1091 if (v >= 1020300)
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001092 exit(0);
1093
Darren Tucker2dcd2392004-01-23 17:13:33 +11001094 exit(2);
1095}
Darren Tucker623d92f2004-09-12 22:36:15 +10001096 ]])],
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001097 AC_MSG_RESULT(no),
1098 [ AC_MSG_RESULT(yes)
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001099 if test -z "$zlib_check_nonfatal" ; then
1100 AC_MSG_ERROR([*** zlib too old - check config.log ***
1101Your reported zlib version has known security problems. It's possible your
1102vendor has fixed these problems without changing the version number. If you
1103are sure this is the case, you can disable the check by running
1104"./configure --without-zlib-version-check".
Darren Tuckerac1910f2005-07-26 12:00:42 +10001105If you are in doubt, upgrade zlib to version 1.2.3 or greater.
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001106See http://www.gzip.org/zlib/ for details.])
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001107 else
1108 AC_MSG_WARN([zlib version may have security problems])
1109 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10001110 ],
1111 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
Darren Tucker2dcd2392004-01-23 17:13:33 +11001112)
Damien Miller6f9c3372000-10-25 10:06:04 +11001113
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001114dnl UnixWare 2.x
Damien Millera8e06ce2003-11-21 23:48:55 +11001115AC_CHECK_FUNC(strcasecmp,
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001116 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
1117)
Darren Tucker5bfe1682005-11-12 18:42:36 +11001118AC_CHECK_FUNCS(utimes,
Tim Ricecbb90662002-07-08 19:17:10 -07001119 [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
1120 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001121)
Damien Millerab18c411999-11-11 10:40:23 +11001122
Tim Ricee589a292001-11-03 11:09:32 -08001123dnl Checks for libutil functions
1124AC_CHECK_HEADERS(libutil.h)
Tim Rice7df8d392005-09-19 09:33:39 -07001125AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN, 1,
1126 [Define if your libraries define login()])])
Damien Millera7058ec2008-05-20 08:57:06 +10001127AC_CHECK_FUNCS(fmt_scaled logout updwtmp logwtmp)
Tim Ricee589a292001-11-03 11:09:32 -08001128
Ben Lindstrom8697e082001-02-24 21:41:10 +00001129AC_FUNC_STRFTIME
1130
Damien Miller3c027682001-03-14 11:39:45 +11001131# Check for ALTDIRFUNC glob() extension
1132AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
1133AC_EGREP_CPP(FOUNDIT,
1134 [
1135 #include <glob.h>
1136 #ifdef GLOB_ALTDIRFUNC
1137 FOUNDIT
1138 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001139 ],
Damien Miller3c027682001-03-14 11:39:45 +11001140 [
Tim Rice7df8d392005-09-19 09:33:39 -07001141 AC_DEFINE(GLOB_HAS_ALTDIRFUNC, 1,
1142 [Define if your system glob() function has
1143 the GLOB_ALTDIRFUNC extension])
Damien Miller3c027682001-03-14 11:39:45 +11001144 AC_MSG_RESULT(yes)
1145 ],
1146 [
1147 AC_MSG_RESULT(no)
1148 ]
1149)
Damien Millerab18c411999-11-11 10:40:23 +11001150
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001151# Check for g.gl_matchc glob() extension
1152AC_MSG_CHECKING(for gl_matchc field in glob_t)
Darren Tucker486d95e2006-03-15 21:31:39 +11001153AC_TRY_COMPILE(
Damien Milleraf87af12006-03-15 13:02:28 +11001154 [ #include <glob.h> ],
1155 [glob_t g; g.gl_matchc = 1;],
Damien Millera8e06ce2003-11-21 23:48:55 +11001156 [
Tim Rice7df8d392005-09-19 09:33:39 -07001157 AC_DEFINE(GLOB_HAS_GL_MATCHC, 1,
1158 [Define if your system glob() function has
1159 gl_matchc options in glob_t])
Damien Millera8e06ce2003-11-21 23:48:55 +11001160 AC_MSG_RESULT(yes)
1161 ],
1162 [
1163 AC_MSG_RESULT(no)
1164 ]
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001165)
1166
Damien Millera6e121a2010-10-07 21:39:17 +11001167# Check for g.gl_statv glob() extension
1168AC_MSG_CHECKING(for gl_statv and GLOB_KEEPSTAT extensions for glob)
1169AC_TRY_COMPILE(
1170 [ #include <glob.h> ],
1171 [
1172#ifndef GLOB_KEEPSTAT
1173#error "glob does not support GLOB_KEEPSTAT extension"
1174#endif
1175glob_t g;
1176g.gl_statv = NULL;
1177],
1178 [
1179 AC_DEFINE(GLOB_HAS_GL_STATV, 1,
1180 [Define if your system glob() function has
1181 gl_statv options in glob_t])
1182 AC_MSG_RESULT(yes)
1183 ],
1184 [
1185 AC_MSG_RESULT(no)
1186 ]
1187)
1188
Darren Tucker096faec2006-09-01 20:29:10 +10001189AC_CHECK_DECLS(GLOB_NOMATCH, , , [#include <glob.h>])
1190
Damien Miller18bb4732001-03-28 14:35:30 +10001191AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001192AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001193 [AC_LANG_SOURCE([[
Damien Miller18bb4732001-03-28 14:35:30 +10001194#include <sys/types.h>
1195#include <dirent.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001196int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
Darren Tucker623d92f2004-09-12 22:36:15 +10001197 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001198 [AC_MSG_RESULT(yes)],
Damien Miller18bb4732001-03-28 14:35:30 +10001199 [
1200 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -07001201 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
Darren Tucker79d09fa2005-11-24 22:34:54 +11001202 [Define if your struct dirent expects you to
Tim Rice7df8d392005-09-19 09:33:39 -07001203 allocate extra space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001204 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08001205 [
Darren Tuckera0c2b392004-09-11 23:26:37 +10001206 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
1207 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
Damien Miller18bb4732001-03-28 14:35:30 +10001208 ]
1209)
1210
Damien Miller36f49652004-08-15 18:40:59 +10001211AC_MSG_CHECKING([for /proc/pid/fd directory])
1212if test -d "/proc/$$/fd" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07001213 AC_DEFINE(HAVE_PROC_PID, 1, [Define if you have /proc/$pid/fd])
Damien Miller36f49652004-08-15 18:40:59 +10001214 AC_MSG_RESULT(yes)
1215else
1216 AC_MSG_RESULT(no)
1217fi
1218
Damien Millerc547bf12001-02-16 10:18:12 +11001219# Check whether user wants S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +11001220SKEY_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +11001221AC_ARG_WITH(skey,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001222 [ --with-skey[[=PATH]] Enable S/Key support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +11001223 [
1224 if test "x$withval" != "xno" ; then
1225
1226 if test "x$withval" != "xyes" ; then
1227 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1228 LDFLAGS="$LDFLAGS -L${withval}/lib"
1229 fi
1230
Tim Rice7df8d392005-09-19 09:33:39 -07001231 AC_DEFINE(SKEY, 1, [Define if you want S/Key support])
Damien Millerc547bf12001-02-16 10:18:12 +11001232 LIBS="-lskey $LIBS"
Damien Millera8e06ce2003-11-21 23:48:55 +11001233 SKEY_MSG="yes"
Tim Riceeae17cc2005-03-17 16:52:20 -08001234
Tim Rice4cec93f2002-02-26 08:40:48 -08001235 AC_MSG_CHECKING([for s/key support])
Darren Tucker314d89e2005-10-17 23:29:23 +10001236 AC_LINK_IFELSE(
1237 [AC_LANG_SOURCE([[
Tim Rice4cec93f2002-02-26 08:40:48 -08001238#include <stdio.h>
1239#include <skey.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001240int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
Darren Tucker314d89e2005-10-17 23:29:23 +10001241 ]])],
Tim Rice4cec93f2002-02-26 08:40:48 -08001242 [AC_MSG_RESULT(yes)],
1243 [
1244 AC_MSG_RESULT(no)
Damien Millerc547bf12001-02-16 10:18:12 +11001245 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
1246 ])
Darren Tucker3b908f62004-04-14 15:26:39 +10001247 AC_MSG_CHECKING(if skeychallenge takes 4 arguments)
1248 AC_TRY_COMPILE(
1249 [#include <stdio.h>
1250 #include <skey.h>],
1251 [(void)skeychallenge(NULL,"name","",0);],
1252 [AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001253 AC_DEFINE(SKEYCHALLENGE_4ARG, 1,
1254 [Define if your skeychallenge()
1255 function takes 4 arguments (NetBSD)])],
Darren Tucker3b908f62004-04-14 15:26:39 +10001256 [AC_MSG_RESULT(no)]
1257 )
Damien Millerc547bf12001-02-16 10:18:12 +11001258 fi
1259 ]
1260)
1261
1262# Check whether user wants TCP wrappers support
Tim Rice13aae5e2001-10-21 17:53:58 -07001263TCPW_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +11001264AC_ARG_WITH(tcp-wrappers,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001265 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +11001266 [
1267 if test "x$withval" != "xno" ; then
1268 saved_LIBS="$LIBS"
Tim Rice13aae5e2001-10-21 17:53:58 -07001269 saved_LDFLAGS="$LDFLAGS"
1270 saved_CPPFLAGS="$CPPFLAGS"
Tim Rice8bb561b2005-03-17 16:23:19 -08001271 if test -n "${withval}" && \
Tim Rice35cc69d2005-03-17 16:44:25 -08001272 test "x${withval}" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001273 if test -d "${withval}/lib"; then
1274 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001275 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001276 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001277 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001278 fi
1279 else
1280 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001281 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001282 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001283 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001284 fi
1285 fi
1286 if test -d "${withval}/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001287 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001288 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001289 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001290 fi
Tim Rice13aae5e2001-10-21 17:53:58 -07001291 fi
Darren Tucker20e9f972007-03-25 18:26:01 +10001292 LIBS="-lwrap $LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001293 AC_MSG_CHECKING(for libwrap)
1294 AC_TRY_LINK(
1295 [
Damien Miller0ac45002004-04-14 20:14:26 +10001296#include <sys/types.h>
1297#include <sys/socket.h>
1298#include <netinet/in.h>
Damien Millerc547bf12001-02-16 10:18:12 +11001299#include <tcpd.h>
1300 int deny_severity = 0, allow_severity = 0;
1301 ],
1302 [hosts_access(0);],
1303 [
1304 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001305 AC_DEFINE(LIBWRAP, 1,
1306 [Define if you want
1307 TCP Wrappers support])
Darren Tucker20e9f972007-03-25 18:26:01 +10001308 SSHDLIBS="$SSHDLIBS -lwrap"
Tim Rice13aae5e2001-10-21 17:53:58 -07001309 TCPW_MSG="yes"
Damien Millerc547bf12001-02-16 10:18:12 +11001310 ],
1311 [
1312 AC_MSG_ERROR([*** libwrap missing])
1313 ]
1314 )
Tim Rice4cec93f2002-02-26 08:40:48 -08001315 LIBS="$saved_LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001316 fi
1317 ]
1318)
1319
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001320# Check whether user wants libedit support
1321LIBEDIT_MSG="no"
1322AC_ARG_WITH(libedit,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001323 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001324 [ if test "x$withval" != "xno" ; then
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001325 if test "x$withval" = "xyes" ; then
1326 AC_PATH_PROG(PKGCONFIG, pkg-config, no)
1327 if test "x$PKGCONFIG" != "xno"; then
1328 AC_MSG_CHECKING(if $PKGCONFIG knows about libedit)
1329 if "$PKGCONFIG" libedit; then
1330 AC_MSG_RESULT(yes)
1331 use_pkgconfig_for_libedit=yes
1332 else
1333 AC_MSG_RESULT(no)
1334 fi
1335 fi
1336 else
Darren Tuckerc373a562005-09-22 20:15:08 +10001337 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1338 if test -n "${need_dash_r}"; then
1339 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1340 else
1341 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1342 fi
Darren Tucker1df61452005-03-21 09:58:07 +11001343 fi
Damien Miller1f789802010-10-11 22:35:22 +11001344 if test "x$use_pkgconfig_for_libedit" = "xyes"; then
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001345 LIBEDIT=`$PKGCONFIG --libs-only-l libedit`
1346 CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`"
1347 else
1348 LIBEDIT="-ledit -lcurses"
1349 fi
1350 OTHERLIBS=`echo $LIBEDIT | sed 's/-ledit//'`
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001351 AC_CHECK_LIB(edit, el_init,
Tim Rice7df8d392005-09-19 09:33:39 -07001352 [ AC_DEFINE(USE_LIBEDIT, 1, [Use libedit for sftp])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001353 LIBEDIT_MSG="yes"
1354 AC_SUBST(LIBEDIT)
1355 ],
Darren Tucker1df61452005-03-21 09:58:07 +11001356 [ AC_MSG_ERROR(libedit not found) ],
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001357 [ $OTHERLIBS ]
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001358 )
Darren Tuckerc7572b22005-08-10 20:34:15 +10001359 AC_MSG_CHECKING(if libedit version is compatible)
Tim Ricec1819c82005-08-15 17:48:40 -07001360 AC_COMPILE_IFELSE(
1361 [AC_LANG_SOURCE([[
1362#include <histedit.h>
Darren Tuckerc7572b22005-08-10 20:34:15 +10001363int main(void)
1364{
1365 int i = H_SETSIZE;
1366 el_init("", NULL, NULL, NULL);
1367 exit(0);
1368}
Tim Ricec1819c82005-08-15 17:48:40 -07001369 ]])],
Darren Tuckerc7572b22005-08-10 20:34:15 +10001370 [ AC_MSG_RESULT(yes) ],
1371 [ AC_MSG_RESULT(no)
1372 AC_MSG_ERROR(libedit version is not compatible) ]
1373 )
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001374 fi ]
1375)
1376
Darren Tuckerd9f88912005-02-20 21:01:48 +11001377AUDIT_MODULE=none
1378AC_ARG_WITH(audit,
Darren Tuckerea52a822011-01-17 21:15:27 +11001379 [ --with-audit=module Enable audit support (modules=debug,bsm,linux)],
Darren Tuckerd9f88912005-02-20 21:01:48 +11001380 [
1381 AC_MSG_CHECKING(for supported audit module)
1382 case "$withval" in
1383 bsm)
1384 AC_MSG_RESULT(bsm)
1385 AUDIT_MODULE=bsm
1386 dnl Checks for headers, libs and functions
1387 AC_CHECK_HEADERS(bsm/audit.h, [],
Darren Tucker6d0d6fb2006-09-09 01:05:21 +10001388 [AC_MSG_ERROR(BSM enabled and bsm/audit.h not found)],
1389 [
1390#ifdef HAVE_TIME_H
1391# include <time.h>
1392#endif
1393 ]
1394)
Darren Tuckerd9f88912005-02-20 21:01:48 +11001395 AC_CHECK_LIB(bsm, getaudit, [],
1396 [AC_MSG_ERROR(BSM enabled and required library not found)])
1397 AC_CHECK_FUNCS(getaudit, [],
1398 [AC_MSG_ERROR(BSM enabled and required function not found)])
1399 # These are optional
Darren Tuckeracada072008-02-25 21:05:04 +11001400 AC_CHECK_FUNCS(getaudit_addr aug_get_machine)
Tim Rice7df8d392005-09-19 09:33:39 -07001401 AC_DEFINE(USE_BSM_AUDIT, 1, [Use BSM audit module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001402 ;;
Darren Tuckerea52a822011-01-17 21:15:27 +11001403 linux)
1404 AC_MSG_RESULT(linux)
1405 AUDIT_MODULE=linux
1406 dnl Checks for headers, libs and functions
1407 AC_CHECK_HEADERS(libaudit.h)
1408 SSHDLIBS="$SSHDLIBS -laudit"
1409 AC_DEFINE(USE_LINUX_AUDIT, 1, [Use Linux audit module])
1410 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001411 debug)
1412 AUDIT_MODULE=debug
1413 AC_MSG_RESULT(debug)
Darren Tuckerea52a822011-01-17 21:15:27 +11001414 AC_DEFINE(SSH_AUDIT_EVENTS, 1, [Use audit debugging module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001415 ;;
Tim Rice8bc6b902005-08-09 10:09:53 -07001416 no)
Tim Ricec1819c82005-08-15 17:48:40 -07001417 AC_MSG_RESULT(no)
Tim Rice8bc6b902005-08-09 10:09:53 -07001418 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001419 *)
1420 AC_MSG_ERROR([Unknown audit module $withval])
1421 ;;
1422 esac ]
1423)
1424
Damien Millerfe1f1432003-02-24 15:45:42 +11001425dnl Checks for library functions. Please keep in alphabetical order
Darren Tucker0c9653f2005-05-28 15:58:14 +10001426AC_CHECK_FUNCS( \
1427 arc4random \
Damien Millera4be7c22008-05-19 14:47:37 +10001428 arc4random_buf \
1429 arc4random_uniform \
Damien Miller57f39152005-11-24 19:58:19 +11001430 asprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001431 b64_ntop \
1432 __b64_ntop \
1433 b64_pton \
1434 __b64_pton \
1435 bcopy \
1436 bindresvport_sa \
1437 clock \
1438 closefrom \
1439 dirfd \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001440 fchmod \
1441 fchown \
1442 freeaddrinfo \
Darren Tucker598eaa62008-06-09 03:32:29 +10001443 fstatvfs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001444 futimes \
1445 getaddrinfo \
1446 getcwd \
1447 getgrouplist \
1448 getnameinfo \
1449 getopt \
1450 getpeereid \
Darren Tucker164aa302007-03-21 21:39:57 +11001451 getpeerucred \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001452 _getpty \
1453 getrlimit \
1454 getttyent \
1455 glob \
Darren Tucker909a3902010-01-15 12:38:30 +11001456 group_from_gid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001457 inet_aton \
1458 inet_ntoa \
1459 inet_ntop \
1460 innetgr \
1461 login_getcapbool \
1462 md5_crypt \
1463 memmove \
1464 mkdtemp \
1465 mmap \
1466 ngetaddrinfo \
1467 nsleep \
1468 ogetaddrinfo \
1469 openlog_r \
1470 openpty \
Darren Tuckerfebf0f52007-06-25 22:15:12 +10001471 poll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001472 prctl \
1473 pstat \
1474 readpassphrase \
1475 realpath \
1476 recvmsg \
1477 rresvport_af \
1478 sendmsg \
1479 setdtablesize \
1480 setegid \
1481 setenv \
1482 seteuid \
Darren Tucker909a3902010-01-15 12:38:30 +11001483 setgroupent \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001484 setgroups \
1485 setlogin \
Darren Tucker909a3902010-01-15 12:38:30 +11001486 setpassent\
Darren Tucker0c9653f2005-05-28 15:58:14 +10001487 setpcred \
1488 setproctitle \
1489 setregid \
1490 setreuid \
1491 setrlimit \
1492 setsid \
1493 setvbuf \
1494 sigaction \
1495 sigvec \
1496 snprintf \
1497 socketpair \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +10001498 statfs \
1499 statvfs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001500 strdup \
1501 strerror \
1502 strlcat \
1503 strlcpy \
1504 strmode \
1505 strnvis \
Darren Tuckeraa74f672010-08-16 13:15:23 +10001506 strptime \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001507 strtonum \
Darren Tucker81eb5d52005-06-01 21:39:33 +10001508 strtoll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001509 strtoul \
Damien Miller34a17692007-06-11 14:15:42 +10001510 swap32 \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001511 sysconf \
1512 tcgetpgrp \
Damien Milleraa180632010-10-07 21:25:27 +11001513 timingsafe_bcmp \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001514 truncate \
1515 unsetenv \
1516 updwtmpx \
Darren Tucker909a3902010-01-15 12:38:30 +11001517 user_from_uid \
Damien Miller57f39152005-11-24 19:58:19 +11001518 vasprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001519 vhangup \
1520 vsnprintf \
1521 waitpid \
Damien Millerfe1f1432003-02-24 15:45:42 +11001522)
Tim Rice13aae5e2001-10-21 17:53:58 -07001523
Tim Ricec7a8af02010-11-08 14:26:23 -08001524AC_LINK_IFELSE(
1525[
1526#include <ctype.h>
1527int main(void)
1528{
1529 return (isblank('a'));
1530}
1531],
1532 [AC_DEFINE(HAVE_ISBLANK, 1, [Define if you have isblank(3C).])
1533])
1534
Damien Millerb3c9f782010-02-12 10:11:34 +11001535# PKCS#11 support requires dlopen() and co
1536AC_SEARCH_LIBS(dlopen, dl,
1537 AC_DEFINE([ENABLE_PKCS11], [], [Enable for PKCS#11 support])
1538)
1539
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001540# IRIX has a const char return value for gai_strerror()
1541AC_CHECK_FUNCS(gai_strerror,[
1542 AC_DEFINE(HAVE_GAI_STRERROR)
1543 AC_TRY_COMPILE([
1544#include <sys/types.h>
1545#include <sys/socket.h>
1546#include <netdb.h>
1547
1548const char *gai_strerror(int);],[
1549char *str;
1550
1551str = gai_strerror(0);],[
1552 AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1,
1553 [Define if gai_strerror() returns const char *])])])
1554
Tim Rice7df8d392005-09-19 09:33:39 -07001555AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP, 1,
1556 [Some systems put nanosleep outside of libc]))
Damien Millercd6853c2003-01-28 11:33:42 +11001557
Darren Tuckerf1159b52003-07-07 19:44:01 +10001558dnl Make sure prototypes are defined for these before using them.
Darren Tuckerf1159b52003-07-07 19:44:01 +10001559AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
Darren Tucker390b6d52005-05-28 16:54:36 +10001560AC_CHECK_DECL(strsep,
1561 [AC_CHECK_FUNCS(strsep)],
1562 [],
1563 [
1564#ifdef HAVE_STRING_H
1565# include <string.h>
1566#endif
1567 ])
Ben Lindstrom3e006472002-10-16 00:24:03 +00001568
Darren Tuckerb2427c82003-09-10 15:22:44 +10001569dnl tcsendbreak might be a macro
1570AC_CHECK_DECL(tcsendbreak,
1571 [AC_DEFINE(HAVE_TCSENDBREAK)],
Damien Millera8e06ce2003-11-21 23:48:55 +11001572 [AC_CHECK_FUNCS(tcsendbreak)],
Darren Tuckerb2427c82003-09-10 15:22:44 +10001573 [#include <termios.h>]
1574)
1575
Darren Tucker5bb14002004-04-23 18:53:10 +10001576AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>])
1577
Darren Tucker128a0892006-07-12 19:02:56 +10001578AC_CHECK_DECLS(SHUT_RD, , ,
1579 [
1580#include <sys/types.h>
1581#include <sys/socket.h>
1582 ])
Darren Tucker248469b2006-07-12 14:14:31 +10001583
1584AC_CHECK_DECLS(O_NONBLOCK, , ,
1585 [
1586#include <sys/types.h>
1587#ifdef HAVE_SYS_STAT_H
1588# include <sys/stat.h>
1589#endif
1590#ifdef HAVE_FCNTL_H
1591# include <fcntl.h>
1592#endif
1593 ])
1594
Darren Tuckered0b5922006-09-03 22:44:49 +10001595AC_CHECK_DECLS(writev, , , [
1596#include <sys/types.h>
1597#include <sys/uio.h>
1598#include <unistd.h>
1599 ])
1600
Darren Tucker6d862a52007-04-29 14:39:02 +10001601AC_CHECK_DECLS(MAXSYMLINKS, , , [
1602#include <sys/param.h>
1603 ])
1604
Darren Tuckerdca0edf2007-04-29 15:06:44 +10001605AC_CHECK_DECLS(offsetof, , , [
1606#include <stddef.h>
1607 ])
1608
Darren Tucker2a6b0292003-12-31 14:59:17 +11001609AC_CHECK_FUNCS(setresuid, [
1610 dnl Some platorms have setresuid that isn't implemented, test for this
1611 AC_MSG_CHECKING(if setresuid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001612 AC_RUN_IFELSE(
1613 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001614#include <stdlib.h>
1615#include <errno.h>
1616int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001617 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001618 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001619 [AC_DEFINE(BROKEN_SETRESUID, 1,
1620 [Define if your setresuid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001621 AC_MSG_RESULT(not implemented)],
1622 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001623 )
1624])
Darren Tuckere937be32003-12-17 18:53:26 +11001625
Darren Tucker2a6b0292003-12-31 14:59:17 +11001626AC_CHECK_FUNCS(setresgid, [
1627 dnl Some platorms have setresgid that isn't implemented, test for this
1628 AC_MSG_CHECKING(if setresgid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001629 AC_RUN_IFELSE(
1630 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001631#include <stdlib.h>
1632#include <errno.h>
1633int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001634 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001635 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001636 [AC_DEFINE(BROKEN_SETRESGID, 1,
1637 [Define if your setresgid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001638 AC_MSG_RESULT(not implemented)],
1639 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001640 )
1641])
Darren Tuckere937be32003-12-17 18:53:26 +11001642
Damien Millerad833b32000-08-23 10:46:23 +10001643dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +00001644AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +10001645dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001646AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +00001647AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +10001648dnl Checks for utmpx functions
Darren Tucker261d93a2010-04-09 18:13:27 +10001649AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline getutxuser pututxline)
1650AC_CHECK_FUNCS(setutxdb setutxent utmpxname)
Damien Miller20e231f2009-02-12 13:12:21 +11001651dnl Checks for lastlog functions
1652AC_CHECK_FUNCS(getlastlogxbyname)
Damien Millercedfecc1999-11-15 14:36:53 +11001653
Damien Millera8e06ce2003-11-21 23:48:55 +11001654AC_CHECK_FUNC(daemon,
Tim Rice7df8d392005-09-19 09:33:39 -07001655 [AC_DEFINE(HAVE_DAEMON, 1, [Define if your libraries define daemon()])],
1656 [AC_CHECK_LIB(bsd, daemon,
1657 [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
Damien Miller04f80141999-11-19 15:32:34 +11001658)
1659
Damien Millera8e06ce2003-11-21 23:48:55 +11001660AC_CHECK_FUNC(getpagesize,
Tim Rice7df8d392005-09-19 09:33:39 -07001661 [AC_DEFINE(HAVE_GETPAGESIZE, 1,
1662 [Define if your libraries define getpagesize()])],
1663 [AC_CHECK_LIB(ucb, getpagesize,
1664 [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
Damien Miller9fb07e42000-03-05 16:22:59 +11001665)
1666
Damien Millercb170cb2000-07-01 16:52:55 +10001667# Check for broken snprintf
1668if test "x$ac_cv_func_snprintf" = "xyes" ; then
1669 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001670 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001671 [AC_LANG_SOURCE([[
Damien Millercb170cb2000-07-01 16:52:55 +10001672#include <stdio.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001673int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
Darren Tucker623d92f2004-09-12 22:36:15 +10001674 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001675 [AC_MSG_RESULT(yes)],
Damien Millercb170cb2000-07-01 16:52:55 +10001676 [
1677 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -07001678 AC_DEFINE(BROKEN_SNPRINTF, 1,
1679 [Define if your snprintf is busted])
Damien Millercb170cb2000-07-01 16:52:55 +10001680 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001681 ],
1682 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
Damien Millercb170cb2000-07-01 16:52:55 +10001683 )
1684fi
1685
Damien Miller57f39152005-11-24 19:58:19 +11001686# If we don't have a working asprintf, then we strongly depend on vsnprintf
1687# returning the right thing on overflow: the number of characters it tried to
1688# create (as per SUSv3)
1689if test "x$ac_cv_func_asprintf" != "xyes" && \
1690 test "x$ac_cv_func_vsnprintf" = "xyes" ; then
1691 AC_MSG_CHECKING([whether vsnprintf returns correct values on overflow])
1692 AC_RUN_IFELSE(
1693 [AC_LANG_SOURCE([[
1694#include <sys/types.h>
1695#include <stdio.h>
1696#include <stdarg.h>
1697
1698int x_snprintf(char *str,size_t count,const char *fmt,...)
1699{
1700 size_t ret; va_list ap;
1701 va_start(ap, fmt); ret = vsnprintf(str, count, fmt, ap); va_end(ap);
1702 return ret;
1703}
1704int main(void)
1705{
1706 char x[1];
1707 exit(x_snprintf(x, 1, "%s %d", "hello", 12345) == 11 ? 0 : 1);
1708} ]])],
1709 [AC_MSG_RESULT(yes)],
1710 [
1711 AC_MSG_RESULT(no)
1712 AC_DEFINE(BROKEN_SNPRINTF, 1,
1713 [Define if your snprintf is busted])
1714 AC_MSG_WARN([****** Your vsnprintf() function is broken, complain to your vendor])
1715 ],
1716 [ AC_MSG_WARN([cross compiling: Assuming working vsnprintf()]) ]
1717 )
1718fi
1719
Darren Tuckerd40c66c2005-12-17 22:32:03 +11001720# On systems where [v]snprintf is broken, but is declared in stdio,
1721# check that the fmt argument is const char * or just char *.
1722# This is only useful for when BROKEN_SNPRINTF
1723AC_MSG_CHECKING([whether snprintf can declare const char *fmt])
1724AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
1725 int snprintf(char *a, size_t b, const char *c, ...) { return 0; }
1726 int main(void) { snprintf(0, 0, 0); }
1727 ]])],
1728 [AC_MSG_RESULT(yes)
1729 AC_DEFINE(SNPRINTF_CONST, [const],
1730 [Define as const if snprintf() can declare const char *fmt])],
1731 [AC_MSG_RESULT(no)
1732 AC_DEFINE(SNPRINTF_CONST, [/* not const */])])
1733
Damien Millerb4097182004-05-23 14:09:40 +10001734# Check for missing getpeereid (or equiv) support
1735NO_PEERCHECK=""
Darren Tucker164aa302007-03-21 21:39:57 +11001736if test "x$ac_cv_func_getpeereid" != "xyes" -a "x$ac_cv_func_getpeerucred" != "xyes"; then
Damien Millerb4097182004-05-23 14:09:40 +10001737 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
1738 AC_TRY_COMPILE(
1739 [#include <sys/types.h>
1740 #include <sys/socket.h>],
1741 [int i = SO_PEERCRED;],
Darren Tucker9d2562c2005-04-05 19:22:45 +10001742 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001743 AC_DEFINE(HAVE_SO_PEERCRED, 1, [Have PEERCRED socket option])
Darren Tucker9d2562c2005-04-05 19:22:45 +10001744 ],
Damien Millerb4097182004-05-23 14:09:40 +10001745 [AC_MSG_RESULT(no)
1746 NO_PEERCHECK=1]
1747 )
1748fi
1749
Damien Millere8328192003-01-07 15:18:32 +11001750dnl see whether mkstemp() requires XXXXXX
1751if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
1752AC_MSG_CHECKING([for (overly) strict mkstemp])
Darren Tucker314d89e2005-10-17 23:29:23 +10001753AC_RUN_IFELSE(
1754 [AC_LANG_SOURCE([[
Damien Millere8328192003-01-07 15:18:32 +11001755#include <stdlib.h>
1756main() { char template[]="conftest.mkstemp-test";
1757if (mkstemp(template) == -1)
1758 exit(1);
1759unlink(template); exit(0);
1760}
Darren Tucker314d89e2005-10-17 23:29:23 +10001761 ]])],
Damien Millere8328192003-01-07 15:18:32 +11001762 [
1763 AC_MSG_RESULT(no)
1764 ],
Damien Millera8e06ce2003-11-21 23:48:55 +11001765 [
Damien Millere8328192003-01-07 15:18:32 +11001766 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001767 AC_DEFINE(HAVE_STRICT_MKSTEMP, 1, [Silly mkstemp()])
Damien Millere8328192003-01-07 15:18:32 +11001768 ],
1769 [
1770 AC_MSG_RESULT(yes)
1771 AC_DEFINE(HAVE_STRICT_MKSTEMP)
Damien Millera8e06ce2003-11-21 23:48:55 +11001772 ]
Damien Millere8328192003-01-07 15:18:32 +11001773)
1774fi
1775
Darren Tucker70a3d552003-08-21 17:58:29 +10001776dnl make sure that openpty does not reacquire controlling terminal
1777if test ! -z "$check_for_openpty_ctty_bug"; then
1778 AC_MSG_CHECKING(if openpty correctly handles controlling tty)
Darren Tucker314d89e2005-10-17 23:29:23 +10001779 AC_RUN_IFELSE(
1780 [AC_LANG_SOURCE([[
Darren Tucker70a3d552003-08-21 17:58:29 +10001781#include <stdio.h>
1782#include <sys/fcntl.h>
1783#include <sys/types.h>
1784#include <sys/wait.h>
1785
1786int
1787main()
1788{
1789 pid_t pid;
1790 int fd, ptyfd, ttyfd, status;
1791
1792 pid = fork();
1793 if (pid < 0) { /* failed */
1794 exit(1);
1795 } else if (pid > 0) { /* parent */
1796 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +11001797 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +10001798 exit(WEXITSTATUS(status));
1799 else
1800 exit(2);
1801 } else { /* child */
1802 close(0); close(1); close(2);
1803 setsid();
1804 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
1805 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
1806 if (fd >= 0)
1807 exit(3); /* Acquired ctty: broken */
1808 else
1809 exit(0); /* Did not acquire ctty: OK */
1810 }
1811}
Darren Tucker314d89e2005-10-17 23:29:23 +10001812 ]])],
Darren Tucker70a3d552003-08-21 17:58:29 +10001813 [
1814 AC_MSG_RESULT(yes)
1815 ],
1816 [
1817 AC_MSG_RESULT(no)
1818 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker314d89e2005-10-17 23:29:23 +10001819 ],
1820 [
1821 AC_MSG_RESULT(cross-compiling, assuming yes)
Darren Tucker70a3d552003-08-21 17:58:29 +10001822 ]
1823 )
1824fi
1825
Tim Rice8bb561b2005-03-17 16:23:19 -08001826if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1827 test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
Darren Tucker4398cf52004-04-06 21:39:02 +10001828 AC_MSG_CHECKING(if getaddrinfo seems to work)
Darren Tucker314d89e2005-10-17 23:29:23 +10001829 AC_RUN_IFELSE(
1830 [AC_LANG_SOURCE([[
Darren Tucker4398cf52004-04-06 21:39:02 +10001831#include <stdio.h>
1832#include <sys/socket.h>
1833#include <netdb.h>
1834#include <errno.h>
1835#include <netinet/in.h>
1836
1837#define TEST_PORT "2222"
1838
1839int
1840main(void)
1841{
1842 int err, sock;
1843 struct addrinfo *gai_ai, *ai, hints;
1844 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1845
1846 memset(&hints, 0, sizeof(hints));
1847 hints.ai_family = PF_UNSPEC;
1848 hints.ai_socktype = SOCK_STREAM;
1849 hints.ai_flags = AI_PASSIVE;
1850
1851 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1852 if (err != 0) {
1853 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1854 exit(1);
1855 }
1856
1857 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1858 if (ai->ai_family != AF_INET6)
1859 continue;
1860
1861 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1862 sizeof(ntop), strport, sizeof(strport),
1863 NI_NUMERICHOST|NI_NUMERICSERV);
1864
1865 if (err != 0) {
1866 if (err == EAI_SYSTEM)
1867 perror("getnameinfo EAI_SYSTEM");
1868 else
1869 fprintf(stderr, "getnameinfo failed: %s\n",
1870 gai_strerror(err));
1871 exit(2);
1872 }
1873
1874 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1875 if (sock < 0)
1876 perror("socket");
1877 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1878 if (errno == EBADF)
1879 exit(3);
1880 }
1881 }
1882 exit(0);
1883}
Darren Tucker314d89e2005-10-17 23:29:23 +10001884 ]])],
Darren Tucker4398cf52004-04-06 21:39:02 +10001885 [
1886 AC_MSG_RESULT(yes)
1887 ],
1888 [
1889 AC_MSG_RESULT(no)
1890 AC_DEFINE(BROKEN_GETADDRINFO)
Darren Tucker314d89e2005-10-17 23:29:23 +10001891 ],
1892 [
1893 AC_MSG_RESULT(cross-compiling, assuming yes)
Darren Tucker4398cf52004-04-06 21:39:02 +10001894 ]
1895 )
1896fi
1897
Tim Rice8bb561b2005-03-17 16:23:19 -08001898if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1899 test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
Darren Tucker691d5232005-02-15 21:45:57 +11001900 AC_MSG_CHECKING(if getaddrinfo seems to work)
Darren Tucker314d89e2005-10-17 23:29:23 +10001901 AC_RUN_IFELSE(
1902 [AC_LANG_SOURCE([[
Darren Tucker691d5232005-02-15 21:45:57 +11001903#include <stdio.h>
1904#include <sys/socket.h>
1905#include <netdb.h>
1906#include <errno.h>
1907#include <netinet/in.h>
1908
1909#define TEST_PORT "2222"
1910
1911int
1912main(void)
1913{
1914 int err, sock;
1915 struct addrinfo *gai_ai, *ai, hints;
1916 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1917
1918 memset(&hints, 0, sizeof(hints));
1919 hints.ai_family = PF_UNSPEC;
1920 hints.ai_socktype = SOCK_STREAM;
1921 hints.ai_flags = AI_PASSIVE;
1922
1923 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1924 if (err != 0) {
1925 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1926 exit(1);
1927 }
1928
1929 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1930 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1931 continue;
1932
1933 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1934 sizeof(ntop), strport, sizeof(strport),
1935 NI_NUMERICHOST|NI_NUMERICSERV);
1936
1937 if (ai->ai_family == AF_INET && err != 0) {
1938 perror("getnameinfo");
1939 exit(2);
1940 }
1941 }
1942 exit(0);
1943}
Darren Tucker314d89e2005-10-17 23:29:23 +10001944 ]])],
Darren Tucker691d5232005-02-15 21:45:57 +11001945 [
1946 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001947 AC_DEFINE(AIX_GETNAMEINFO_HACK, 1,
1948 [Define if you have a getaddrinfo that fails
1949 for the all-zeros IPv6 address])
Darren Tucker691d5232005-02-15 21:45:57 +11001950 ],
1951 [
1952 AC_MSG_RESULT(no)
1953 AC_DEFINE(BROKEN_GETADDRINFO)
Darren Tucker314d89e2005-10-17 23:29:23 +10001954 ],
Darren Tucker8b272ab2006-06-27 11:20:28 +10001955 [
Darren Tucker314d89e2005-10-17 23:29:23 +10001956 AC_MSG_RESULT(cross-compiling, assuming no)
Darren Tucker691d5232005-02-15 21:45:57 +11001957 ]
1958 )
1959fi
1960
Darren Tuckera56f1912004-11-02 20:30:54 +11001961if test "x$check_for_conflicting_getspnam" = "x1"; then
1962 AC_MSG_CHECKING(for conflicting getspnam in shadow.h)
1963 AC_COMPILE_IFELSE(
1964 [
1965#include <shadow.h>
1966int main(void) {exit(0);}
1967 ],
1968 [
1969 AC_MSG_RESULT(no)
1970 ],
1971 [
1972 AC_MSG_RESULT(yes)
1973 AC_DEFINE(GETSPNAM_CONFLICTING_DEFS, 1,
1974 [Conflicting defs for getspnam])
1975 ]
1976 )
1977fi
1978
Damien Miller606f8802000-09-16 15:39:56 +11001979AC_FUNC_GETPGRP
1980
Tim Riceaef73712002-05-11 13:17:42 -07001981# Search for OpenSSL
1982saved_CPPFLAGS="$CPPFLAGS"
1983saved_LDFLAGS="$LDFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +11001984AC_ARG_WITH(ssl-dir,
1985 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
1986 [
Ben Lindstrom23e13712000-10-29 22:49:19 +00001987 if test "x$withval" != "xno" ; then
Darren Tuckerc7e38d52005-02-09 22:12:30 +11001988 case "$withval" in
1989 # Relative paths
1990 ./*|../*) withval="`pwd`/$withval"
1991 esac
Tim Riceaef73712002-05-11 13:17:42 -07001992 if test -d "$withval/lib"; then
1993 if test -n "${need_dash_r}"; then
1994 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1995 else
1996 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1997 fi
Darren Tucker9f8703b2010-04-23 11:12:06 +10001998 elif test -d "$withval/lib64"; then
1999 if test -n "${need_dash_r}"; then
2000 LDFLAGS="-L${withval}/lib64 -R${withval}/lib64 ${LDFLAGS}"
2001 else
2002 LDFLAGS="-L${withval}/lib64 ${LDFLAGS}"
2003 fi
Tim Riceaef73712002-05-11 13:17:42 -07002004 else
2005 if test -n "${need_dash_r}"; then
2006 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
2007 else
2008 LDFLAGS="-L${withval} ${LDFLAGS}"
2009 fi
2010 fi
2011 if test -d "$withval/include"; then
2012 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
2013 else
2014 CPPFLAGS="-I${withval} ${CPPFLAGS}"
2015 fi
Damien Millera22ba012000-03-02 23:09:20 +11002016 fi
2017 ]
2018)
Tim Rice3d5352e2004-02-12 09:27:21 -08002019LIBS="-lcrypto $LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07002020AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL, 1,
2021 [Define if your ssl headers are included
2022 with #include <openssl/header.h>]),
Damien Miller3b512e12000-05-17 23:29:18 +10002023 [
Tim Riceaef73712002-05-11 13:17:42 -07002024 dnl Check default openssl install dir
2025 if test -n "${need_dash_r}"; then
2026 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10002027 else
Tim Riceaef73712002-05-11 13:17:42 -07002028 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10002029 fi
Tim Riceaef73712002-05-11 13:17:42 -07002030 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
Darren Tucker83d8f282009-08-17 09:35:22 +10002031 AC_CHECK_HEADER([openssl/opensslv.h], ,
2032 AC_MSG_ERROR([*** OpenSSL headers missing - please install first or check config.log ***]))
Tim Riceaef73712002-05-11 13:17:42 -07002033 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
2034 [
2035 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
2036 ]
2037 )
2038 ]
2039)
2040
Tim Riced730b782002-08-13 18:52:10 -07002041# Determine OpenSSL header version
2042AC_MSG_CHECKING([OpenSSL header version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002043AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002044 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07002045#include <stdio.h>
2046#include <string.h>
2047#include <openssl/opensslv.h>
2048#define DATA "conftest.sslincver"
2049int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11002050 FILE *fd;
2051 int rc;
Tim Riced730b782002-08-13 18:52:10 -07002052
Damien Millera8e06ce2003-11-21 23:48:55 +11002053 fd = fopen(DATA,"w");
2054 if(fd == NULL)
2055 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07002056
2057 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
2058 exit(1);
2059
2060 exit(0);
2061}
Darren Tucker623d92f2004-09-12 22:36:15 +10002062 ]])],
Tim Riced730b782002-08-13 18:52:10 -07002063 [
2064 ssl_header_ver=`cat conftest.sslincver`
2065 AC_MSG_RESULT($ssl_header_ver)
2066 ],
2067 [
2068 AC_MSG_RESULT(not found)
2069 AC_MSG_ERROR(OpenSSL version header not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10002070 ],
2071 [
2072 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07002073 ]
2074)
2075
2076# Determine OpenSSL library version
2077AC_MSG_CHECKING([OpenSSL library version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002078AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002079 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07002080#include <stdio.h>
2081#include <string.h>
2082#include <openssl/opensslv.h>
2083#include <openssl/crypto.h>
2084#define DATA "conftest.ssllibver"
2085int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11002086 FILE *fd;
2087 int rc;
Tim Riced730b782002-08-13 18:52:10 -07002088
Damien Millera8e06ce2003-11-21 23:48:55 +11002089 fd = fopen(DATA,"w");
2090 if(fd == NULL)
2091 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07002092
2093 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
2094 exit(1);
2095
2096 exit(0);
2097}
Darren Tucker623d92f2004-09-12 22:36:15 +10002098 ]])],
Tim Riced730b782002-08-13 18:52:10 -07002099 [
2100 ssl_library_ver=`cat conftest.ssllibver`
2101 AC_MSG_RESULT($ssl_library_ver)
2102 ],
2103 [
2104 AC_MSG_RESULT(not found)
2105 AC_MSG_ERROR(OpenSSL library not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10002106 ],
2107 [
2108 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07002109 ]
2110)
Damien Millera22ba012000-03-02 23:09:20 +11002111
Damien Miller9975e482007-03-05 11:51:27 +11002112AC_ARG_WITH(openssl-header-check,
2113 [ --without-openssl-header-check Disable OpenSSL version consistency check],
2114 [ if test "x$withval" = "xno" ; then
2115 openssl_check_nonfatal=1
2116 fi
2117 ]
2118)
2119
Damien Millerec932372002-01-22 22:16:03 +11002120# Sanity check OpenSSL headers
2121AC_MSG_CHECKING([whether OpenSSL's headers match the library])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002122AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002123 [AC_LANG_SOURCE([[
Damien Millerec932372002-01-22 22:16:03 +11002124#include <string.h>
2125#include <openssl/opensslv.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07002126int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10002127 ]])],
Damien Millerec932372002-01-22 22:16:03 +11002128 [
2129 AC_MSG_RESULT(yes)
2130 ],
2131 [
2132 AC_MSG_RESULT(no)
Damien Miller9975e482007-03-05 11:51:27 +11002133 if test "x$openssl_check_nonfatal" = "x"; then
2134 AC_MSG_ERROR([Your OpenSSL headers do not match your
2135library. Check config.log for details.
2136If you are sure your installation is consistent, you can disable the check
2137by running "./configure --without-openssl-header-check".
2138Also see contrib/findssl.sh for help identifying header/library mismatches.
2139])
2140 else
2141 AC_MSG_WARN([Your OpenSSL headers do not match your
2142library. Check config.log for details.
Darren Tuckera0472e02003-06-24 20:22:09 +10002143Also see contrib/findssl.sh for help identifying header/library mismatches.])
Damien Miller9975e482007-03-05 11:51:27 +11002144 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10002145 ],
2146 [
2147 AC_MSG_WARN([cross compiling: not checking])
Damien Millerec932372002-01-22 22:16:03 +11002148 ]
2149)
2150
Darren Tucker639bbe82006-08-20 20:17:53 +10002151AC_MSG_CHECKING([if programs using OpenSSL functions will link])
2152AC_LINK_IFELSE(
2153 [AC_LANG_SOURCE([[
2154#include <openssl/evp.h>
2155int main(void) { SSLeay_add_all_algorithms(); }
2156 ]])],
2157 [
2158 AC_MSG_RESULT(yes)
2159 ],
2160 [
2161 AC_MSG_RESULT(no)
2162 saved_LIBS="$LIBS"
2163 LIBS="$LIBS -ldl"
2164 AC_MSG_CHECKING([if programs using OpenSSL need -ldl])
2165 AC_LINK_IFELSE(
2166 [AC_LANG_SOURCE([[
2167#include <openssl/evp.h>
2168int main(void) { SSLeay_add_all_algorithms(); }
2169 ]])],
2170 [
2171 AC_MSG_RESULT(yes)
2172 ],
2173 [
2174 AC_MSG_RESULT(no)
2175 LIBS="$saved_LIBS"
2176 ]
2177 )
2178 ]
2179)
2180
Darren Tucker79241372011-01-22 09:37:01 +11002181AC_CHECK_FUNCS(RSA_generate_key_ex DSA_generate_parameters_ex BN_is_prime_ex RSA_get_default_method)
Darren Tuckerebdef762010-12-04 23:20:50 +11002182
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002183AC_ARG_WITH(ssl-engine,
2184 [ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
2185 [ if test "x$withval" != "xno" ; then
2186 AC_MSG_CHECKING(for OpenSSL ENGINE support)
2187 AC_TRY_COMPILE(
2188 [ #include <openssl/engine.h>],
2189 [
Darren Tucker5e8381e2006-09-29 20:16:51 +10002190ENGINE_load_builtin_engines();ENGINE_register_all_complete();
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002191 ],
2192 [ AC_MSG_RESULT(yes)
2193 AC_DEFINE(USE_OPENSSL_ENGINE, 1,
2194 [Enable OpenSSL engine support])
2195 ],
2196 [ AC_MSG_ERROR(OpenSSL ENGINE support not found)]
2197 )
2198 fi ]
2199)
2200
Darren Tucker129d0bb2005-12-19 17:40:40 +11002201# Check for OpenSSL without EVP_aes_{192,256}_cbc
2202AC_MSG_CHECKING([whether OpenSSL has crippled AES support])
Darren Tuckerf1f4bdd2006-08-04 19:44:23 +10002203AC_LINK_IFELSE(
Darren Tucker129d0bb2005-12-19 17:40:40 +11002204 [AC_LANG_SOURCE([[
2205#include <string.h>
2206#include <openssl/evp.h>
Darren Tuckercc7c2122006-02-02 18:44:19 +11002207int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);}
Darren Tucker129d0bb2005-12-19 17:40:40 +11002208 ]])],
2209 [
2210 AC_MSG_RESULT(no)
2211 ],
2212 [
2213 AC_MSG_RESULT(yes)
2214 AC_DEFINE(OPENSSL_LOBOTOMISED_AES, 1,
2215 [libcrypto is missing AES 192 and 256 bit functions])
2216 ]
2217)
2218
Darren Tucker3e7e15f2009-03-07 22:22:35 +11002219AC_MSG_CHECKING([if EVP_DigestUpdate returns an int])
2220AC_LINK_IFELSE(
2221 [AC_LANG_SOURCE([[
2222#include <string.h>
2223#include <openssl/evp.h>
2224int main(void) { if(EVP_DigestUpdate(NULL, NULL,0)) exit(0); }
2225 ]])],
2226 [
2227 AC_MSG_RESULT(yes)
2228 ],
2229 [
2230 AC_MSG_RESULT(no)
2231 AC_DEFINE(OPENSSL_EVP_DIGESTUPDATE_VOID, 1,
2232 [Define if EVP_DigestUpdate returns void])
2233 ]
2234)
2235
Tim Rice3d5352e2004-02-12 09:27:21 -08002236# Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
2237# because the system crypt() is more featureful.
2238if test "x$check_for_libcrypt_before" = "x1"; then
2239 AC_CHECK_LIB(crypt, crypt)
2240fi
2241
Damien Millera8e06ce2003-11-21 23:48:55 +11002242# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
Tim Rice43fa5572004-02-11 14:46:40 -08002243# version in OpenSSL.
Damien Miller4f9f42a2003-05-10 19:28:02 +10002244if test "x$check_for_libcrypt_later" = "x1"; then
Damien Miller95aa2d62001-03-01 09:16:11 +11002245 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
Damien Millera64b57a2001-01-17 10:44:13 +11002246fi
2247
Damien Milleraf87af12006-03-15 13:02:28 +11002248# Search for SHA256 support in libc and/or OpenSSL
Darren Tucker50c61f82011-01-16 18:28:09 +11002249AC_CHECK_FUNCS(SHA256_Update EVP_sha256, [TEST_SSH_SHA256=yes],
2250 [TEST_SSH_SHA256=no])
2251AC_SUBST(TEST_SSH_SHA256)
Damien Milleraf87af12006-03-15 13:02:28 +11002252
Damien Miller6af914a2010-09-10 11:39:26 +10002253# Check complete ECC support in OpenSSL
2254AC_MSG_CHECKING([whether OpenSSL has complete ECC support])
2255AC_LINK_IFELSE(
2256 [AC_LANG_SOURCE([[
2257#include <openssl/ec.h>
Damien Millere323ebc2011-01-19 23:12:27 +11002258#include <openssl/ecdh.h>
2259#include <openssl/ecdsa.h>
Damien Miller6af914a2010-09-10 11:39:26 +10002260#include <openssl/evp.h>
2261#include <openssl/objects.h>
Damien Millere323ebc2011-01-19 23:12:27 +11002262#include <openssl/opensslv.h>
2263#if OPENSSL_VERSION_NUMBER < 0x0090807f /* 0.9.8g */
2264# error "OpenSSL < 0.9.8g has unreliable ECC code"
2265#endif
Damien Miller6af914a2010-09-10 11:39:26 +10002266int main(void) {
2267 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1);
2268 const EVP_MD *m = EVP_sha512(); /* We need this too */
2269}
2270 ]])],
2271 [
2272 AC_MSG_RESULT(yes)
2273 AC_DEFINE(OPENSSL_HAS_ECC, 1,
2274 [libcrypto includes complete ECC support])
Darren Tuckereab5f0d2010-11-05 18:23:38 +11002275 TEST_SSH_ECC=yes
Tim Rice9b87a5c2011-01-12 22:35:43 -08002276 COMMENT_OUT_ECC=""
Damien Miller6af914a2010-09-10 11:39:26 +10002277 ],
2278 [
2279 AC_MSG_RESULT(no)
Darren Tuckereab5f0d2010-11-05 18:23:38 +11002280 TEST_SSH_ECC=no
Tim Rice9b87a5c2011-01-12 22:35:43 -08002281 COMMENT_OUT_ECC="#no ecc#"
Damien Miller6af914a2010-09-10 11:39:26 +10002282 ]
2283)
Darren Tuckereab5f0d2010-11-05 18:23:38 +11002284AC_SUBST(TEST_SSH_ECC)
Tim Rice9b87a5c2011-01-12 22:35:43 -08002285AC_SUBST(COMMENT_OUT_ECC)
Damien Miller6af914a2010-09-10 11:39:26 +10002286
Tim Rice99203ec2007-03-26 09:35:28 -07002287saved_LIBS="$LIBS"
2288AC_CHECK_LIB(iaf, ia_openinfo, [
2289 LIBS="$LIBS -liaf"
Tim Rice0eeaf122007-09-10 16:24:17 -07002290 AC_CHECK_FUNCS(set_id, [SSHDLIBS="$SSHDLIBS -liaf"
2291 AC_DEFINE(HAVE_LIBIAF, 1,
2292 [Define if system has libiaf that supports set_id])
2293 ])
Tim Rice99203ec2007-03-26 09:35:28 -07002294])
2295LIBS="$saved_LIBS"
Damien Miller6c21c512002-01-22 21:57:53 +11002296
2297### Configure cryptographic random number support
2298
2299# Check wheter OpenSSL seeds itself
2300AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002301AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002302 [AC_LANG_SOURCE([[
Damien Miller6c21c512002-01-22 21:57:53 +11002303#include <string.h>
2304#include <openssl/rand.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07002305int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10002306 ]])],
Damien Miller6c21c512002-01-22 21:57:53 +11002307 [
2308 OPENSSL_SEEDS_ITSELF=yes
2309 AC_MSG_RESULT(yes)
2310 ],
2311 [
2312 AC_MSG_RESULT(no)
2313 # Default to use of the rand helper if OpenSSL doesn't
2314 # seed itself
2315 USE_RAND_HELPER=yes
Darren Tuckera0c2b392004-09-11 23:26:37 +10002316 ],
2317 [
2318 AC_MSG_WARN([cross compiling: assuming yes])
2319 # This is safe, since all recent OpenSSL versions will
Tim Riceeae17cc2005-03-17 16:52:20 -08002320 # complain at runtime if not seeded correctly.
Darren Tuckera0c2b392004-09-11 23:26:37 +10002321 OPENSSL_SEEDS_ITSELF=yes
Damien Miller6c21c512002-01-22 21:57:53 +11002322 ]
2323)
2324
Darren Tucker3e6bde42006-08-20 20:03:50 +10002325# Check for PAM libs
2326PAM_MSG="no"
2327AC_ARG_WITH(pam,
2328 [ --with-pam Enable PAM support ],
2329 [
2330 if test "x$withval" != "xno" ; then
2331 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
2332 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
2333 AC_MSG_ERROR([PAM headers not found])
2334 fi
2335
2336 saved_LIBS="$LIBS"
2337 AC_CHECK_LIB(dl, dlopen, , )
2338 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
2339 AC_CHECK_FUNCS(pam_getenvlist)
2340 AC_CHECK_FUNCS(pam_putenv)
2341 LIBS="$saved_LIBS"
2342
2343 PAM_MSG="yes"
2344
Darren Tucker20e9f972007-03-25 18:26:01 +10002345 SSHDLIBS="$SSHDLIBS -lpam"
Darren Tucker3e6bde42006-08-20 20:03:50 +10002346 AC_DEFINE(USE_PAM, 1,
2347 [Define if you want to enable PAM support])
Darren Tucker639bbe82006-08-20 20:17:53 +10002348
Darren Tucker3e6bde42006-08-20 20:03:50 +10002349 if test $ac_cv_lib_dl_dlopen = yes; then
Darren Tucker639bbe82006-08-20 20:17:53 +10002350 case "$LIBS" in
2351 *-ldl*)
2352 # libdl already in LIBS
2353 ;;
2354 *)
Darren Tucker20e9f972007-03-25 18:26:01 +10002355 SSHDLIBS="$SSHDLIBS -ldl"
Darren Tucker639bbe82006-08-20 20:17:53 +10002356 ;;
2357 esac
Darren Tucker3e6bde42006-08-20 20:03:50 +10002358 fi
Darren Tucker3e6bde42006-08-20 20:03:50 +10002359 fi
2360 ]
2361)
2362
2363# Check for older PAM
2364if test "x$PAM_MSG" = "xyes" ; then
2365 # Check PAM strerror arguments (old PAM)
2366 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
2367 AC_TRY_COMPILE(
2368 [
2369#include <stdlib.h>
2370#if defined(HAVE_SECURITY_PAM_APPL_H)
2371#include <security/pam_appl.h>
2372#elif defined (HAVE_PAM_PAM_APPL_H)
2373#include <pam/pam_appl.h>
2374#endif
2375 ],
2376 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
2377 [AC_MSG_RESULT(no)],
2378 [
2379 AC_DEFINE(HAVE_OLD_PAM, 1,
2380 [Define if you have an old version of PAM
2381 which takes only one argument to pam_strerror])
2382 AC_MSG_RESULT(yes)
2383 PAM_MSG="yes (old library)"
2384 ]
2385 )
2386fi
Damien Miller6c21c512002-01-22 21:57:53 +11002387
2388# Do we want to force the use of the rand helper?
2389AC_ARG_WITH(rand-helper,
2390 [ --with-rand-helper Use subprocess to gather strong randomness ],
2391 [
2392 if test "x$withval" = "xno" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11002393 # Force use of OpenSSL's internal RNG, even if
Damien Miller6c21c512002-01-22 21:57:53 +11002394 # the previous test showed it to be unseeded.
2395 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
2396 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
2397 OPENSSL_SEEDS_ITSELF=yes
2398 USE_RAND_HELPER=""
2399 fi
2400 else
2401 USE_RAND_HELPER=yes
2402 fi
2403 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08002404)
Damien Miller6c21c512002-01-22 21:57:53 +11002405
2406# Which randomness source do we use?
Tim Rice8bb561b2005-03-17 16:23:19 -08002407if test ! -z "$OPENSSL_SEEDS_ITSELF" && test -z "$USE_RAND_HELPER" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002408 # OpenSSL only
Tim Rice7df8d392005-09-19 09:33:39 -07002409 AC_DEFINE(OPENSSL_PRNG_ONLY, 1,
2410 [Define if you want OpenSSL's internally seeded PRNG only])
Damien Miller6c21c512002-01-22 21:57:53 +11002411 RAND_MSG="OpenSSL internal ONLY"
2412 INSTALL_SSH_RAND_HELPER=""
Tim Rice1e2c6002002-01-30 22:14:03 -08002413elif test ! -z "$USE_RAND_HELPER" ; then
2414 # install rand helper
Damien Miller6c21c512002-01-22 21:57:53 +11002415 RAND_MSG="ssh-rand-helper"
2416 INSTALL_SSH_RAND_HELPER="yes"
2417fi
2418AC_SUBST(INSTALL_SSH_RAND_HELPER)
2419
2420### Configuration of ssh-rand-helper
2421
2422# PRNGD TCP socket
2423AC_ARG_WITH(prngd-port,
2424 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
2425 [
Damien Millere996d722002-01-23 11:20:59 +11002426 case "$withval" in
2427 no)
2428 withval=""
2429 ;;
2430 [[0-9]]*)
2431 ;;
2432 *)
2433 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
2434 ;;
2435 esac
2436 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002437 PRNGD_PORT="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07002438 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT,
2439 [Port number of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11002440 fi
2441 ]
2442)
2443
2444# PRNGD Unix domain socket
2445AC_ARG_WITH(prngd-socket,
2446 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
2447 [
Damien Millere996d722002-01-23 11:20:59 +11002448 case "$withval" in
2449 yes)
Damien Miller6c21c512002-01-22 21:57:53 +11002450 withval="/var/run/egd-pool"
Damien Millere996d722002-01-23 11:20:59 +11002451 ;;
2452 no)
2453 withval=""
2454 ;;
2455 /*)
2456 ;;
2457 *)
2458 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
2459 ;;
2460 esac
2461
2462 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002463 if test ! -z "$PRNGD_PORT" ; then
2464 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
2465 fi
Damien Miller6385ba02002-01-23 08:12:36 +11002466 if test ! -r "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002467 AC_MSG_WARN(Entropy socket is not readable)
2468 fi
2469 PRNGD_SOCKET="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07002470 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET",
2471 [Location of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11002472 fi
Tim Rice4cec93f2002-02-26 08:40:48 -08002473 ],
2474 [
2475 # Check for existing socket only if we don't have a random device already
2476 if test "$USE_RAND_HELPER" = yes ; then
2477 AC_MSG_CHECKING(for PRNGD/EGD socket)
2478 # Insert other locations here
2479 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
2480 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
2481 PRNGD_SOCKET="$sock"
2482 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
2483 break;
2484 fi
2485 done
2486 if test ! -z "$PRNGD_SOCKET" ; then
2487 AC_MSG_RESULT($PRNGD_SOCKET)
2488 else
2489 AC_MSG_RESULT(not found)
2490 fi
2491 fi
Damien Miller6c21c512002-01-22 21:57:53 +11002492 ]
2493)
2494
2495# Change default command timeout for hashing entropy source
2496entropy_timeout=200
2497AC_ARG_WITH(entropy-timeout,
2498 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
2499 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002500 if test -n "$withval" && test "x$withval" != "xno" && \
2501 test "x${withval}" != "xyes"; then
Damien Miller6c21c512002-01-22 21:57:53 +11002502 entropy_timeout=$withval
2503 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08002504 ]
Damien Miller6c21c512002-01-22 21:57:53 +11002505)
Tim Rice7df8d392005-09-19 09:33:39 -07002506AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout,
2507 [Builtin PRNG command timeout])
Damien Miller6c21c512002-01-22 21:57:53 +11002508
Damien Millerd3f6ad22002-06-25 10:24:47 +10002509SSH_PRIVSEP_USER=sshd
Kevin Steves7ff91122002-04-07 19:22:54 +00002510AC_ARG_WITH(privsep-user,
Kevin Stevesc81e1292002-05-13 03:51:40 +00002511 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00002512 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002513 if test -n "$withval" && test "x$withval" != "xno" && \
2514 test "x${withval}" != "xyes"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10002515 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00002516 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08002517 ]
Kevin Steves7ff91122002-04-07 19:22:54 +00002518)
Tim Rice7df8d392005-09-19 09:33:39 -07002519AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER",
2520 [non-privileged user for privilege separation])
Damien Millerd3f6ad22002-06-25 10:24:47 +10002521AC_SUBST(SSH_PRIVSEP_USER)
Kevin Steves7ff91122002-04-07 19:22:54 +00002522
Tim Rice88f2ab52002-03-17 12:17:34 -08002523# We do this little dance with the search path to insure
2524# that programs that we select for use by installed programs
2525# (which may be run by the super-user) come from trusted
2526# locations before they come from the user's private area.
2527# This should help avoid accidentally configuring some
2528# random version of a program in someone's personal bin.
2529
2530OPATH=$PATH
2531PATH=/bin:/usr/bin
Tim Riceae49fe62002-04-12 10:26:21 -07002532test -h /bin 2> /dev/null && PATH=/usr/bin
Tim Rice88f2ab52002-03-17 12:17:34 -08002533test -d /sbin && PATH=$PATH:/sbin
2534test -d /usr/sbin && PATH=$PATH:/usr/sbin
2535PATH=$PATH:/etc:$OPATH
2536
Damien Millera8e06ce2003-11-21 23:48:55 +11002537# These programs are used by the command hashing source to gather entropy
Damien Miller6c21c512002-01-22 21:57:53 +11002538OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
2539OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
2540OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
2541OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
2542OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
2543OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
2544OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
2545OSSH_PATH_ENTROPY_PROG(PROG_W, w)
2546OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
2547OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
2548OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
2549OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
2550OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
2551OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
2552OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
2553OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
Tim Rice88f2ab52002-03-17 12:17:34 -08002554# restore PATH
2555PATH=$OPATH
Damien Miller6c21c512002-01-22 21:57:53 +11002556
2557# Where does ssh-rand-helper get its randomness from?
2558INSTALL_SSH_PRNG_CMDS=""
2559if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
2560 if test ! -z "$PRNGD_PORT" ; then
2561 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
2562 elif test ! -z "$PRNGD_SOCKET" ; then
2563 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
2564 else
2565 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
2566 RAND_HELPER_CMDHASH=yes
2567 INSTALL_SSH_PRNG_CMDS="yes"
2568 fi
2569fi
2570AC_SUBST(INSTALL_SSH_PRNG_CMDS)
2571
2572
Ben Lindstromb5628642000-10-18 00:02:25 +00002573# Cheap hack to ensure NEWS-OS libraries are arranged right.
2574if test ! -z "$SONY" ; then
2575 LIBS="$LIBS -liberty";
2576fi
2577
Damien Miller57f39152005-11-24 19:58:19 +11002578# Check for long long datatypes
2579AC_CHECK_TYPES([long long, unsigned long long, long double])
2580
2581# Check datatype sizes
Damien Millere0f45742000-01-18 09:12:06 +11002582AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +11002583AC_CHECK_SIZEOF(short int, 2)
2584AC_CHECK_SIZEOF(int, 4)
2585AC_CHECK_SIZEOF(long int, 4)
2586AC_CHECK_SIZEOF(long long int, 8)
2587
Damien Millerfa2bb692002-04-23 23:22:25 +10002588# Sanity check long long for some platforms (AIX)
2589if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
2590 ac_cv_sizeof_long_long_int=0
2591fi
2592
Darren Tucker537f1ed2005-10-25 18:38:33 +10002593# compute LLONG_MIN and LLONG_MAX if we don't know them.
2594if test -z "$have_llong_max"; then
2595 AC_MSG_CHECKING([for max value of long long])
2596 AC_RUN_IFELSE(
2597 [AC_LANG_SOURCE([[
2598#include <stdio.h>
2599/* Why is this so damn hard? */
2600#ifdef __GNUC__
2601# undef __GNUC__
2602#endif
2603#define __USE_ISOC99
2604#include <limits.h>
2605#define DATA "conftest.llminmax"
Darren Tuckerd1450db2006-03-13 19:06:51 +11002606#define my_abs(a) ((a) < 0 ? ((a) * -1) : (a))
2607
2608/*
2609 * printf in libc on some platforms (eg old Tru64) does not understand %lld so
2610 * we do this the hard way.
2611 */
2612static int
2613fprint_ll(FILE *f, long long n)
2614{
2615 unsigned int i;
2616 int l[sizeof(long long) * 8];
2617
2618 if (n < 0)
2619 if (fprintf(f, "-") < 0)
2620 return -1;
2621 for (i = 0; n != 0; i++) {
2622 l[i] = my_abs(n % 10);
2623 n /= 10;
2624 }
2625 do {
2626 if (fprintf(f, "%d", l[--i]) < 0)
2627 return -1;
2628 } while (i != 0);
2629 if (fprintf(f, " ") < 0)
2630 return -1;
2631 return 0;
2632}
2633
Darren Tucker537f1ed2005-10-25 18:38:33 +10002634int main(void) {
2635 FILE *f;
2636 long long i, llmin, llmax = 0;
2637
2638 if((f = fopen(DATA,"w")) == NULL)
2639 exit(1);
2640
2641#if defined(LLONG_MIN) && defined(LLONG_MAX)
2642 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
2643 llmin = LLONG_MIN;
2644 llmax = LLONG_MAX;
2645#else
2646 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n");
2647 /* This will work on one's complement and two's complement */
2648 for (i = 1; i > llmax; i <<= 1, i++)
2649 llmax = i;
2650 llmin = llmax + 1LL; /* wrap */
2651#endif
2652
2653 /* Sanity check */
2654 if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
Darren Tuckerd1450db2006-03-13 19:06:51 +11002655 || llmax - 1 > llmax || llmin == llmax || llmin == 0
2656 || llmax == 0 || llmax < LONG_MAX || llmin > LONG_MIN) {
Darren Tucker537f1ed2005-10-25 18:38:33 +10002657 fprintf(f, "unknown unknown\n");
2658 exit(2);
2659 }
2660
Darren Tuckerd1450db2006-03-13 19:06:51 +11002661 if (fprint_ll(f, llmin) < 0)
Darren Tucker537f1ed2005-10-25 18:38:33 +10002662 exit(3);
Darren Tuckerd1450db2006-03-13 19:06:51 +11002663 if (fprint_ll(f, llmax) < 0)
2664 exit(4);
2665 if (fclose(f) < 0)
2666 exit(5);
Darren Tucker537f1ed2005-10-25 18:38:33 +10002667 exit(0);
2668}
2669 ]])],
2670 [
2671 llong_min=`$AWK '{print $1}' conftest.llminmax`
2672 llong_max=`$AWK '{print $2}' conftest.llminmax`
2673
Darren Tucker537f1ed2005-10-25 18:38:33 +10002674 AC_MSG_RESULT($llong_max)
2675 AC_DEFINE_UNQUOTED(LLONG_MAX, [${llong_max}LL],
2676 [max value of long long calculated by configure])
2677 AC_MSG_CHECKING([for min value of long long])
2678 AC_MSG_RESULT($llong_min)
2679 AC_DEFINE_UNQUOTED(LLONG_MIN, [${llong_min}LL],
2680 [min value of long long calculated by configure])
2681 ],
2682 [
2683 AC_MSG_RESULT(not found)
2684 ],
2685 [
2686 AC_MSG_WARN([cross compiling: not checking])
2687 ]
2688 )
2689fi
2690
2691
Damien Millera22ba012000-03-02 23:09:20 +11002692# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11002693AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
2694 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002695 [ #include <sys/types.h> ],
2696 [ u_int a; a = 1;],
Damien Millercaf6dd62000-08-29 11:33:50 +11002697 [ ac_cv_have_u_int="yes" ],
2698 [ ac_cv_have_u_int="no" ]
2699 )
2700])
2701if test "x$ac_cv_have_u_int" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002702 AC_DEFINE(HAVE_U_INT, 1, [define if you have u_int data type])
Damien Millercaf6dd62000-08-29 11:33:50 +11002703 have_u_int=1
2704fi
2705
Damien Miller61e50f12000-05-08 20:49:37 +10002706AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
2707 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002708 [ #include <sys/types.h> ],
2709 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002710 [ ac_cv_have_intxx_t="yes" ],
2711 [ ac_cv_have_intxx_t="no" ]
2712 )
2713])
2714if test "x$ac_cv_have_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002715 AC_DEFINE(HAVE_INTXX_T, 1, [define if you have intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002716 have_intxx_t=1
2717fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002718
2719if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002720 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002721then
2722 AC_MSG_CHECKING([for intXX_t types in stdint.h])
2723 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002724 [ #include <stdint.h> ],
2725 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002726 [
2727 AC_DEFINE(HAVE_INTXX_T)
2728 AC_MSG_RESULT(yes)
2729 ],
2730 [ AC_MSG_RESULT(no) ]
2731 )
2732fi
2733
Damien Miller578783e2000-09-23 14:12:24 +11002734AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
2735 AC_TRY_COMPILE(
Tim Rice907881e2002-07-18 11:44:50 -07002736 [
2737#include <sys/types.h>
2738#ifdef HAVE_STDINT_H
2739# include <stdint.h>
2740#endif
2741#include <sys/socket.h>
2742#ifdef HAVE_SYS_BITYPES_H
2743# include <sys/bitypes.h>
2744#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11002745 ],
2746 [ int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002747 [ ac_cv_have_int64_t="yes" ],
2748 [ ac_cv_have_int64_t="no" ]
2749 )
2750])
2751if test "x$ac_cv_have_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002752 AC_DEFINE(HAVE_INT64_T, 1, [define if you have int64_t data type])
Tim Rice4cec93f2002-02-26 08:40:48 -08002753fi
2754
Damien Miller61e50f12000-05-08 20:49:37 +10002755AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
2756 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002757 [ #include <sys/types.h> ],
2758 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002759 [ ac_cv_have_u_intxx_t="yes" ],
2760 [ ac_cv_have_u_intxx_t="no" ]
2761 )
2762])
2763if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002764 AC_DEFINE(HAVE_U_INTXX_T, 1, [define if you have u_intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002765 have_u_intxx_t=1
2766fi
Damien Millerc6398ef1999-11-20 12:18:40 +11002767
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002768if test -z "$have_u_intxx_t" ; then
2769 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
2770 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002771 [ #include <sys/socket.h> ],
2772 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002773 [
2774 AC_DEFINE(HAVE_U_INTXX_T)
2775 AC_MSG_RESULT(yes)
2776 ],
2777 [ AC_MSG_RESULT(no) ]
2778 )
2779fi
2780
Damien Miller578783e2000-09-23 14:12:24 +11002781AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
2782 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002783 [ #include <sys/types.h> ],
2784 [ u_int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002785 [ ac_cv_have_u_int64_t="yes" ],
2786 [ ac_cv_have_u_int64_t="no" ]
2787 )
2788])
2789if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002790 AC_DEFINE(HAVE_U_INT64_T, 1, [define if you have u_int64_t data type])
Damien Miller578783e2000-09-23 14:12:24 +11002791 have_u_int64_t=1
2792fi
2793
Tim Rice4cec93f2002-02-26 08:40:48 -08002794if test -z "$have_u_int64_t" ; then
2795 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
2796 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002797 [ #include <sys/bitypes.h> ],
Tim Rice4cec93f2002-02-26 08:40:48 -08002798 [ u_int64_t a; a = 1],
2799 [
2800 AC_DEFINE(HAVE_U_INT64_T)
2801 AC_MSG_RESULT(yes)
2802 ],
2803 [ AC_MSG_RESULT(no) ]
2804 )
2805fi
2806
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002807if test -z "$have_u_intxx_t" ; then
2808 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
2809 AC_TRY_COMPILE(
2810 [
2811#include <sys/types.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002812 ],
2813 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002814 [ ac_cv_have_uintxx_t="yes" ],
2815 [ ac_cv_have_uintxx_t="no" ]
2816 )
2817 ])
2818 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002819 AC_DEFINE(HAVE_UINTXX_T, 1,
2820 [define if you have uintxx_t data type])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002821 fi
2822fi
2823
2824if test -z "$have_uintxx_t" ; then
2825 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
2826 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002827 [ #include <stdint.h> ],
2828 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002829 [
2830 AC_DEFINE(HAVE_UINTXX_T)
2831 AC_MSG_RESULT(yes)
2832 ],
2833 [ AC_MSG_RESULT(no) ]
2834 )
2835fi
2836
Damien Milleredb82922000-06-20 13:25:52 +10002837if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002838 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11002839then
2840 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
2841 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +10002842 [
2843#include <sys/bitypes.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002844 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002845 [
Damien Miller70494d12000-04-03 15:57:06 +10002846 int8_t a; int16_t b; int32_t c;
2847 u_int8_t e; u_int16_t f; u_int32_t g;
2848 a = b = c = e = f = g = 1;
Damien Millera8e06ce2003-11-21 23:48:55 +11002849 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002850 [
2851 AC_DEFINE(HAVE_U_INTXX_T)
2852 AC_DEFINE(HAVE_INTXX_T)
2853 AC_MSG_RESULT(yes)
2854 ],
2855 [AC_MSG_RESULT(no)]
Damien Millera8e06ce2003-11-21 23:48:55 +11002856 )
Damien Millerb29ea912000-01-15 14:12:03 +11002857fi
2858
Damien Miller58be7382001-09-15 21:31:54 +10002859
2860AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
2861 AC_TRY_COMPILE(
2862 [
2863#include <sys/types.h>
2864 ],
2865 [ u_char foo; foo = 125; ],
2866 [ ac_cv_have_u_char="yes" ],
2867 [ ac_cv_have_u_char="no" ]
2868 )
2869])
2870if test "x$ac_cv_have_u_char" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002871 AC_DEFINE(HAVE_U_CHAR, 1, [define if you have u_char data type])
Damien Miller58be7382001-09-15 21:31:54 +10002872fi
2873
Tim Rice13aae5e2001-10-21 17:53:58 -07002874TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11002875
Tim Rice200a5c02002-02-26 22:12:34 -08002876AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
Darren Tucker598eaa62008-06-09 03:32:29 +10002877AC_CHECK_TYPES([fsblkcnt_t, fsfilcnt_t],,,[
2878#include <sys/types.h>
2879#ifdef HAVE_SYS_BITYPES_H
2880#include <sys/bitypes.h>
2881#endif
2882#ifdef HAVE_SYS_STATFS_H
2883#include <sys/statfs.h>
2884#endif
2885#ifdef HAVE_SYS_STATVFS_H
2886#include <sys/statvfs.h>
2887#endif
2888])
Tim Rice4cec93f2002-02-26 08:40:48 -08002889
Darren Tucker30ed6682009-03-07 18:06:22 +11002890AC_CHECK_TYPES([in_addr_t, in_port_t],,,
Damien Miller848b9932005-02-24 12:12:34 +11002891[#include <sys/types.h>
2892#include <netinet/in.h>])
Darren Tuckerd9f88912005-02-20 21:01:48 +11002893
Damien Miller61e50f12000-05-08 20:49:37 +10002894AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
2895 AC_TRY_COMPILE(
2896 [
2897#include <sys/types.h>
2898 ],
2899 [ size_t foo; foo = 1235; ],
2900 [ ac_cv_have_size_t="yes" ],
2901 [ ac_cv_have_size_t="no" ]
2902 )
2903])
2904if test "x$ac_cv_have_size_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002905 AC_DEFINE(HAVE_SIZE_T, 1, [define if you have size_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002906fi
Damien Miller95058511999-12-29 10:36:45 +11002907
Damien Miller615f9392000-05-17 22:53:33 +10002908AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
2909 AC_TRY_COMPILE(
2910 [
2911#include <sys/types.h>
2912 ],
2913 [ ssize_t foo; foo = 1235; ],
2914 [ ac_cv_have_ssize_t="yes" ],
2915 [ ac_cv_have_ssize_t="no" ]
2916 )
2917])
2918if test "x$ac_cv_have_ssize_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002919 AC_DEFINE(HAVE_SSIZE_T, 1, [define if you have ssize_t data type])
Damien Miller615f9392000-05-17 22:53:33 +10002920fi
2921
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002922AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
2923 AC_TRY_COMPILE(
2924 [
2925#include <time.h>
2926 ],
2927 [ clock_t foo; foo = 1235; ],
2928 [ ac_cv_have_clock_t="yes" ],
2929 [ ac_cv_have_clock_t="no" ]
2930 )
2931])
2932if test "x$ac_cv_have_clock_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002933 AC_DEFINE(HAVE_CLOCK_T, 1, [define if you have clock_t data type])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002934fi
2935
Damien Millerb54b40e2000-06-23 08:23:34 +10002936AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
2937 AC_TRY_COMPILE(
2938 [
2939#include <sys/types.h>
2940#include <sys/socket.h>
2941 ],
2942 [ sa_family_t foo; foo = 1235; ],
2943 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +11002944 [ AC_TRY_COMPILE(
2945 [
2946#include <sys/types.h>
2947#include <sys/socket.h>
2948#include <netinet/in.h>
2949 ],
2950 [ sa_family_t foo; foo = 1235; ],
2951 [ ac_cv_have_sa_family_t="yes" ],
2952
Damien Millerb54b40e2000-06-23 08:23:34 +10002953 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +11002954 )]
Damien Millerb54b40e2000-06-23 08:23:34 +10002955 )
2956])
2957if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002958 AC_DEFINE(HAVE_SA_FAMILY_T, 1,
2959 [define if you have sa_family_t data type])
Damien Millerb54b40e2000-06-23 08:23:34 +10002960fi
2961
Damien Miller0f91b4e2000-06-18 15:43:25 +10002962AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
2963 AC_TRY_COMPILE(
2964 [
2965#include <sys/types.h>
2966 ],
2967 [ pid_t foo; foo = 1235; ],
2968 [ ac_cv_have_pid_t="yes" ],
2969 [ ac_cv_have_pid_t="no" ]
2970 )
2971])
2972if test "x$ac_cv_have_pid_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002973 AC_DEFINE(HAVE_PID_T, 1, [define if you have pid_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002974fi
2975
2976AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
2977 AC_TRY_COMPILE(
2978 [
2979#include <sys/types.h>
2980 ],
2981 [ mode_t foo; foo = 1235; ],
2982 [ ac_cv_have_mode_t="yes" ],
2983 [ ac_cv_have_mode_t="no" ]
2984 )
2985])
2986if test "x$ac_cv_have_mode_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002987 AC_DEFINE(HAVE_MODE_T, 1, [define if you have mode_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002988fi
2989
Damien Miller61e50f12000-05-08 20:49:37 +10002990
2991AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
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; ],
2998 [ ac_cv_have_struct_sockaddr_storage="yes" ],
2999 [ ac_cv_have_struct_sockaddr_storage="no" ]
3000 )
3001])
3002if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003003 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE, 1,
3004 [define if you have struct sockaddr_storage data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003005fi
Damien Miller34132e52000-01-14 15:45:46 +11003006
Damien Miller61e50f12000-05-08 20:49:37 +10003007AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
3008 AC_TRY_COMPILE(
3009 [
Damien Miller7b22d652000-06-18 14:07:04 +10003010#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003011#include <netinet/in.h>
3012 ],
3013 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
3014 [ ac_cv_have_struct_sockaddr_in6="yes" ],
3015 [ ac_cv_have_struct_sockaddr_in6="no" ]
3016 )
3017])
3018if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003019 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6, 1,
3020 [define if you have struct sockaddr_in6 data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003021fi
Damien Miller34132e52000-01-14 15:45:46 +11003022
Damien Miller61e50f12000-05-08 20:49:37 +10003023AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
3024 AC_TRY_COMPILE(
3025 [
Damien Miller7b22d652000-06-18 14:07:04 +10003026#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003027#include <netinet/in.h>
3028 ],
3029 [ struct in6_addr s; s.s6_addr[0] = 0; ],
3030 [ ac_cv_have_struct_in6_addr="yes" ],
3031 [ ac_cv_have_struct_in6_addr="no" ]
3032 )
3033])
3034if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003035 AC_DEFINE(HAVE_STRUCT_IN6_ADDR, 1,
3036 [define if you have struct in6_addr data type])
Tim Rice0f4d2c02008-11-18 21:26:41 -08003037
3038dnl Now check for sin6_scope_id
3039 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
3040 [
3041#ifdef HAVE_SYS_TYPES_H
3042#include <sys/types.h>
3043#endif
3044#include <netinet/in.h>
3045 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003046fi
Damien Miller34132e52000-01-14 15:45:46 +11003047
Damien Miller61e50f12000-05-08 20:49:37 +10003048AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
3049 AC_TRY_COMPILE(
3050 [
Damien Miller81171112000-04-23 11:14:01 +10003051#include <sys/types.h>
3052#include <sys/socket.h>
3053#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003054 ],
3055 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
3056 [ ac_cv_have_struct_addrinfo="yes" ],
3057 [ ac_cv_have_struct_addrinfo="no" ]
3058 )
3059])
3060if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003061 AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1,
3062 [define if you have struct addrinfo data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003063fi
3064
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003065AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
3066 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11003067 [ #include <sys/time.h> ],
3068 [ struct timeval tv; tv.tv_sec = 1;],
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003069 [ ac_cv_have_struct_timeval="yes" ],
3070 [ ac_cv_have_struct_timeval="no" ]
3071 )
3072])
3073if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003074 AC_DEFINE(HAVE_STRUCT_TIMEVAL, 1, [define if you have struct timeval])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003075 have_struct_timeval=1
3076fi
3077
Tim Rice4e4dc562003-03-18 10:21:40 -08003078AC_CHECK_TYPES(struct timespec)
3079
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00003080# We need int64_t or else certian parts of the compile will fail.
Tim Rice8bb561b2005-03-17 16:23:19 -08003081if test "x$ac_cv_have_int64_t" = "xno" && \
3082 test "x$ac_cv_sizeof_long_int" != "x8" && \
3083 test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00003084 echo "OpenSSH requires int64_t support. Contact your vendor or install"
3085 echo "an alternative compiler (I.E., GCC) before continuing."
3086 echo ""
3087 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08003088else
3089dnl test snprintf (broken on SCO w/gcc)
Darren Tuckera0c2b392004-09-11 23:26:37 +10003090 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10003091 [AC_LANG_SOURCE([[
Tim Ricebee3f222001-03-11 17:32:12 -08003092#include <stdio.h>
3093#include <string.h>
3094#ifdef HAVE_SNPRINTF
3095main()
3096{
3097 char buf[50];
3098 char expected_out[50];
3099 int mazsize = 50 ;
3100#if (SIZEOF_LONG_INT == 8)
3101 long int num = 0x7fffffffffffffff;
3102#else
Kevin Steves6482ec82001-07-15 02:09:28 +00003103 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08003104#endif
3105 strcpy(expected_out, "9223372036854775807");
3106 snprintf(buf, mazsize, "%lld", num);
3107 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11003108 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08003109 exit(0);
3110}
3111#else
3112main() { exit(0); }
3113#endif
Darren Tucker623d92f2004-09-12 22:36:15 +10003114 ]])], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],
Darren Tuckera0c2b392004-09-11 23:26:37 +10003115 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
Tim Ricebee3f222001-03-11 17:32:12 -08003116 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003117fi
3118
Damien Miller78315eb2000-09-29 23:01:36 +11003119dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10003120OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
3121OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
3122OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
3123OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
3124OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10003125OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10003126OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
3127OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10003128OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10003129OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
3130OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
3131OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
3132OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00003133OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
3134OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
3135OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
3136OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Tim Rice13aae5e2001-10-21 17:53:58 -07003137
3138AC_CHECK_MEMBERS([struct stat.st_blksize])
Darren Tucker58e298d2005-11-25 13:14:58 +11003139AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE(__res_state, state,
3140 [Define if we don't have struct __res_state in resolv.h])],
3141[
3142#include <stdio.h>
3143#if HAVE_SYS_TYPES_H
3144# include <sys/types.h>
3145#endif
3146#include <netinet/in.h>
3147#include <arpa/nameser.h>
3148#include <resolv.h>
3149])
andre2ff7b5d2000-06-03 14:57:40 +00003150
Damien Miller61e50f12000-05-08 20:49:37 +10003151AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
3152 ac_cv_have_ss_family_in_struct_ss, [
3153 AC_TRY_COMPILE(
3154 [
Damien Miller81171112000-04-23 11:14:01 +10003155#include <sys/types.h>
3156#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003157 ],
3158 [ struct sockaddr_storage s; s.ss_family = 1; ],
3159 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
3160 [ ac_cv_have_ss_family_in_struct_ss="no" ],
3161 )
3162])
3163if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003164 AC_DEFINE(HAVE_SS_FAMILY_IN_SS, 1, [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10003165fi
3166
Damien Miller61e50f12000-05-08 20:49:37 +10003167AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
3168 ac_cv_have___ss_family_in_struct_ss, [
3169 AC_TRY_COMPILE(
3170 [
Damien Miller81171112000-04-23 11:14:01 +10003171#include <sys/types.h>
3172#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003173 ],
3174 [ struct sockaddr_storage s; s.__ss_family = 1; ],
3175 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
3176 [ ac_cv_have___ss_family_in_struct_ss="no" ]
3177 )
3178])
3179if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003180 AC_DEFINE(HAVE___SS_FAMILY_IN_SS, 1,
3181 [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10003182fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11003183
Damien Millerad833b32000-08-23 10:46:23 +10003184AC_CACHE_CHECK([for pw_class field in struct passwd],
3185 ac_cv_have_pw_class_in_struct_passwd, [
3186 AC_TRY_COMPILE(
3187 [
Damien Millerad833b32000-08-23 10:46:23 +10003188#include <pwd.h>
3189 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00003190 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10003191 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
3192 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
3193 )
3194])
3195if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003196 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD, 1,
3197 [Define if your password has a pw_class field])
Damien Millerad833b32000-08-23 10:46:23 +10003198fi
3199
Kevin Steves82456952001-06-22 21:14:18 +00003200AC_CACHE_CHECK([for pw_expire field in struct passwd],
3201 ac_cv_have_pw_expire_in_struct_passwd, [
3202 AC_TRY_COMPILE(
3203 [
3204#include <pwd.h>
3205 ],
3206 [ struct passwd p; p.pw_expire = 0; ],
3207 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
3208 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
3209 )
3210])
3211if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003212 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD, 1,
3213 [Define if your password has a pw_expire field])
Kevin Steves82456952001-06-22 21:14:18 +00003214fi
3215
3216AC_CACHE_CHECK([for pw_change field in struct passwd],
3217 ac_cv_have_pw_change_in_struct_passwd, [
3218 AC_TRY_COMPILE(
3219 [
3220#include <pwd.h>
3221 ],
3222 [ struct passwd p; p.pw_change = 0; ],
3223 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
3224 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
3225 )
3226])
3227if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003228 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD, 1,
3229 [Define if your password has a pw_change field])
Kevin Steves82456952001-06-22 21:14:18 +00003230fi
Damien Miller61e50f12000-05-08 20:49:37 +10003231
Tim Rice28bbb0c2002-05-27 17:37:32 -07003232dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00003233AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
3234 ac_cv_have_accrights_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10003235 AC_COMPILE_IFELSE(
Kevin Steves939c9db2002-03-22 17:23:25 +00003236 [
Tim Riceae49fe62002-04-12 10:26:21 -07003237#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00003238#include <sys/socket.h>
3239#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07003240int main() {
3241#ifdef msg_accrights
Darren Tuckera0c2b392004-09-11 23:26:37 +10003242#error "msg_accrights is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07003243exit(1);
3244#endif
3245struct msghdr m;
3246m.msg_accrights = 0;
3247exit(0);
3248}
Kevin Steves939c9db2002-03-22 17:23:25 +00003249 ],
Kevin Steves939c9db2002-03-22 17:23:25 +00003250 [ ac_cv_have_accrights_in_msghdr="yes" ],
3251 [ ac_cv_have_accrights_in_msghdr="no" ]
3252 )
3253])
3254if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003255 AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR, 1,
3256 [Define if your system uses access rights style
3257 file descriptor passing])
Kevin Steves939c9db2002-03-22 17:23:25 +00003258fi
3259
Darren Tucker32780622009-06-16 16:11:02 +10003260AC_MSG_CHECKING(if struct statvfs.f_fsid is integral type)
Darren Tucker77001382008-06-09 06:17:53 +10003261AC_TRY_COMPILE([
3262#include <sys/types.h>
Darren Tucker32780622009-06-16 16:11:02 +10003263#include <sys/stat.h>
3264#ifdef HAVE_SYS_TIME_H
3265# include <sys/time.h>
3266#endif
3267#ifdef HAVE_SYS_MOUNT_H
3268#include <sys/mount.h>
3269#endif
3270#ifdef HAVE_SYS_STATVFS_H
3271#include <sys/statvfs.h>
3272#endif
3273], [struct statvfs s; s.f_fsid = 0;],
3274[ AC_MSG_RESULT(yes) ],
3275[ AC_MSG_RESULT(no)
3276
3277 AC_MSG_CHECKING(if fsid_t has member val)
3278 AC_TRY_COMPILE([
3279#include <sys/types.h>
Darren Tucker77001382008-06-09 06:17:53 +10003280#include <sys/statvfs.h>],
Darren Tucker32780622009-06-16 16:11:02 +10003281 [fsid_t t; t.val[0] = 0;],
Darren Tucker77001382008-06-09 06:17:53 +10003282 [ AC_MSG_RESULT(yes)
Darren Tucker32780622009-06-16 16:11:02 +10003283 AC_DEFINE(FSID_HAS_VAL, 1, fsid_t has member val) ],
3284 [ AC_MSG_RESULT(no) ])
3285
3286 AC_MSG_CHECKING(if f_fsid has member __val)
3287 AC_TRY_COMPILE([
3288#include <sys/types.h>
3289#include <sys/statvfs.h>],
3290 [fsid_t t; t.__val[0] = 0;],
3291 [ AC_MSG_RESULT(yes)
3292 AC_DEFINE(FSID_HAS___VAL, 1, fsid_t has member __val) ],
3293 [ AC_MSG_RESULT(no) ])
3294])
Darren Tucker77001382008-06-09 06:17:53 +10003295
Kevin Stevesa44e0352002-04-07 16:18:03 +00003296AC_CACHE_CHECK([for msg_control field in struct msghdr],
3297 ac_cv_have_control_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10003298 AC_COMPILE_IFELSE(
Kevin Stevesa44e0352002-04-07 16:18:03 +00003299 [
Tim Riceae49fe62002-04-12 10:26:21 -07003300#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00003301#include <sys/socket.h>
3302#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07003303int main() {
3304#ifdef msg_control
Darren Tuckera0c2b392004-09-11 23:26:37 +10003305#error "msg_control is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07003306exit(1);
3307#endif
3308struct msghdr m;
3309m.msg_control = 0;
3310exit(0);
3311}
Kevin Stevesa44e0352002-04-07 16:18:03 +00003312 ],
Kevin Stevesa44e0352002-04-07 16:18:03 +00003313 [ ac_cv_have_control_in_msghdr="yes" ],
3314 [ ac_cv_have_control_in_msghdr="no" ]
3315 )
3316])
3317if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003318 AC_DEFINE(HAVE_CONTROL_IN_MSGHDR, 1,
3319 [Define if your system uses ancillary data style
3320 file descriptor passing])
Kevin Stevesa44e0352002-04-07 16:18:03 +00003321fi
3322
Damien Miller61e50f12000-05-08 20:49:37 +10003323AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Damien Millera8e06ce2003-11-21 23:48:55 +11003324 AC_TRY_LINK([],
3325 [ extern char *__progname; printf("%s", __progname); ],
Damien Miller61e50f12000-05-08 20:49:37 +10003326 [ ac_cv_libc_defines___progname="yes" ],
3327 [ ac_cv_libc_defines___progname="no" ]
3328 )
3329])
3330if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003331 AC_DEFINE(HAVE___PROGNAME, 1, [Define if libc defines __progname])
Damien Miller61e50f12000-05-08 20:49:37 +10003332fi
3333
Kevin Steves4846f4a2002-03-22 18:19:53 +00003334AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
3335 AC_TRY_LINK([
3336#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11003337],
3338 [ printf("%s", __FUNCTION__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00003339 [ ac_cv_cc_implements___FUNCTION__="yes" ],
3340 [ ac_cv_cc_implements___FUNCTION__="no" ]
3341 )
3342])
3343if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003344 AC_DEFINE(HAVE___FUNCTION__, 1,
3345 [Define if compiler implements __FUNCTION__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00003346fi
3347
3348AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
3349 AC_TRY_LINK([
3350#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11003351],
3352 [ printf("%s", __func__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00003353 [ ac_cv_cc_implements___func__="yes" ],
3354 [ ac_cv_cc_implements___func__="no" ]
3355 )
3356])
3357if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003358 AC_DEFINE(HAVE___func__, 1, [Define if compiler implements __func__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00003359fi
3360
Damien Miller57f39152005-11-24 19:58:19 +11003361AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [
3362 AC_TRY_LINK(
3363 [#include <stdarg.h>
3364 va_list x,y;],
3365 [va_copy(x,y);],
3366 [ ac_cv_have_va_copy="yes" ],
3367 [ ac_cv_have_va_copy="no" ]
3368 )
3369])
3370if test "x$ac_cv_have_va_copy" = "xyes" ; then
3371 AC_DEFINE(HAVE_VA_COPY, 1, [Define if va_copy exists])
3372fi
3373
3374AC_CACHE_CHECK([whether __va_copy exists], ac_cv_have___va_copy, [
3375 AC_TRY_LINK(
3376 [#include <stdarg.h>
3377 va_list x,y;],
3378 [__va_copy(x,y);],
3379 [ ac_cv_have___va_copy="yes" ],
3380 [ ac_cv_have___va_copy="no" ]
3381 )
3382])
3383if test "x$ac_cv_have___va_copy" = "xyes" ; then
3384 AC_DEFINE(HAVE___VA_COPY, 1, [Define if __va_copy exists])
3385fi
3386
Damien Miller4f8e6692001-07-14 13:22:53 +10003387AC_CACHE_CHECK([whether getopt has optreset support],
3388 ac_cv_have_getopt_optreset, [
3389 AC_TRY_LINK(
3390 [
3391#include <getopt.h>
3392 ],
3393 [ extern int optreset; optreset = 0; ],
3394 [ ac_cv_have_getopt_optreset="yes" ],
3395 [ ac_cv_have_getopt_optreset="no" ]
3396 )
3397])
3398if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003399 AC_DEFINE(HAVE_GETOPT_OPTRESET, 1,
3400 [Define if your getopt(3) defines and uses optreset])
Damien Miller4f8e6692001-07-14 13:22:53 +10003401fi
Damien Millera22ba012000-03-02 23:09:20 +11003402
Damien Millerecbb26d2000-07-15 14:59:14 +10003403AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Damien Millera8e06ce2003-11-21 23:48:55 +11003404 AC_TRY_LINK([],
3405 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
Damien Millerecbb26d2000-07-15 14:59:14 +10003406 [ ac_cv_libc_defines_sys_errlist="yes" ],
3407 [ ac_cv_libc_defines_sys_errlist="no" ]
3408 )
3409])
3410if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003411 AC_DEFINE(HAVE_SYS_ERRLIST, 1,
3412 [Define if your system defines sys_errlist[]])
Damien Millerecbb26d2000-07-15 14:59:14 +10003413fi
3414
3415
Damien Miller11fa2cc2000-08-16 10:35:58 +10003416AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Damien Millera8e06ce2003-11-21 23:48:55 +11003417 AC_TRY_LINK([],
3418 [ extern int sys_nerr; printf("%i", sys_nerr);],
Damien Miller11fa2cc2000-08-16 10:35:58 +10003419 [ ac_cv_libc_defines_sys_nerr="yes" ],
3420 [ ac_cv_libc_defines_sys_nerr="no" ]
3421 )
3422])
3423if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003424 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if your system defines sys_nerr])
Damien Miller11fa2cc2000-08-16 10:35:58 +10003425fi
3426
Darren Tucker5f88d342003-10-15 16:57:57 +10003427# Check libraries needed by DNS fingerprint support
Damien Millera8e06ce2003-11-21 23:48:55 +11003428AC_SEARCH_LIBS(getrrsetbyname, resolv,
Tim Rice7df8d392005-09-19 09:33:39 -07003429 [AC_DEFINE(HAVE_GETRRSETBYNAME, 1,
3430 [Define if getrrsetbyname() exists])],
Damien Miller7abe09b2003-05-15 10:53:49 +10003431 [
Darren Tucker5f88d342003-10-15 16:57:57 +10003432 # Needed by our getrrsetbyname()
3433 AC_SEARCH_LIBS(res_query, resolv)
3434 AC_SEARCH_LIBS(dn_expand, resolv)
Darren Tucker8e968a52004-05-13 11:56:16 +10003435 AC_MSG_CHECKING(if res_query will link)
Darren Tuckere02b49a2009-09-11 14:56:08 +10003436 AC_LINK_IFELSE([
3437#include "confdefs.h"
3438#include <sys/types.h>
3439#include <netinet/in.h>
3440#include <arpa/nameser.h>
3441#include <netdb.h>
3442#include <resolv.h>
3443int main()
3444{
3445 res_query (0, 0, 0, 0, 0);
3446 return 0;
3447}
3448 ],
3449 AC_MSG_RESULT(yes),
Darren Tucker8e968a52004-05-13 11:56:16 +10003450 [AC_MSG_RESULT(no)
3451 saved_LIBS="$LIBS"
3452 LIBS="$LIBS -lresolv"
3453 AC_MSG_CHECKING(for res_query in -lresolv)
3454 AC_LINK_IFELSE([
Darren Tuckere02b49a2009-09-11 14:56:08 +10003455#include "confdefs.h"
3456#include <sys/types.h>
3457#include <netinet/in.h>
3458#include <arpa/nameser.h>
3459#include <netdb.h>
Darren Tucker8e968a52004-05-13 11:56:16 +10003460#include <resolv.h>
3461int main()
3462{
3463 res_query (0, 0, 0, 0, 0);
3464 return 0;
3465}
3466 ],
Darren Tuckere02b49a2009-09-11 14:56:08 +10003467 [AC_MSG_RESULT(yes)],
Darren Tucker8e968a52004-05-13 11:56:16 +10003468 [LIBS="$saved_LIBS"
3469 AC_MSG_RESULT(no)])
3470 ])
Darren Tucker5f88d342003-10-15 16:57:57 +10003471 AC_CHECK_FUNCS(_getshort _getlong)
Darren Tuckerd886e1c2005-06-01 18:57:45 +10003472 AC_CHECK_DECLS([_getshort, _getlong], , ,
Tim Ricefcc7ff12005-06-02 20:28:29 -07003473 [#include <sys/types.h>
3474 #include <arpa/nameser.h>])
Darren Tucker5f88d342003-10-15 16:57:57 +10003475 AC_CHECK_MEMBER(HEADER.ad,
Tim Rice7df8d392005-09-19 09:33:39 -07003476 [AC_DEFINE(HAVE_HEADER_AD, 1,
3477 [Define if HEADER.ad exists in arpa/nameser.h])],,
Darren Tucker5f88d342003-10-15 16:57:57 +10003478 [#include <arpa/nameser.h>])
3479 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10003480
Darren Tuckercc40d5e2007-04-29 13:58:06 +10003481AC_MSG_CHECKING(if struct __res_state _res is an extern)
3482AC_LINK_IFELSE([
3483#include <stdio.h>
3484#if HAVE_SYS_TYPES_H
3485# include <sys/types.h>
3486#endif
3487#include <netinet/in.h>
3488#include <arpa/nameser.h>
3489#include <resolv.h>
3490extern struct __res_state _res;
3491int main() { return 0; }
3492 ],
3493 [AC_MSG_RESULT(yes)
3494 AC_DEFINE(HAVE__RES_EXTERN, 1,
3495 [Define if you have struct __res_state _res as an extern])
3496 ],
3497 [ AC_MSG_RESULT(no) ]
3498)
3499
Damien Miller73b42d22006-04-22 21:26:08 +10003500# Check whether user wants SELinux support
3501SELINUX_MSG="no"
3502LIBSELINUX=""
3503AC_ARG_WITH(selinux,
Damien Miller5b1c8b32008-03-27 12:33:07 +11003504 [ --with-selinux Enable SELinux support],
Damien Miller73b42d22006-04-22 21:26:08 +10003505 [ if test "x$withval" != "xno" ; then
Darren Tucker20e9f972007-03-25 18:26:01 +10003506 save_LIBS="$LIBS"
Damien Miller73b42d22006-04-22 21:26:08 +10003507 AC_DEFINE(WITH_SELINUX,1,[Define if you want SELinux support.])
3508 SELINUX_MSG="yes"
3509 AC_CHECK_HEADER([selinux/selinux.h], ,
Damien Miller1d2bfc42010-02-10 10:19:29 +11003510 AC_MSG_ERROR(SELinux support requires selinux.h header))
3511 AC_CHECK_LIB(selinux, setexeccon,
3512 [ LIBSELINUX="-lselinux"
3513 LIBS="$LIBS -lselinux"
3514 ],
3515 AC_MSG_ERROR(SELinux support requires libselinux library))
Damien Miller71adf122011-01-25 12:16:15 +11003516 SSHLIBS="$SSHLIBS $LIBSELINUX"
Darren Tucker20e9f972007-03-25 18:26:01 +10003517 SSHDLIBS="$SSHDLIBS $LIBSELINUX"
Damien Miller73b42d22006-04-22 21:26:08 +10003518 AC_CHECK_FUNCS(getseuserbyname get_default_context_with_level)
Darren Tuckeradc947d2006-10-07 09:07:20 +10003519 LIBS="$save_LIBS"
Damien Miller73b42d22006-04-22 21:26:08 +10003520 fi ]
3521)
Damien Miller71adf122011-01-25 12:16:15 +11003522AC_SUBST(SSHLIBS)
3523AC_SUBST(SSHDLIBS)
Damien Miller73b42d22006-04-22 21:26:08 +10003524
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003525# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11003526KRB5_MSG="no"
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003527AC_ARG_WITH(kerberos5,
Damien Millera8e06ce2003-11-21 23:48:55 +11003528 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11003529 [ if test "x$withval" != "xno" ; then
3530 if test "x$withval" = "xyes" ; then
3531 KRB5ROOT="/usr/local"
3532 else
3533 KRB5ROOT=${withval}
3534 fi
3535
Tim Rice7df8d392005-09-19 09:33:39 -07003536 AC_DEFINE(KRB5, 1, [Define if you want Kerberos 5 support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11003537 KRB5_MSG="yes"
3538
Darren Tuckerdad48e72009-09-01 18:26:00 +10003539 AC_PATH_PROG([KRB5CONF],[krb5-config],
3540 [$KRB5ROOT/bin/krb5-config],
3541 [$KRB5ROOT/bin:$PATH])
3542 if test -x $KRB5CONF ; then
Darren Tucker1d3ca582004-01-22 12:05:34 +11003543
3544 AC_MSG_CHECKING(for gssapi support)
3545 if $KRB5CONF | grep gssapi >/dev/null ; then
3546 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003547 AC_DEFINE(GSSAPI, 1,
3548 [Define this if you want GSSAPI
3549 support in the version 2 protocol])
Darren Tucker0d27ed12004-02-24 10:37:33 +11003550 k5confopts=gssapi
Damien Millera8e06ce2003-11-21 23:48:55 +11003551 else
Darren Tucker1d3ca582004-01-22 12:05:34 +11003552 AC_MSG_RESULT(no)
Darren Tucker0d27ed12004-02-24 10:37:33 +11003553 k5confopts=""
Damien Millera8e06ce2003-11-21 23:48:55 +11003554 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11003555 K5CFLAGS="`$KRB5CONF --cflags $k5confopts`"
3556 K5LIBS="`$KRB5CONF --libs $k5confopts`"
Darren Tucker1d3ca582004-01-22 12:05:34 +11003557 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11003558 AC_MSG_CHECKING(whether we are using Heimdal)
3559 AC_TRY_COMPILE([ #include <krb5.h> ],
3560 [ char *tmp = heimdal_version; ],
3561 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003562 AC_DEFINE(HEIMDAL, 1,
3563 [Define this if you are using the
3564 Heimdal version of Kerberos V5]) ],
Darren Tucker1d3ca582004-01-22 12:05:34 +11003565 AC_MSG_RESULT(no)
3566 )
3567 else
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003568 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11003569 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Damien Millera8e06ce2003-11-21 23:48:55 +11003570 AC_MSG_CHECKING(whether we are using Heimdal)
3571 AC_TRY_COMPILE([ #include <krb5.h> ],
3572 [ char *tmp = heimdal_version; ],
3573 [ AC_MSG_RESULT(yes)
3574 AC_DEFINE(HEIMDAL)
Damien Miller41bccf72011-01-02 21:53:07 +11003575 K5LIBS="-lkrb5"
Damien Miller5561e0b2004-04-20 20:28:55 +10003576 K5LIBS="$K5LIBS -lcom_err -lasn1"
Tim Riceeae17cc2005-03-17 16:52:20 -08003577 AC_CHECK_LIB(roken, net_write,
Damien Miller5561e0b2004-04-20 20:28:55 +10003578 [K5LIBS="$K5LIBS -lroken"])
Damien Miller41bccf72011-01-02 21:53:07 +11003579 AC_CHECK_LIB(des, des_cbc_encrypt,
3580 [K5LIBS="$K5LIBS -ldes"])
Damien Millera8e06ce2003-11-21 23:48:55 +11003581 ],
3582 [ AC_MSG_RESULT(no)
3583 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
3584 ]
3585 )
Damien Miller200d0a72003-06-30 19:21:36 +10003586 AC_SEARCH_LIBS(dn_expand, resolv)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003587
Darren Tucker30fd49e2008-06-14 09:14:46 +10003588 AC_CHECK_LIB(gssapi_krb5, gss_init_sec_context,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003589 [ AC_DEFINE(GSSAPI)
Darren Tucker30fd49e2008-06-14 09:14:46 +10003590 K5LIBS="-lgssapi_krb5 $K5LIBS" ],
3591 [ AC_CHECK_LIB(gssapi, gss_init_sec_context,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003592 [ AC_DEFINE(GSSAPI)
Darren Tucker30fd49e2008-06-14 09:14:46 +10003593 K5LIBS="-lgssapi $K5LIBS" ],
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003594 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
3595 $K5LIBS)
3596 ],
3597 $K5LIBS)
Tim Riceeae17cc2005-03-17 16:52:20 -08003598
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003599 AC_CHECK_HEADER(gssapi.h, ,
3600 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11003601 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003602 AC_CHECK_HEADERS(gssapi.h, ,
3603 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11003604 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003605 ]
3606 )
3607
3608 oldCPP="$CPPFLAGS"
3609 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
3610 AC_CHECK_HEADER(gssapi_krb5.h, ,
3611 [ CPPFLAGS="$oldCPP" ])
3612
Damien Millera8e06ce2003-11-21 23:48:55 +11003613 fi
Darren Tucker1d3ca582004-01-22 12:05:34 +11003614 if test ! -z "$need_dash_r" ; then
3615 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
3616 fi
3617 if test ! -z "$blibpath" ; then
3618 blibpath="$blibpath:${KRB5ROOT}/lib"
3619 fi
Tim Ricefd9e9e32005-09-12 17:36:10 -07003620
3621 AC_CHECK_HEADERS(gssapi.h gssapi/gssapi.h)
3622 AC_CHECK_HEADERS(gssapi_krb5.h gssapi/gssapi_krb5.h)
3623 AC_CHECK_HEADERS(gssapi_generic.h gssapi/gssapi_generic.h)
3624
3625 LIBS="$LIBS $K5LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07003626 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS, 1,
3627 [Define this if you want to use libkafs' AFS support]))
Darren Tucker0d27ed12004-02-24 10:37:33 +11003628 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11003629 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003630)
Damien Millerc79bc0d2001-03-28 13:03:42 +10003631
Damien Millera22ba012000-03-02 23:09:20 +11003632# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11003633
Damien Millerf58c6722002-05-13 13:15:42 +10003634PRIVSEP_PATH=/var/empty
3635AC_ARG_WITH(privsep-path,
Tim Ricecbb90662002-07-08 19:17:10 -07003636 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10003637 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003638 if test -n "$withval" && test "x$withval" != "xno" && \
3639 test "x${withval}" != "xyes"; then
Damien Millerf58c6722002-05-13 13:15:42 +10003640 PRIVSEP_PATH=$withval
3641 fi
3642 ]
3643)
3644AC_SUBST(PRIVSEP_PATH)
3645
Damien Millera22ba012000-03-02 23:09:20 +11003646AC_ARG_WITH(xauth,
3647 [ --with-xauth=PATH Specify path to xauth program ],
3648 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003649 if test -n "$withval" && test "x$withval" != "xno" && \
3650 test "x${withval}" != "xyes"; then
Damien Miller7b22d652000-06-18 14:07:04 +10003651 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11003652 fi
3653 ],
3654 [
Tim Ricee22be3b2002-07-17 19:20:07 -07003655 TestPath="$PATH"
3656 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
3657 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
3658 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
3659 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
3660 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
Damien Milleredb82922000-06-20 13:25:52 +10003661 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11003662 xauth_path="/usr/openwin/bin/xauth"
3663 fi
3664 ]
3665)
3666
Damien Miller7d901272003-01-13 16:55:22 +11003667STRIP_OPT=-s
3668AC_ARG_ENABLE(strip,
3669 [ --disable-strip Disable calling strip(1) on install],
3670 [
3671 if test "x$enableval" = "xno" ; then
3672 STRIP_OPT=
3673 fi
3674 ]
3675)
3676AC_SUBST(STRIP_OPT)
3677
Damien Millera19cf472000-11-29 13:28:50 +11003678if test -z "$xauth_path" ; then
3679 XAUTH_PATH="undefined"
3680 AC_SUBST(XAUTH_PATH)
3681else
Tim Rice7df8d392005-09-19 09:33:39 -07003682 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path",
3683 [Define if xauth is found in your path])
Damien Millera19cf472000-11-29 13:28:50 +11003684 XAUTH_PATH=$xauth_path
3685 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11003686fi
Damien Millera22ba012000-03-02 23:09:20 +11003687
3688# Check for mail directory (last resort if we cannot get it from headers)
3689if test ! -z "$MAIL" ; then
3690 maildir=`dirname $MAIL`
Tim Rice7df8d392005-09-19 09:33:39 -07003691 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir",
3692 [Set this to your mail directory if you don't have maillock.h])
Damien Millera22ba012000-03-02 23:09:20 +11003693fi
3694
Darren Tucker623d92f2004-09-12 22:36:15 +10003695if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10003696 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
3697 disable_ptmx_check=yes
3698fi
Damien Millera22ba012000-03-02 23:09:20 +11003699if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003700 if test "x$disable_ptmx_check" != "xyes" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11003701 AC_CHECK_FILE("/dev/ptmx",
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003702 [
Tim Rice7df8d392005-09-19 09:33:39 -07003703 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX, 1,
3704 [Define if you have /dev/ptmx])
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003705 have_dev_ptmx=1
3706 ]
3707 )
3708 fi
Damien Millera22ba012000-03-02 23:09:20 +11003709fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10003710
Darren Tucker623d92f2004-09-12 22:36:15 +10003711if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10003712 AC_CHECK_FILE("/dev/ptc",
3713 [
Tim Rice7df8d392005-09-19 09:33:39 -07003714 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC, 1,
3715 [Define if you have /dev/ptc])
Darren Tuckera0c2b392004-09-11 23:26:37 +10003716 have_dev_ptc=1
3717 ]
3718 )
3719else
3720 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
3721fi
Damien Miller204ad072000-03-02 23:56:12 +11003722
Damien Millera22ba012000-03-02 23:09:20 +11003723# Options from here on. Some of these are preset by platform above
Ben Lindstrom9841b0a2001-06-09 02:26:58 +00003724AC_ARG_WITH(mantype,
Damien Miller897741e2001-04-16 10:41:46 +10003725 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11003726 [
Damien Miller897741e2001-04-16 10:41:46 +10003727 case "$withval" in
3728 man|cat|doc)
3729 MANTYPE=$withval
3730 ;;
3731 *)
3732 AC_MSG_ERROR(invalid man type: $withval)
3733 ;;
3734 esac
Damien Miller670a4b82000-01-22 13:53:11 +11003735 ]
3736)
Ben Lindstrombc709922001-04-18 18:04:21 +00003737if test -z "$MANTYPE"; then
Tim Ricee22be3b2002-07-17 19:20:07 -07003738 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
3739 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
Ben Lindstrombc709922001-04-18 18:04:21 +00003740 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
3741 MANTYPE=doc
3742 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
3743 MANTYPE=man
3744 else
3745 MANTYPE=cat
3746 fi
3747fi
Damien Miller670a4b82000-01-22 13:53:11 +11003748AC_SUBST(MANTYPE)
Ben Lindstrombc709922001-04-18 18:04:21 +00003749if test "$MANTYPE" = "doc"; then
3750 mansubdir=man;
3751else
3752 mansubdir=$MANTYPE;
3753fi
3754AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11003755
Damien Millera22ba012000-03-02 23:09:20 +11003756# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11003757MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11003758AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003759 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11003760 [
Damien Millerb85dcad2000-03-11 11:37:00 +11003761 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003762 AC_DEFINE(HAVE_MD5_PASSWORDS, 1,
3763 [Define if you want to allow MD5 passwords])
Damien Millera8e06ce2003-11-21 23:48:55 +11003764 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11003765 fi
3766 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003767)
3768
Damien Millera22ba012000-03-02 23:09:20 +11003769# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11003770AC_ARG_WITH(shadow,
3771 [ --without-shadow Disable shadow password support],
3772 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003773 if test "x$withval" = "xno" ; then
Damien Miller76112de1999-12-21 11:18:08 +11003774 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10003775 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11003776 fi
3777 ]
3778)
3779
Damien Miller1f335fb2000-06-26 11:31:33 +10003780if test -z "$disable_shadow" ; then
3781 AC_MSG_CHECKING([if the systems has expire shadow information])
3782 AC_TRY_COMPILE(
3783 [
3784#include <sys/types.h>
3785#include <shadow.h>
3786 struct spwd sp;
3787 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
3788 [ sp_expire_available=yes ], []
3789 )
3790
3791 if test "x$sp_expire_available" = "xyes" ; then
3792 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003793 AC_DEFINE(HAS_SHADOW_EXPIRE, 1,
3794 [Define if you want to use shadow password expire field])
Damien Miller1f335fb2000-06-26 11:31:33 +10003795 else
3796 AC_MSG_RESULT(no)
3797 fi
3798fi
3799
Damien Millera22ba012000-03-02 23:09:20 +11003800# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11003801if test ! -z "$IPADDR_IN_DISPLAY" ; then
3802 DISPLAY_HACK_MSG="yes"
Tim Rice7df8d392005-09-19 09:33:39 -07003803 AC_DEFINE(IPADDR_IN_DISPLAY, 1,
3804 [Define if you need to use IP address
3805 instead of hostname in $DISPLAY])
Damien Miller9a947342000-08-30 10:03:33 +11003806else
Damien Millera8e06ce2003-11-21 23:48:55 +11003807 DISPLAY_HACK_MSG="no"
Damien Miller9a947342000-08-30 10:03:33 +11003808 AC_ARG_WITH(ipaddr-display,
3809 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
3810 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003811 if test "x$withval" != "xno" ; then
Damien Miller9a947342000-08-30 10:03:33 +11003812 AC_DEFINE(IPADDR_IN_DISPLAY)
Damien Millera8e06ce2003-11-21 23:48:55 +11003813 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11003814 fi
3815 ]
3816 )
3817fi
Damien Miller76112de1999-12-21 11:18:08 +11003818
Darren Tuckere1a790d2003-09-16 11:52:19 +10003819# check for /etc/default/login and use it if present.
Tim Rice7ff4e6d2003-09-22 19:50:14 -07003820AC_ARG_ENABLE(etc-default-login,
Darren Tucker1b6f2292005-02-11 16:11:49 +11003821 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
Darren Tucker2f9573d2005-02-10 22:28:54 +11003822 [ if test "x$enableval" = "xno"; then
3823 AC_MSG_NOTICE([/etc/default/login handling disabled])
3824 etc_default_login=no
3825 else
3826 etc_default_login=yes
3827 fi ],
Darren Tucker314d89e2005-10-17 23:29:23 +10003828 [ if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
3829 then
3830 AC_MSG_WARN([cross compiling: not checking /etc/default/login])
3831 etc_default_login=no
3832 else
3833 etc_default_login=yes
3834 fi ]
Darren Tucker2f9573d2005-02-10 22:28:54 +11003835)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003836
Darren Tucker2f9573d2005-02-10 22:28:54 +11003837if test "x$etc_default_login" != "xno"; then
3838 AC_CHECK_FILE("/etc/default/login",
3839 [ external_path_file=/etc/default/login ])
Darren Tucker314d89e2005-10-17 23:29:23 +10003840 if test "x$external_path_file" = "x/etc/default/login"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003841 AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN, 1,
3842 [Define if your system has /etc/default/login])
Darren Tuckera0c2b392004-09-11 23:26:37 +10003843 fi
Darren Tucker2f9573d2005-02-10 22:28:54 +11003844fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003845
Tim Rice43a1c132002-04-17 21:19:14 -07003846dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
Tim Rice8bb561b2005-03-17 16:23:19 -08003847if test $ac_cv_func_login_getcapbool = "yes" && \
3848 test $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003849 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07003850fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003851
Damien Millera22ba012000-03-02 23:09:20 +11003852# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11003853SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11003854AC_ARG_WITH(default-path,
Damien Millerf71d2a52002-05-13 15:14:08 +10003855 [ --with-default-path= Specify default \$PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11003856 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10003857 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07003858 AC_MSG_WARN([
3859--with-default-path=PATH has no effect on this system.
3860Edit /etc/login.conf instead.])
Tim Riceeae17cc2005-03-17 16:52:20 -08003861 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07003862 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003863 AC_MSG_WARN([
3864--with-default-path=PATH will only be used if PATH is not defined in
3865$external_path_file .])
3866 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003867 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11003868 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11003869 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003870 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10003871 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
3872 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07003873 else
Tim Riceb925b4b2003-09-15 22:40:49 -07003874 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003875 AC_MSG_WARN([
3876If PATH is defined in $external_path_file, ensure the path to scp is included,
3877otherwise scp will not work.])
3878 fi
Darren Tucker314d89e2005-10-17 23:29:23 +10003879 AC_RUN_IFELSE(
3880 [AC_LANG_SOURCE([[
Tim Rice59ea0a02001-03-10 13:50:45 -08003881/* find out what STDPATH is */
3882#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08003883#ifdef HAVE_PATHS_H
3884# include <paths.h>
3885#endif
3886#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08003887# ifdef _PATH_USERPATH /* Irix */
3888# define _PATH_STDPATH _PATH_USERPATH
3889# else
3890# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
3891# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08003892#endif
3893#include <sys/types.h>
3894#include <sys/stat.h>
3895#include <fcntl.h>
3896#define DATA "conftest.stdpath"
3897
3898main()
3899{
3900 FILE *fd;
3901 int rc;
Tim Riceeae17cc2005-03-17 16:52:20 -08003902
Tim Rice59ea0a02001-03-10 13:50:45 -08003903 fd = fopen(DATA,"w");
3904 if(fd == NULL)
3905 exit(1);
Tim Riceeae17cc2005-03-17 16:52:20 -08003906
Tim Rice59ea0a02001-03-10 13:50:45 -08003907 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
3908 exit(1);
3909
3910 exit(0);
3911}
Darren Tucker314d89e2005-10-17 23:29:23 +10003912 ]])],
3913 [ user_path=`cat conftest.stdpath` ],
Tim Rice59ea0a02001-03-10 13:50:45 -08003914 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
3915 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
3916 )
3917# make sure $bindir is in USER_PATH so scp will work
3918 t_bindir=`eval echo ${bindir}`
3919 case $t_bindir in
3920 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
3921 esac
3922 case $t_bindir in
3923 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
3924 esac
3925 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
3926 if test $? -ne 0 ; then
3927 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
3928 if test $? -ne 0 ; then
3929 user_path=$user_path:$t_bindir
3930 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
3931 fi
3932 fi
Tim Rice43a1c132002-04-17 21:19:14 -07003933 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11003934)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003935if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003936 AC_DEFINE_UNQUOTED(USER_PATH, "$user_path", [Specify default $PATH])
Tim Rice43a1c132002-04-17 21:19:14 -07003937 AC_SUBST(user_path)
3938fi
Damien Miller5a3e6831999-12-27 09:48:56 +11003939
Damien Millera18bbd32002-05-13 10:48:57 +10003940# Set superuser path separately to user path
Damien Millera18bbd32002-05-13 10:48:57 +10003941AC_ARG_WITH(superuser-path,
3942 [ --with-superuser-path= Specify different path for super-user],
3943 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003944 if test -n "$withval" && test "x$withval" != "xno" && \
3945 test "x${withval}" != "xyes"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003946 AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval",
3947 [Define if you want a different $PATH
3948 for the superuser])
Damien Millera18bbd32002-05-13 10:48:57 +10003949 superuser_path=$withval
3950 fi
3951 ]
3952)
3953
3954
Damien Miller61e50f12000-05-08 20:49:37 +10003955AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11003956IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11003957AC_ARG_WITH(4in6,
3958 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
3959 [
3960 if test "x$withval" != "xno" ; then
3961 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003962 AC_DEFINE(IPV4_IN_IPV6, 1,
3963 [Detect IPv4 in IPv6 mapped addresses
3964 and treat as IPv4])
Damien Millera8e06ce2003-11-21 23:48:55 +11003965 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003966 else
3967 AC_MSG_RESULT(no)
3968 fi
3969 ],[
3970 if test "x$inet6_default_4in6" = "xyes"; then
3971 AC_MSG_RESULT([yes (default)])
3972 AC_DEFINE(IPV4_IN_IPV6)
Damien Millera8e06ce2003-11-21 23:48:55 +11003973 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003974 else
3975 AC_MSG_RESULT([no (default)])
3976 fi
3977 ]
3978)
3979
Damien Miller60396b02001-02-18 17:01:00 +11003980# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11003981BSD_AUTH_MSG=no
Damien Miller60396b02001-02-18 17:01:00 +11003982AC_ARG_WITH(bsd-auth,
3983 [ --with-bsd-auth Enable BSD auth support],
3984 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003985 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003986 AC_DEFINE(BSD_AUTH, 1,
3987 [Define if you have BSD auth support])
Damien Miller6c21c512002-01-22 21:57:53 +11003988 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11003989 fi
3990 ]
3991)
3992
Damien Millera22ba012000-03-02 23:09:20 +11003993# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11003994piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11003995# make sure the directory exists
Tim Riceeae17cc2005-03-17 16:52:20 -08003996if test ! -d $piddir ; then
Damien Miller78315eb2000-09-29 23:01:36 +11003997 piddir=`eval echo ${sysconfdir}`
3998 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11003999 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11004000 esac
4001fi
4002
Tim Rice88f2ab52002-03-17 12:17:34 -08004003AC_ARG_WITH(pid-dir,
4004 [ --with-pid-dir=PATH Specify location of ssh.pid file],
4005 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004006 if test -n "$withval" && test "x$withval" != "xno" && \
4007 test "x${withval}" != "xyes"; then
Tim Rice88f2ab52002-03-17 12:17:34 -08004008 piddir=$withval
Tim Riceeae17cc2005-03-17 16:52:20 -08004009 if test ! -d $piddir ; then
Tim Rice88f2ab52002-03-17 12:17:34 -08004010 AC_MSG_WARN([** no $piddir directory on this system **])
4011 fi
4012 fi
4013 ]
4014)
4015
Tim Rice7df8d392005-09-19 09:33:39 -07004016AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir", [Specify location of ssh.pid])
Damien Millerb13c73e2000-01-17 22:02:17 +11004017AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11004018
andre2ff7b5d2000-06-03 14:57:40 +00004019dnl allow user to disable some login recording features
4020AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00004021 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004022 [
4023 if test "x$enableval" = "xno" ; then
4024 AC_DEFINE(DISABLE_LASTLOG)
4025 fi
4026 ]
andre2ff7b5d2000-06-03 14:57:40 +00004027)
4028AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00004029 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004030 [
4031 if test "x$enableval" = "xno" ; then
4032 AC_DEFINE(DISABLE_UTMP)
4033 fi
4034 ]
andre2ff7b5d2000-06-03 14:57:40 +00004035)
4036AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00004037 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004038 [
4039 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07004040 AC_DEFINE(DISABLE_UTMPX, 1,
4041 [Define if you don't want to use utmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004042 fi
4043 ]
andre2ff7b5d2000-06-03 14:57:40 +00004044)
4045AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00004046 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004047 [
4048 if test "x$enableval" = "xno" ; then
4049 AC_DEFINE(DISABLE_WTMP)
4050 fi
4051 ]
andre2ff7b5d2000-06-03 14:57:40 +00004052)
4053AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00004054 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004055 [
4056 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07004057 AC_DEFINE(DISABLE_WTMPX, 1,
4058 [Define if you don't want to use wtmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004059 fi
4060 ]
andre2ff7b5d2000-06-03 14:57:40 +00004061)
4062AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00004063 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004064 [
4065 if test "x$enableval" = "xno" ; then
4066 AC_DEFINE(DISABLE_LOGIN)
4067 fi
4068 ]
andre2ff7b5d2000-06-03 14:57:40 +00004069)
4070AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00004071 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004072 [
4073 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07004074 AC_DEFINE(DISABLE_PUTUTLINE, 1,
4075 [Define if you don't want to use pututline()
4076 etc. to write [uw]tmp])
Darren Tuckera3020db2003-06-28 12:54:33 +10004077 fi
4078 ]
andre2ff7b5d2000-06-03 14:57:40 +00004079)
4080AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00004081 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004082 [
4083 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07004084 AC_DEFINE(DISABLE_PUTUTXLINE, 1,
4085 [Define if you don't want to use pututxline()
4086 etc. to write [uw]tmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004087 fi
4088 ]
andre2ff7b5d2000-06-03 14:57:40 +00004089)
4090AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00004091 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11004092 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004093 if test "x$withval" = "xno" ; then
Damien Miller709528a2001-01-31 09:57:55 +11004094 AC_DEFINE(DISABLE_LASTLOG)
Tim Rice35cc69d2005-03-17 16:44:25 -08004095 elif test -n "$withval" && test "x${withval}" != "xyes"; then
Damien Miller709528a2001-01-31 09:57:55 +11004096 conf_lastlog_location=$withval
4097 fi
4098 ]
4099)
andre2ff7b5d2000-06-03 14:57:40 +00004100
4101dnl lastlog, [uw]tmpx? detection
4102dnl NOTE: set the paths in the platform section to avoid the
4103dnl need for command-line parameters
4104dnl lastlog and [uw]tmp are subject to a file search if all else fails
4105
4106dnl lastlog detection
4107dnl NOTE: the code itself will detect if lastlog is a directory
4108AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
4109AC_TRY_COMPILE([
4110#include <sys/types.h>
4111#include <utmp.h>
4112#ifdef HAVE_LASTLOG_H
4113# include <lastlog.h>
4114#endif
Damien Miller2994e082000-06-04 15:51:47 +10004115#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004116# include <paths.h>
4117#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00004118#ifdef HAVE_LOGIN_H
4119# include <login.h>
4120#endif
andre2ff7b5d2000-06-03 14:57:40 +00004121 ],
4122 [ char *lastlog = LASTLOG_FILE; ],
4123 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10004124 [
4125 AC_MSG_RESULT(no)
4126 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
4127 AC_TRY_COMPILE([
4128#include <sys/types.h>
4129#include <utmp.h>
4130#ifdef HAVE_LASTLOG_H
4131# include <lastlog.h>
4132#endif
4133#ifdef HAVE_PATHS_H
4134# include <paths.h>
4135#endif
4136 ],
4137 [ char *lastlog = _PATH_LASTLOG; ],
4138 [ AC_MSG_RESULT(yes) ],
4139 [
andree441aa32000-06-12 22:34:38 +00004140 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10004141 system_lastlog_path=no
4142 ])
4143 ]
andre2ff7b5d2000-06-03 14:57:40 +00004144)
Damien Miller2994e082000-06-04 15:51:47 +10004145
andre2ff7b5d2000-06-03 14:57:40 +00004146if test -z "$conf_lastlog_location"; then
4147 if test x"$system_lastlog_path" = x"no" ; then
4148 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10004149 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00004150 conf_lastlog_location=$f
4151 fi
4152 done
4153 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00004154 AC_MSG_WARN([** Cannot find lastlog **])
4155 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00004156 fi
4157 fi
4158fi
4159
4160if test -n "$conf_lastlog_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07004161 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location",
4162 [Define if you want to specify the path to your lastlog file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004163fi
andre2ff7b5d2000-06-03 14:57:40 +00004164
4165dnl utmp detection
4166AC_MSG_CHECKING([if your system defines UTMP_FILE])
4167AC_TRY_COMPILE([
4168#include <sys/types.h>
4169#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10004170#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004171# include <paths.h>
4172#endif
4173 ],
4174 [ char *utmp = UTMP_FILE; ],
4175 [ AC_MSG_RESULT(yes) ],
4176 [ AC_MSG_RESULT(no)
4177 system_utmp_path=no ]
4178)
4179if test -z "$conf_utmp_location"; then
4180 if test x"$system_utmp_path" = x"no" ; then
4181 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
4182 if test -f $f ; then
4183 conf_utmp_location=$f
4184 fi
4185 done
4186 if test -z "$conf_utmp_location"; then
4187 AC_DEFINE(DISABLE_UTMP)
4188 fi
4189 fi
4190fi
4191if test -n "$conf_utmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07004192 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location",
4193 [Define if you want to specify the path to your utmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004194fi
andre2ff7b5d2000-06-03 14:57:40 +00004195
4196dnl wtmp detection
4197AC_MSG_CHECKING([if your system defines WTMP_FILE])
4198AC_TRY_COMPILE([
4199#include <sys/types.h>
4200#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10004201#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004202# include <paths.h>
4203#endif
4204 ],
4205 [ char *wtmp = WTMP_FILE; ],
4206 [ AC_MSG_RESULT(yes) ],
4207 [ AC_MSG_RESULT(no)
4208 system_wtmp_path=no ]
4209)
4210if test -z "$conf_wtmp_location"; then
4211 if test x"$system_wtmp_path" = x"no" ; then
4212 for f in /usr/adm/wtmp /var/log/wtmp; do
4213 if test -f $f ; then
4214 conf_wtmp_location=$f
4215 fi
4216 done
4217 if test -z "$conf_wtmp_location"; then
4218 AC_DEFINE(DISABLE_WTMP)
4219 fi
4220 fi
4221fi
4222if test -n "$conf_wtmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07004223 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location",
4224 [Define if you want to specify the path to your wtmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004225fi
andre2ff7b5d2000-06-03 14:57:40 +00004226
4227
andre2ff7b5d2000-06-03 14:57:40 +00004228dnl wtmpx detection
4229AC_MSG_CHECKING([if your system defines WTMPX_FILE])
4230AC_TRY_COMPILE([
4231#include <sys/types.h>
4232#include <utmp.h>
4233#ifdef HAVE_UTMPX_H
4234#include <utmpx.h>
4235#endif
Damien Miller2994e082000-06-04 15:51:47 +10004236#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004237# include <paths.h>
4238#endif
4239 ],
4240 [ char *wtmpx = WTMPX_FILE; ],
4241 [ AC_MSG_RESULT(yes) ],
4242 [ AC_MSG_RESULT(no)
4243 system_wtmpx_path=no ]
4244)
4245if test -z "$conf_wtmpx_location"; then
4246 if test x"$system_wtmpx_path" = x"no" ; then
4247 AC_DEFINE(DISABLE_WTMPX)
4248 fi
4249else
Tim Rice7df8d392005-09-19 09:33:39 -07004250 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location",
4251 [Define if you want to specify the path to your wtmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004252fi
andre2ff7b5d2000-06-03 14:57:40 +00004253
Damien Miller4018c192000-04-30 09:30:44 +10004254
Damien Miller29ea30d2000-03-17 10:54:15 +11004255if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10004256 LDFLAGS="$LDFLAGS $blibflags$blibpath"
4257 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11004258fi
4259
Darren Tucker7da23cb2005-08-03 00:20:15 +10004260dnl Adding -Werror to CFLAGS early prevents configure tests from running.
4261dnl Add now.
4262CFLAGS="$CFLAGS $werror_flags"
4263
Darren Tucker627337d2010-04-10 22:58:01 +10004264if test "x$ac_cv_func_getaddrinfo" != "xyes" ; then
4265 TEST_SSH_IPV6=no
4266else
4267 TEST_SSH_IPV6=yes
4268fi
4269AC_CHECK_DECL(BROKEN_GETADDRINFO, TEST_SSH_IPV6=no)
4270AC_SUBST(TEST_SSH_IPV6, $TEST_SSH_IPV6)
Darren Tucker5d376902008-06-11 04:15:05 +10004271
Damien Millerbac2d8a2000-09-05 16:13:06 +11004272AC_EXEEXT
Damien Miller223897a2006-09-12 21:54:10 +10004273AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openssh.xml \
4274 openbsd-compat/Makefile openbsd-compat/regress/Makefile \
Damien Millerd8f60022010-02-12 09:34:22 +11004275 ssh_prng_cmds survey.sh])
Tim Rice13aae5e2001-10-21 17:53:58 -07004276AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10004277
Damien Miller7b22d652000-06-18 14:07:04 +10004278# Print summary of options
4279
Damien Miller7b22d652000-06-18 14:07:04 +10004280# Someone please show me a better way :)
4281A=`eval echo ${prefix}` ; A=`eval echo ${A}`
4282B=`eval echo ${bindir}` ; B=`eval echo ${B}`
4283C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
4284D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00004285E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00004286F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10004287G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10004288H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
4289I=`eval echo ${user_path}` ; I=`eval echo ${I}`
4290J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10004291
4292echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00004293echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10004294echo " User binaries: $B"
4295echo " System binaries: $C"
4296echo " Configuration files: $D"
4297echo " Askpass program: $E"
4298echo " Manual pages: $F"
4299echo " PID file: $G"
4300echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10004301if test "x$external_path_file" = "x/etc/login.conf" ; then
4302echo " At runtime, sshd will use the path defined in $external_path_file"
4303echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07004304else
Damien Millerf58c6722002-05-13 13:15:42 +10004305echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07004306 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004307echo " (If PATH is set in $external_path_file it will be used instead. If"
4308echo " used, ensure the path to scp is present, otherwise scp will not work.)"
4309 fi
Tim Rice43a1c132002-04-17 21:19:14 -07004310fi
Damien Millera18bbd32002-05-13 10:48:57 +10004311if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10004312echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10004313fi
Damien Millerf58c6722002-05-13 13:15:42 +10004314echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10004315echo " PAM support: $PAM_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10004316echo " OSF SIA support: $SIA_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004317echo " KerberosV support: $KRB5_MSG"
Damien Miller73b42d22006-04-22 21:26:08 +10004318echo " SELinux support: $SELINUX_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004319echo " Smartcard support: $SCARD_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004320echo " S/KEY support: $SKEY_MSG"
4321echo " TCP Wrappers support: $TCPW_MSG"
4322echo " MD5 password support: $MD5_MSG"
Darren Tucker16bcc1c2004-11-07 20:14:34 +11004323echo " libedit support: $LIBEDIT_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10004324echo " Solaris process contract support: $SPC_MSG"
Darren Tucker97528352010-11-05 12:03:05 +11004325echo " Solaris project support: $SP_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10004326echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004327echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
4328echo " BSD Auth support: $BSD_AUTH_MSG"
4329echo " Random number source: $RAND_MSG"
Damien Miller6c21c512002-01-22 21:57:53 +11004330if test ! -z "$USE_RAND_HELPER" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10004331echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
Damien Miller60396b02001-02-18 17:01:00 +11004332fi
4333
Damien Miller7b22d652000-06-18 14:07:04 +10004334echo ""
4335
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00004336echo " Host: ${host}"
4337echo " Compiler: ${CC}"
4338echo " Compiler flags: ${CFLAGS}"
4339echo "Preprocessor flags: ${CPPFLAGS}"
4340echo " Linker flags: ${LDFLAGS}"
Darren Tucker20e9f972007-03-25 18:26:01 +10004341echo " Libraries: ${LIBS}"
4342if test ! -z "${SSHDLIBS}"; then
4343echo " +for sshd: ${SSHDLIBS}"
4344fi
Damien Miller71adf122011-01-25 12:16:15 +11004345if test ! -z "${SSHLIBS}"; then
4346echo " +for ssh: ${SSHLIBS}"
4347fi
Damien Miller7b22d652000-06-18 14:07:04 +10004348
4349echo ""
4350
Tim Rice6f1f7582004-05-30 21:38:51 -07004351if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
Darren Tuckercf59d312004-08-29 21:18:09 +10004352 echo "SVR4 style packages are supported with \"make package\""
4353 echo ""
Tim Rice6f1f7582004-05-30 21:38:51 -07004354fi
4355
Damien Miller82cf0ce2000-12-20 13:34:48 +11004356if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11004357 echo "PAM is enabled. You may need to install a PAM control file "
4358 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11004359 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11004360 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11004361 echo ""
4362fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00004363
Damien Miller6c21c512002-01-22 21:57:53 +11004364if test ! -z "$RAND_HELPER_CMDHASH" ; then
4365 echo "WARNING: you are using the builtin random number collection "
4366 echo "service. Please read WARNING.RNG and request that your OS "
4367 echo "vendor includes kernel-based random number collection in "
4368 echo "future versions of your OS."
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00004369 echo ""
4370fi
Damien Miller60396b02001-02-18 17:01:00 +11004371
Damien Millerb4097182004-05-23 14:09:40 +10004372if test ! -z "$NO_PEERCHECK" ; then
Darren Tucker164aa302007-03-21 21:39:57 +11004373 echo "WARNING: the operating system that you are using does not"
4374 echo "appear to support getpeereid(), getpeerucred() or the"
4375 echo "SO_PEERCRED getsockopt() option. These facilities are used to"
4376 echo "enforce security checks to prevent unauthorised connections to"
4377 echo "ssh-agent. Their absence increases the risk that a malicious"
4378 echo "user can connect to your agent."
Damien Millerb4097182004-05-23 14:09:40 +10004379 echo ""
4380fi
4381
Darren Tuckerd9f88912005-02-20 21:01:48 +11004382if test "$AUDIT_MODULE" = "bsm" ; then
4383 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
4384 echo "See the Solaris section in README.platform for details."
4385fi