blob: 1817dd909897e9619c1d9f480d07acece0b008bd [file] [log] [blame]
Darren Tucker50c61f82011-01-16 18:28:09 +11001# $Id: configure.ac,v 1.465 2011/01/16 07:28:12 dtucker Exp $
Damien Miller4fefe242004-03-11 14:20:10 +11002#
3# Copyright (c) 1999-2004 Damien Miller
4#
5# Permission to use, copy, modify, and distribute this software for any
6# purpose with or without fee is hereby granted, provided that the above
7# copyright notice and this permission notice appear in all copies.
8#
9# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Damien Millere9cf3572001-02-09 12:55:35 +110016
Darren Tucker6a45f3d2005-06-03 19:33:10 +100017AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
Darren Tucker50c61f82011-01-16 18:28:09 +110018AC_REVISION($Revision: 1.465 $)
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 Millerbac2d8a2000-09-05 16:13:06 +1100486 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000487*-*-dgux*)
Tim Ricea74000e2009-03-18 11:25:02 -0700488 AC_DEFINE(IP_TOS_IS_BROKEN, 1,
489 [Define if your system choked on IP TOS setting])
Darren Tucker454da0b2003-12-18 12:52:19 +1100490 AC_DEFINE(SETEUID_BREAKS_SETUID)
491 AC_DEFINE(BROKEN_SETREUID)
492 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom58055132001-02-15 18:34:29 +0000493 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000494*-*-darwin*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000495 AC_MSG_CHECKING(if we have working getaddrinfo)
496 AC_TRY_RUN([#include <mach-o/dyld.h>
497main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
498 exit(0);
499 else
500 exit(1);
501}], [AC_MSG_RESULT(working)],
502 [AC_MSG_RESULT(buggy)
Tim Rice7df8d392005-09-19 09:33:39 -0700503 AC_DEFINE(BROKEN_GETADDRINFO, 1, [getaddrinfo is broken (if present)])],
Tim Rice480ef8d2003-09-21 21:38:11 -0700504 [AC_MSG_RESULT(assume it is working)])
Darren Tucker20379a32003-09-22 11:07:40 +1000505 AC_DEFINE(SETEUID_BREAKS_SETUID)
506 AC_DEFINE(BROKEN_SETREUID)
507 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker528d6fa2007-12-31 21:29:26 +1100508 AC_DEFINE(BROKEN_GLOB, 1, [OS X glob does not do what we expect])
Tim Rice7df8d392005-09-19 09:33:39 -0700509 AC_DEFINE_UNQUOTED(BIND_8_COMPAT, 1,
510 [Define if your resolver libs need this for getrrsetbyname])
Darren Tucker3eb48342006-06-23 21:05:12 +1000511 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
512 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
513 [Use tunnel device compatibility to OpenBSD])
514 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
515 [Prepend the address family to IP tunnel traffic])
Darren Tuckeracada072008-02-25 21:05:04 +1100516 m4_pattern_allow(AU_IPv)
517 AC_CHECK_DECL(AU_IPv4, [],
518 AC_DEFINE(AU_IPv4, 0, [System only supports IPv4 audit records])
519 [#include <bsm/audit.h>]
Damien Miller20e231f2009-02-12 13:12:21 +1100520 AC_DEFINE(LASTLOG_WRITE_PUTUTXLINE, 1,
521 [Define if pututxline updates lastlog too])
Darren Tuckeracada072008-02-25 21:05:04 +1100522 )
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000523 ;;
Darren Tucker57b29202006-09-10 20:25:51 +1000524*-*-dragonfly*)
525 SSHDLIBS="$SSHDLIBS -lcrypt"
526 ;;
Darren Tuckera83d90f2010-03-26 10:27:33 +1100527*-*-haiku*)
528 LIBS="$LIBS -lbsd "
529 AC_CHECK_LIB(network, socket)
530 AC_DEFINE(HAVE_U_INT64_T)
531 MANTYPE=man
532 ;;
Darren Tuckerfd333282005-05-28 18:31:42 +1000533*-*-hpux*)
534 # first we define all of the options common to all HP-UX releases
Kevin Steves315f8b72001-06-28 00:24:41 +0000535 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100536 IPADDR_IN_DISPLAY=yes
Damien Millerb0785672000-08-23 09:10:39 +1000537 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700538 AC_DEFINE(LOGIN_NO_ENDOPT, 1,
539 [Define if your login program cannot handle end of options ("--")])
Kevin Steves5feaaef2002-04-23 20:45:55 +0000540 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700541 AC_DEFINE(LOCKED_PASSWD_STRING, "*",
542 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000543 AC_DEFINE(SPT_TYPE,SPT_PSTAT)
Darren Tucker1e6616b2005-10-08 12:07:01 +1000544 MAIL="/var/mail/username"
Tim Ricef028f1e2002-07-19 12:41:10 -0700545 LIBS="$LIBS -lsec"
Darren Tuckerfd333282005-05-28 18:31:42 +1000546 AC_CHECK_LIB(xnet, t_error, ,
547 AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
548
549 # next, we define all of the options specific to major releases
550 case "$host" in
551 *-*-hpux10*)
552 if test -z "$GCC"; then
553 CFLAGS="$CFLAGS -Ae"
554 fi
555 ;;
556 *-*-hpux11*)
Tim Rice7df8d392005-09-19 09:33:39 -0700557 AC_DEFINE(PAM_SUN_CODEBASE, 1,
558 [Define if you are using Solaris-derived PAM which
559 passes pam_messages to the conversation function
560 with an extra level of indirection])
561 AC_DEFINE(DISABLE_UTMP, 1,
562 [Define if you don't want to use utmp])
Darren Tuckerfd333282005-05-28 18:31:42 +1000563 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
564 check_for_hpux_broken_getaddrinfo=1
565 check_for_conflicting_getspnam=1
566 ;;
567 esac
568
569 # lastly, we define options specific to minor releases
570 case "$host" in
571 *-*-hpux10.26)
Tim Rice7df8d392005-09-19 09:33:39 -0700572 AC_DEFINE(HAVE_SECUREWARE, 1,
573 [Define if you have SecureWare-based
574 protected password database])
Darren Tuckerfd333282005-05-28 18:31:42 +1000575 disable_ptmx_check=yes
576 LIBS="$LIBS -lsecpw"
577 ;;
578 esac
Damien Miller1bead332000-04-30 00:47:29 +1000579 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100580*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100581 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700582 AC_DEFINE(BROKEN_INET_NTOA, 1,
583 [Define if you system's inet_ntoa is busted
584 (e.g. Irix gcc issue)])
Darren Tuckerbeaf6792003-09-24 20:03:48 +1000585 AC_DEFINE(SETEUID_BREAKS_SETUID)
586 AC_DEFINE(BROKEN_SETREUID)
587 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700588 AC_DEFINE(WITH_ABBREV_NO_TTY, 1,
589 [Define if you shouldn't strip 'tty' from your
590 ttyname in [uw]tmp])
Darren Tuckere41bba52003-08-25 11:51:19 +1000591 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller1808f382000-01-06 12:03:12 +1100592 ;;
593*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100594 PATH="$PATH:/usr/etc"
Tim Rice7df8d392005-09-19 09:33:39 -0700595 AC_DEFINE(WITH_IRIX_ARRAY, 1,
596 [Define if you have/want arrays
597 (cluster-wide session managment, not C arrays)])
598 AC_DEFINE(WITH_IRIX_PROJECT, 1,
599 [Define if you want IRIX project management])
600 AC_DEFINE(WITH_IRIX_AUDIT, 1,
601 [Define if you want IRIX audit trails])
602 AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS, 1,
603 [Define if you want IRIX kernel jobs])])
Damien Miller11fa2cc2000-08-16 10:35:58 +1000604 AC_DEFINE(BROKEN_INET_NTOA)
Darren Tuckerbe79af12003-09-22 11:58:21 +1000605 AC_DEFINE(SETEUID_BREAKS_SETUID)
606 AC_DEFINE(BROKEN_SETREUID)
607 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700608 AC_DEFINE(BROKEN_UPDWTMPX, 1, [updwtmpx is broken (if present)])
Damien Millerf1b9d112002-04-23 23:09:19 +1000609 AC_DEFINE(WITH_ABBREV_NO_TTY)
Darren Tuckere41bba52003-08-25 11:51:19 +1000610 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Millerbeb4ba51999-12-28 15:09:35 +1100611 ;;
Damien Miller90551722009-02-16 15:37:03 +1100612*-*-k*bsd*-gnu | *-*-kopensolaris*-gnu)
613 check_for_libcrypt_later=1
614 AC_DEFINE(PAM_TTY_KLUDGE)
615 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!")
616 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
617 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
618 AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
619 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100620*-*-linux*)
621 no_dev_ptmx=1
Damien Millera64b57a2001-01-17 10:44:13 +1100622 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000623 check_for_openpty_ctty_bug=1
Tim Rice7df8d392005-09-19 09:33:39 -0700624 AC_DEFINE(PAM_TTY_KLUDGE, 1,
625 [Work around problematic Linux PAM modules handling of PAM_TTY])
626 AC_DEFINE(LOCKED_PASSWD_PREFIX, "!",
627 [String used in /etc/passwd to denote locked account])
Damien Miller35276252003-06-03 10:14:28 +1000628 AC_DEFINE(SPT_TYPE,SPT_REUSEARGV)
Tim Rice7df8d392005-09-19 09:33:39 -0700629 AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM,
630 [Define to whatever link() returns for "not supported"
631 if it doesn't return EOPNOTSUPP.])
Darren Tucker2fba9932005-02-02 23:30:24 +1100632 AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
Tim Rice7df8d392005-09-19 09:33:39 -0700633 AC_DEFINE(USE_BTMP)
Darren Tuckerc8802aa2009-12-08 13:39:48 +1100634 AC_DEFINE(LINUX_OOM_ADJUST, 1, [Adjust Linux out-of-memory killer])
Damien Miller7bcb0892000-03-11 20:45:40 +1100635 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000636 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000637 1.*|2.0.*)
Tim Rice7df8d392005-09-19 09:33:39 -0700638 AC_DEFINE(BROKEN_CMSG_TYPE, 1,
639 [Define if cmsg_type is not passed correctly])
Darren Tucker3c016542003-05-02 20:48:21 +1000640 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000641 esac
Damien Miller89e03ba2005-12-31 16:42:03 +1100642 # tun(4) forwarding compat code
Damien Millerc4bcc912005-12-31 17:05:58 +1100643 AC_CHECK_HEADERS(linux/if_tun.h)
Damien Millerbd4e4102006-01-01 21:03:30 +1100644 if test "x$ac_cv_header_linux_if_tun_h" = "xyes" ; then
Damien Miller89e03ba2005-12-31 16:42:03 +1100645 AC_DEFINE(SSH_TUN_LINUX, 1,
646 [Open tunnel devices the Linux tun/tap way])
647 AC_DEFINE(SSH_TUN_COMPAT_AF, 1,
648 [Use tunnel device compatibility to OpenBSD])
649 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
650 [Prepend the address family to IP tunnel traffic])
651 fi
Damien Millerb29ea912000-01-15 14:12:03 +1100652 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000653mips-sony-bsd|mips-sony-newsos4)
Darren Tucker988b3fd2006-02-08 22:11:27 +1100654 AC_DEFINE(NEED_SETPGRP, 1, [Need setpgrp to acquire controlling tty])
Ben Lindstromb5628642000-10-18 00:02:25 +0000655 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000656 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100657*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000658 check_for_libcrypt_before=1
Tim Riceeae17cc2005-03-17 16:52:20 -0800659 if test "x$withval" != "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800660 need_dash_r=1
661 fi
Damien Miller2dcddbf2006-01-01 19:47:05 +1100662 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
663 AC_CHECK_HEADER([net/if_tap.h], ,
664 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
665 AC_DEFINE(SSH_TUN_PREPEND_AF, 1,
666 [Prepend the address family to IP tunnel traffic])
Damien Milleree1c0b32000-01-21 00:18:15 +1100667 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100668*-*-freebsd*)
669 check_for_libcrypt_later=1
Darren Tuckerac7e6302005-10-06 01:39:58 +1000670 AC_DEFINE(LOCKED_PASSWD_PREFIX, "*LOCKED*", [Account locked with pw(1)])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100671 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
672 AC_CHECK_HEADER([net/if_tap.h], ,
673 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
Darren Tucker54e859f2008-03-02 21:52:27 +1100674 AC_DEFINE(BROKEN_GLOB, 1, [FreeBSD glob does not do what we need])
Damien Millerfbd884a2001-02-27 08:39:07 +1100675 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000676*-*-bsdi*)
677 AC_DEFINE(SETEUID_BREAKS_SETUID)
678 AC_DEFINE(BROKEN_SETREUID)
679 AC_DEFINE(BROKEN_SETREGID)
680 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000681*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000682 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100683 conf_utmp_location=/etc/utmp
684 conf_wtmp_location=/usr/adm/wtmp
685 MAIL=/usr/spool/mail
Tim Rice7df8d392005-09-19 09:33:39 -0700686 AC_DEFINE(HAVE_NEXT, 1, [Define if you are on NeXT])
Ben Lindstromb4df15d2000-10-15 00:17:36 +0000687 AC_DEFINE(BROKEN_REALPATH)
Ben Lindstrom76020ba2000-10-25 16:55:00 +0000688 AC_DEFINE(USE_PIPES)
Tim Rice7df8d392005-09-19 09:33:39 -0700689 AC_DEFINE(BROKEN_SAVED_UIDS, 1, [Needed for NeXT])
Damien Miller0f91b4e2000-06-18 15:43:25 +1000690 ;;
Darren Tucker4a422572005-07-14 17:22:11 +1000691*-*-openbsd*)
692 AC_DEFINE(HAVE_ATTRIBUTE__SENTINEL__, 1, [OpenBSD's gcc has sentinel])
Darren Tucker9ac1a652005-10-09 11:40:03 +1000693 AC_DEFINE(HAVE_ATTRIBUTE__BOUNDED__, 1, [OpenBSD's gcc has bounded])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100694 AC_DEFINE(SSH_TUN_OPENBSD, 1, [Open tunnel devices the OpenBSD way])
Damien Millerbb598142006-08-19 08:38:23 +1000695 AC_DEFINE(SYSLOG_R_SAFE_IN_SIGHAND, 1,
696 [syslog_r function is safe to use in in a signal handler])
Darren Tucker4a422572005-07-14 17:22:11 +1000697 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100698*-*-solaris*)
Tim Riceeae17cc2005-03-17 16:52:20 -0800699 if test "x$withval" != "xno" ; then
Tim Ricead4a1882004-02-29 15:53:37 -0800700 need_dash_r=1
701 fi
Damien Miller82cf0ce2000-12-20 13:34:48 +1100702 AC_DEFINE(PAM_SUN_CODEBASE)
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000703 AC_DEFINE(LOGIN_NEEDS_UTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700704 AC_DEFINE(LOGIN_NEEDS_TERM, 1,
705 [Some versions of /bin/login need the TERM supplied
706 on the commandline])
Ben Lindstrom95276712001-10-23 17:14:00 +0000707 AC_DEFINE(PAM_TTY_KLUDGE)
Tim Rice7df8d392005-09-19 09:33:39 -0700708 AC_DEFINE(SSHPAM_CHAUTHTOK_NEEDS_RUID, 1,
709 [Define if pam_chauthtok wants real uid set
710 to the unpriv'ed user])
Darren Tuckere41bba52003-08-25 11:51:19 +1000711 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Darren Tuckerc437cda2003-05-10 17:05:46 +1000712 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
Tim Rice7df8d392005-09-19 09:33:39 -0700713 AC_DEFINE(SSHD_ACQUIRES_CTTY, 1,
714 [Define if sshd somehow reacquires a controlling TTY
715 after setsid()])
Darren Tucker0249f932006-06-24 12:10:07 +1000716 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd
717 in case the name is longer than 8 chars])
Darren Tuckerac9f1b92009-08-28 15:01:20 +1000718 AC_DEFINE(BROKEN_TCGETATTR_ICANON, 1, [tcgetattr with ICANON may hang])
Darren Tuckere1a790d2003-09-16 11:52:19 +1000719 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000720 # hardwire lastlog location (can't detect it on some versions)
721 conf_lastlog_location="/var/adm/lastlog"
Damien Millera1cb6442000-06-09 11:58:35 +1000722 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
723 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
724 if test "$sol2ver" -ge 8; then
725 AC_MSG_RESULT(yes)
726 AC_DEFINE(DISABLE_UTMP)
Tim Rice7df8d392005-09-19 09:33:39 -0700727 AC_DEFINE(DISABLE_WTMP, 1,
728 [Define if you don't want to use wtmp])
Damien Millera1cb6442000-06-09 11:58:35 +1000729 else
730 AC_MSG_RESULT(no)
731 fi
Damien Miller1b06dc32006-08-31 03:24:41 +1000732 AC_ARG_WITH(solaris-contracts,
733 [ --with-solaris-contracts Enable Solaris process contracts (experimental)],
734 [
735 AC_CHECK_LIB(contract, ct_tmpl_activate,
736 [ AC_DEFINE(USE_SOLARIS_PROCESS_CONTRACTS, 1,
737 [Define if you have Solaris process contracts])
738 SSHDLIBS="$SSHDLIBS -lcontract"
739 AC_SUBST(SSHDLIBS)
740 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"
750 AC_SUBST(SSHDLIBS)
751 SP_MSG="yes" ], )
752 ],
753 )
Damien Miller75b1d102000-01-07 14:01:41 +1100754 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +1000755*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000756 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Damien Millerdfc83f42000-05-20 15:02:59 +1000757 AC_CHECK_FUNCS(getpwanam)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100758 AC_DEFINE(PAM_SUN_CODEBASE)
Damien Miller36ccb5c2000-08-09 16:34:27 +1000759 conf_utmp_location=/etc/utmp
760 conf_wtmp_location=/var/adm/wtmp
761 conf_lastlog_location=/var/adm/lastlog
Damien Millerb0785672000-08-23 09:10:39 +1000762 AC_DEFINE(USE_PIPES)
Damien Millerdfc83f42000-05-20 15:02:59 +1000763 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000764*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -0700765 LIBS="$LIBS -lc89"
Kevin Steves0bd4b342002-01-05 23:24:27 +0000766 AC_DEFINE(USE_PIPES)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000767 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker00130112003-09-22 11:40:24 +1000768 AC_DEFINE(SETEUID_BREAKS_SETUID)
769 AC_DEFINE(BROKEN_SETREUID)
770 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000771 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000772*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -0700773 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Darren Tucker89df7a32003-10-07 20:35:57 +1000774 AC_CHECK_LIB(dl, dlsym, ,)
Darren Tucker79d09fa2005-11-24 22:34:54 +1100775 # -lresolv needs to be at the end of LIBS or DNS lookups break
776 AC_CHECK_LIB(resolv, res_query, [ LIBS="$LIBS -lresolv" ])
Damien Millerfd9885e2001-01-10 08:16:53 +1100777 IPADDR_IN_DISPLAY=yes
778 AC_DEFINE(USE_PIPES)
Damien Miller2ae714f2000-07-11 09:29:50 +1000779 AC_DEFINE(IP_TOS_IS_BROKEN)
Darren Tucker3b2a06c2003-10-07 18:37:11 +1000780 AC_DEFINE(SETEUID_BREAKS_SETUID)
781 AC_DEFINE(BROKEN_SETREUID)
782 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker2972d6c2003-05-30 17:43:42 +1000783 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckere1a790d2003-09-16 11:52:19 +1000784 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -0700785 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
786 # Attention: always take care to bind libsocket and libnsl before libc,
787 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +1000788 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800789# UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
Damien Miller78315eb2000-09-29 23:01:36 +1100790*-*-sysv4.2*)
Damien Miller5dfe9762001-02-16 12:05:39 +1100791 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700792 AC_DEFINE(SETEUID_BREAKS_SETUID)
793 AC_DEFINE(BROKEN_SETREUID)
794 AC_DEFINE(BROKEN_SETREGID)
Tim Rice2f97b8b2005-04-11 19:00:18 -0700795 AC_DEFINE(PASSWD_NEEDS_USERNAME, 1, [must supply username to passwd])
Tim Rice46259d82005-11-28 18:40:34 -0800796 AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Damien Miller78315eb2000-09-29 23:01:36 +1100797 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800798# UnixWare 7.x, OpenUNIX 8
Damien Miller78315eb2000-09-29 23:01:36 +1100799*-*-sysv5*)
Tim Rice641ebf12010-01-17 17:05:39 -0800800 CPPFLAGS="$CPPFLAGS -Dvsnprintf=_xvsnprintf -Dsnprintf=_xsnprintf"
Tim Riceeb456542005-08-30 07:12:02 -0700801 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
Damien Miller5dfe9762001-02-16 12:05:39 +1100802 AC_DEFINE(USE_PIPES)
Tim Riced546a842003-09-11 22:24:36 -0700803 AC_DEFINE(SETEUID_BREAKS_SETUID)
Tim Rice4a7db1c2010-01-16 12:23:25 -0800804 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Riced546a842003-09-11 22:24:36 -0700805 AC_DEFINE(BROKEN_SETREUID)
806 AC_DEFINE(BROKEN_SETREGID)
Tim Rice7df8d392005-09-19 09:33:39 -0700807 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Tim Rice4dbacff2005-06-01 20:09:28 -0700808 case "$host" in
809 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
810 TEST_SHELL=/u95/bin/sh
Tim Rice7df8d392005-09-19 09:33:39 -0700811 AC_DEFINE(BROKEN_LIBIAF, 1,
812 [ia_uinfo routines not supported by OS yet])
Tim Riceb8f00192006-09-06 18:11:29 -0700813 AC_DEFINE(BROKEN_UPDWTMPX)
Tim Rice351529c2009-01-07 10:04:12 -0800814 AC_CHECK_LIB(prot, getluid,[ LIBS="$LIBS -lprot"
815 AC_CHECK_FUNCS(getluid setluid,,,-lprot)
816 AC_DEFINE(HAVE_SECUREWARE)
817 AC_DEFINE(DISABLE_SHADOW)
818 ],,)
Tim Rice4dbacff2005-06-01 20:09:28 -0700819 ;;
Tim Rice46259d82005-11-28 18:40:34 -0800820 *) AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
Tim Rice26767912009-01-07 20:50:08 -0800821 check_for_libcrypt_later=1
Tim Rice46259d82005-11-28 18:40:34 -0800822 ;;
Tim Rice4dbacff2005-06-01 20:09:28 -0700823 esac
Damien Miller78315eb2000-09-29 23:01:36 +1100824 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100825*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +1100826 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800827# SCO UNIX and OEM versions of SCO UNIX
Damien Miller78315eb2000-09-29 23:01:36 +1100828*-*-sco3.2v4*)
Tim Ricec390c8d2005-03-07 01:21:37 -0800829 AC_MSG_ERROR("This Platform is no longer supported.")
Damien Miller78315eb2000-09-29 23:01:36 +1100830 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800831# SCO OpenServer 5.x
Damien Miller78315eb2000-09-29 23:01:36 +1100832*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -0800833 if test -z "$GCC"; then
834 CFLAGS="$CFLAGS -belf"
835 fi
Damien Miller5dfe9762001-02-16 12:05:39 +1100836 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +1000837 no_dev_ptmx=1
Damien Miller5dfe9762001-02-16 12:05:39 +1100838 AC_DEFINE(USE_PIPES)
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000839 AC_DEFINE(HAVE_SECUREWARE)
Ben Lindstrom980754c2000-11-12 00:04:24 +0000840 AC_DEFINE(DISABLE_SHADOW)
Tim Rice9dd30812002-07-07 13:43:36 -0700841 AC_DEFINE(DISABLE_FD_PASSING)
Tim Riced546a842003-09-11 22:24:36 -0700842 AC_DEFINE(SETEUID_BREAKS_SETUID)
Tim Rice7ab7b932010-01-17 12:48:22 -0800843 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Riced546a842003-09-11 22:24:36 -0700844 AC_DEFINE(BROKEN_SETREUID)
845 AC_DEFINE(BROKEN_SETREGID)
Tim Riceae477e92003-09-12 18:15:15 -0700846 AC_DEFINE(WITH_ABBREV_NO_TTY)
Tim Rice816bd0d2004-07-19 10:19:26 -0700847 AC_DEFINE(BROKEN_UPDWTMPX)
Tim Rice7df8d392005-09-19 09:33:39 -0700848 AC_DEFINE(PASSWD_NEEDS_USERNAME)
Damien Miller217f5672001-02-16 12:12:41 +1100849 AC_CHECK_FUNCS(getluid setluid)
Tim Rice07183b82001-04-25 21:40:28 -0700850 MANTYPE=man
Tim Ricef7ba8f62004-06-20 10:37:32 -0700851 TEST_SHELL=ksh
Damien Millera66626b2000-06-13 18:57:53 +1000852 ;;
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000853*-*-unicosmk*)
Tim Rice7df8d392005-09-19 09:33:39 -0700854 AC_DEFINE(NO_SSH_LASTLOG, 1,
855 [Define if you don't want to use lastlog in session.c])
Darren Tucker2df33432004-01-30 14:34:21 +1100856 AC_DEFINE(SETEUID_BREAKS_SETUID)
857 AC_DEFINE(BROKEN_SETREUID)
858 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000859 AC_DEFINE(USE_PIPES)
860 AC_DEFINE(DISABLE_FD_PASSING)
861 LDFLAGS="$LDFLAGS"
862 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
863 MANTYPE=cat
Ben Lindstrom762104e2002-07-23 00:00:05 +0000864 ;;
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000865*-*-unicosmp*)
Darren Tucker2df33432004-01-30 14:34:21 +1100866 AC_DEFINE(SETEUID_BREAKS_SETUID)
867 AC_DEFINE(BROKEN_SETREUID)
868 AC_DEFINE(BROKEN_SETREGID)
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000869 AC_DEFINE(WITH_ABBREV_NO_TTY)
870 AC_DEFINE(USE_PIPES)
871 AC_DEFINE(DISABLE_FD_PASSING)
872 LDFLAGS="$LDFLAGS"
Darren Tucker2df33432004-01-30 14:34:21 +1100873 LIBS="$LIBS -lgen -lacid -ldb"
Darren Tucker9f7ffc52003-09-10 11:39:05 +1000874 MANTYPE=cat
875 ;;
Ben Lindstromd9e08242001-07-22 19:32:00 +0000876*-*-unicos*)
Darren Tucker2df33432004-01-30 14:34:21 +1100877 AC_DEFINE(SETEUID_BREAKS_SETUID)
878 AC_DEFINE(BROKEN_SETREUID)
879 AC_DEFINE(BROKEN_SETREGID)
Ben Lindstromd9e08242001-07-22 19:32:00 +0000880 AC_DEFINE(USE_PIPES)
Tim Rice9dd30812002-07-07 13:43:36 -0700881 AC_DEFINE(DISABLE_FD_PASSING)
Tim Rice81ed5182002-09-25 17:38:46 -0700882 AC_DEFINE(NO_SSH_LASTLOG)
Ben Lindstrom232ccf72002-07-22 23:34:25 +0000883 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
884 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
885 MANTYPE=cat
Tim Ricee991e3c2001-08-07 15:29:07 -0700886 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +1000887*-dec-osf*)
Ben Lindstrom72af2ef2001-05-08 20:42:28 +0000888 AC_MSG_CHECKING(for Digital Unix SIA)
889 no_osfsia=""
890 AC_ARG_WITH(osfsia,
891 [ --with-osfsia Enable Digital Unix SIA],
892 [
893 if test "x$withval" = "xno" ; then
894 AC_MSG_RESULT(disabled)
895 no_osfsia=1
896 fi
897 ],
898 )
899 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +1000900 if test -f /etc/sia/matrix.conf; then
901 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -0700902 AC_DEFINE(HAVE_OSF_SIA, 1,
903 [Define if you have Digital Unix Security
904 Integration Architecture])
905 AC_DEFINE(DISABLE_LOGIN, 1,
906 [Define if you don't want to use your
907 system's login() call])
Ben Lindstromc8c548d2003-03-21 01:18:09 +0000908 AC_DEFINE(DISABLE_FD_PASSING)
Damien Millerb8c656e2000-06-28 15:22:41 +1000909 LIBS="$LIBS -lsecurity -ldb -lm -laud"
Damien Miller1b06dc32006-08-31 03:24:41 +1000910 SIA_MSG="yes"
Damien Millerb8c656e2000-06-28 15:22:41 +1000911 else
912 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -0700913 AC_DEFINE(LOCKED_PASSWD_SUBSTR, "Nologin",
914 [String used in /etc/passwd to denote locked account])
Damien Millerb8c656e2000-06-28 15:22:41 +1000915 fi
916 fi
Darren Tucker3c8e1e12003-08-25 13:27:40 +1000917 AC_DEFINE(BROKEN_GETADDRINFO)
Tim Rice7a74c6b2003-09-21 21:00:59 -0700918 AC_DEFINE(SETEUID_BREAKS_SETUID)
Darren Tuckered92b212003-09-22 11:26:16 +1000919 AC_DEFINE(BROKEN_SETREUID)
920 AC_DEFINE(BROKEN_SETREGID)
Damien Millerff2e4922008-07-05 09:52:03 +1000921 AC_DEFINE(BROKEN_READV_COMPARISON, 1, [Can't do comparisons on readv])
Damien Millerb8c656e2000-06-28 15:22:41 +1000922 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000923
Tim Rice70335a62006-02-04 17:42:58 -0800924*-*-nto-qnx*)
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000925 AC_DEFINE(USE_PIPES)
926 AC_DEFINE(NO_X11_UNIX_SOCKETS)
Tim Rice7df8d392005-09-19 09:33:39 -0700927 AC_DEFINE(MISSING_NFDBITS, 1, [Define on *nto-qnx systems])
928 AC_DEFINE(MISSING_HOWMANY, 1, [Define on *nto-qnx systems])
929 AC_DEFINE(MISSING_FD_MASK, 1, [Define on *nto-qnx systems])
Tim Rice70335a62006-02-04 17:42:58 -0800930 AC_DEFINE(DISABLE_LASTLOG)
Darren Tucker54b75fe2006-02-26 12:31:48 +1100931 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tuckerbc1bd9d2007-09-27 07:03:20 +1000932 AC_DEFINE(BROKEN_SHADOW_EXPIRE, 1, [QNX shadow support is broken])
Tim Rice2f993462006-02-11 18:37:48 -0800933 enable_etc_default_login=no # has incompatible /etc/default/login
Darren Tucker8acb3b62007-08-10 14:36:12 +1000934 case "$host" in
935 *-*-nto-qnx6*)
936 AC_DEFINE(DISABLE_FD_PASSING)
937 ;;
938 esac
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000939 ;;
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000940
941*-*-ultrix*)
Tim Rice7df8d392005-09-19 09:33:39 -0700942 AC_DEFINE(BROKEN_GETGROUPS, 1, [getgroups(0,NULL) will return -1])
943 AC_DEFINE(BROKEN_MMAP, 1, [Ultrix mmap can't map files])
Darren Tucker988b3fd2006-02-08 22:11:27 +1100944 AC_DEFINE(NEED_SETPGRP)
Tim Ricefcc7ff12005-06-02 20:28:29 -0700945 AC_DEFINE(HAVE_SYS_SYSLOG_H, 1, [Force use of sys/syslog.h on Ultrix])
946 ;;
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000947
948*-*-lynxos)
949 CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
Tim Rice7df8d392005-09-19 09:33:39 -0700950 AC_DEFINE(MISSING_HOWMANY)
Darren Tucker93e7e8f2005-08-23 08:06:55 +1000951 AC_DEFINE(BROKEN_SETVBUF, 1, [LynxOS has broken setvbuf() implementation])
952 ;;
Damien Miller76112de1999-12-21 11:18:08 +1100953esac
954
Darren Tucker6eb93042003-06-29 21:30:41 +1000955AC_MSG_CHECKING(compiler and flags for sanity)
Darren Tucker623d92f2004-09-12 22:36:15 +1000956AC_RUN_IFELSE(
957 [AC_LANG_SOURCE([
Darren Tucker6eb93042003-06-29 21:30:41 +1000958#include <stdio.h>
959int main(){exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +1000960 ])],
Darren Tucker6eb93042003-06-29 21:30:41 +1000961 [ AC_MSG_RESULT(yes) ],
962 [
963 AC_MSG_RESULT(no)
964 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
Darren Tuckera0c2b392004-09-11 23:26:37 +1000965 ],
966 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
Darren Tucker6eb93042003-06-29 21:30:41 +1000967)
968
Darren Tucker0c9653f2005-05-28 15:58:14 +1000969dnl Checks for header files.
Damien Millera22ba012000-03-02 23:09:20 +1100970# Checks for libraries.
Tim Rice13aae5e2001-10-21 17:53:58 -0700971AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
972AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000973
Tim Rice1e1ef642003-09-11 22:19:31 -0700974dnl IRIX and Solaris 2.5.1 have dirname() in libgen
975AC_CHECK_FUNCS(dirname, [AC_CHECK_HEADERS(libgen.h)] ,[
976 AC_CHECK_LIB(gen, dirname,[
977 AC_CACHE_CHECK([for broken dirname],
978 ac_cv_have_broken_dirname, [
979 save_LIBS="$LIBS"
980 LIBS="$LIBS -lgen"
Darren Tucker314d89e2005-10-17 23:29:23 +1000981 AC_RUN_IFELSE(
982 [AC_LANG_SOURCE([[
Tim Rice1e1ef642003-09-11 22:19:31 -0700983#include <libgen.h>
984#include <string.h>
985
986int main(int argc, char **argv) {
987 char *s, buf[32];
988
989 strncpy(buf,"/etc", 32);
990 s = dirname(buf);
991 if (!s || strncmp(s, "/", 32) != 0) {
992 exit(1);
993 } else {
994 exit(0);
995 }
996}
Darren Tucker314d89e2005-10-17 23:29:23 +1000997 ]])],
Tim Rice1e1ef642003-09-11 22:19:31 -0700998 [ ac_cv_have_broken_dirname="no" ],
Darren Tucker314d89e2005-10-17 23:29:23 +1000999 [ ac_cv_have_broken_dirname="yes" ],
1000 [ ac_cv_have_broken_dirname="no" ],
Tim Rice1e1ef642003-09-11 22:19:31 -07001001 )
1002 LIBS="$save_LIBS"
1003 ])
1004 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
1005 LIBS="$LIBS -lgen"
1006 AC_DEFINE(HAVE_DIRNAME)
1007 AC_CHECK_HEADERS(libgen.h)
1008 fi
1009 ])
1010])
1011
1012AC_CHECK_FUNC(getspnam, ,
1013 AC_CHECK_LIB(gen, getspnam, LIBS="$LIBS -lgen"))
Tim Rice7df8d392005-09-19 09:33:39 -07001014AC_SEARCH_LIBS(basename, gen, AC_DEFINE(HAVE_BASENAME, 1,
1015 [Define if you have the basename function.]))
Tim Rice1e1ef642003-09-11 22:19:31 -07001016
Tim Rice13aae5e2001-10-21 17:53:58 -07001017dnl zlib is required
1018AC_ARG_WITH(zlib,
1019 [ --with-zlib=PATH Use zlib in PATH],
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001020 [ if test "x$withval" = "xno" ; then
1021 AC_MSG_ERROR([*** zlib is required ***])
1022 elif test "x$withval" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001023 if test -d "$withval/lib"; then
1024 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001025 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001026 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001027 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001028 fi
1029 else
1030 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001031 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001032 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001033 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001034 fi
1035 fi
1036 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001037 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001038 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001039 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001040 fi
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001041 fi ]
Tim Rice13aae5e2001-10-21 17:53:58 -07001042)
1043
Darren Tucker83d8f282009-08-17 09:35:22 +10001044AC_CHECK_HEADER([zlib.h], ,AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***]))
Tim Ricefcb62202004-01-23 18:35:16 -08001045AC_CHECK_LIB(z, deflate, ,
1046 [
1047 saved_CPPFLAGS="$CPPFLAGS"
1048 saved_LDFLAGS="$LDFLAGS"
1049 save_LIBS="$LIBS"
1050 dnl Check default zlib install dir
1051 if test -n "${need_dash_r}"; then
1052 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
1053 else
1054 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
1055 fi
1056 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
1057 LIBS="$LIBS -lz"
1058 AC_TRY_LINK_FUNC(deflate, AC_DEFINE(HAVE_LIBZ),
1059 [
1060 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
1061 ]
1062 )
1063 ]
1064)
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001065
1066AC_ARG_WITH(zlib-version-check,
1067 [ --without-zlib-version-check Disable zlib version check],
1068 [ if test "x$withval" = "xno" ; then
1069 zlib_check_nonfatal=1
1070 fi
1071 ]
1072)
1073
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001074AC_MSG_CHECKING(for possibly buggy zlib)
Darren Tucker623d92f2004-09-12 22:36:15 +10001075AC_RUN_IFELSE([AC_LANG_SOURCE([[
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001076#include <stdio.h>
Darren Tucker2dcd2392004-01-23 17:13:33 +11001077#include <zlib.h>
1078int main()
1079{
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001080 int a=0, b=0, c=0, d=0, n, v;
1081 n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
1082 if (n != 3 && n != 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001083 exit(1);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001084 v = a*1000000 + b*10000 + c*100 + d;
1085 fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
1086
1087 /* 1.1.4 is OK */
1088 if (a == 1 && b == 1 && c >= 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001089 exit(0);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001090
Darren Tucker41097ed2005-07-25 15:24:21 +10001091 /* 1.2.3 and up are OK */
1092 if (v >= 1020300)
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001093 exit(0);
1094
Darren Tucker2dcd2392004-01-23 17:13:33 +11001095 exit(2);
1096}
Darren Tucker623d92f2004-09-12 22:36:15 +10001097 ]])],
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001098 AC_MSG_RESULT(no),
1099 [ AC_MSG_RESULT(yes)
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001100 if test -z "$zlib_check_nonfatal" ; then
1101 AC_MSG_ERROR([*** zlib too old - check config.log ***
1102Your reported zlib version has known security problems. It's possible your
1103vendor has fixed these problems without changing the version number. If you
1104are sure this is the case, you can disable the check by running
1105"./configure --without-zlib-version-check".
Darren Tuckerac1910f2005-07-26 12:00:42 +10001106If you are in doubt, upgrade zlib to version 1.2.3 or greater.
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001107See http://www.gzip.org/zlib/ for details.])
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001108 else
1109 AC_MSG_WARN([zlib version may have security problems])
1110 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10001111 ],
1112 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
Darren Tucker2dcd2392004-01-23 17:13:33 +11001113)
Damien Miller6f9c3372000-10-25 10:06:04 +11001114
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001115dnl UnixWare 2.x
Damien Millera8e06ce2003-11-21 23:48:55 +11001116AC_CHECK_FUNC(strcasecmp,
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001117 [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ]
1118)
Darren Tucker5bfe1682005-11-12 18:42:36 +11001119AC_CHECK_FUNCS(utimes,
Tim Ricecbb90662002-07-08 19:17:10 -07001120 [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES)
1121 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001122)
Damien Millerab18c411999-11-11 10:40:23 +11001123
Tim Ricee589a292001-11-03 11:09:32 -08001124dnl Checks for libutil functions
1125AC_CHECK_HEADERS(libutil.h)
Tim Rice7df8d392005-09-19 09:33:39 -07001126AC_SEARCH_LIBS(login, util bsd, [AC_DEFINE(HAVE_LOGIN, 1,
1127 [Define if your libraries define login()])])
Damien Millera7058ec2008-05-20 08:57:06 +10001128AC_CHECK_FUNCS(fmt_scaled logout updwtmp logwtmp)
Tim Ricee589a292001-11-03 11:09:32 -08001129
Ben Lindstrom8697e082001-02-24 21:41:10 +00001130AC_FUNC_STRFTIME
1131
Damien Miller3c027682001-03-14 11:39:45 +11001132# Check for ALTDIRFUNC glob() extension
1133AC_MSG_CHECKING(for GLOB_ALTDIRFUNC support)
1134AC_EGREP_CPP(FOUNDIT,
1135 [
1136 #include <glob.h>
1137 #ifdef GLOB_ALTDIRFUNC
1138 FOUNDIT
1139 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001140 ],
Damien Miller3c027682001-03-14 11:39:45 +11001141 [
Tim Rice7df8d392005-09-19 09:33:39 -07001142 AC_DEFINE(GLOB_HAS_ALTDIRFUNC, 1,
1143 [Define if your system glob() function has
1144 the GLOB_ALTDIRFUNC extension])
Damien Miller3c027682001-03-14 11:39:45 +11001145 AC_MSG_RESULT(yes)
1146 ],
1147 [
1148 AC_MSG_RESULT(no)
1149 ]
1150)
Damien Millerab18c411999-11-11 10:40:23 +11001151
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001152# Check for g.gl_matchc glob() extension
1153AC_MSG_CHECKING(for gl_matchc field in glob_t)
Darren Tucker486d95e2006-03-15 21:31:39 +11001154AC_TRY_COMPILE(
Damien Milleraf87af12006-03-15 13:02:28 +11001155 [ #include <glob.h> ],
1156 [glob_t g; g.gl_matchc = 1;],
Damien Millera8e06ce2003-11-21 23:48:55 +11001157 [
Tim Rice7df8d392005-09-19 09:33:39 -07001158 AC_DEFINE(GLOB_HAS_GL_MATCHC, 1,
1159 [Define if your system glob() function has
1160 gl_matchc options in glob_t])
Damien Millera8e06ce2003-11-21 23:48:55 +11001161 AC_MSG_RESULT(yes)
1162 ],
1163 [
1164 AC_MSG_RESULT(no)
1165 ]
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001166)
1167
Damien Millera6e121a2010-10-07 21:39:17 +11001168# Check for g.gl_statv glob() extension
1169AC_MSG_CHECKING(for gl_statv and GLOB_KEEPSTAT extensions for glob)
1170AC_TRY_COMPILE(
1171 [ #include <glob.h> ],
1172 [
1173#ifndef GLOB_KEEPSTAT
1174#error "glob does not support GLOB_KEEPSTAT extension"
1175#endif
1176glob_t g;
1177g.gl_statv = NULL;
1178],
1179 [
1180 AC_DEFINE(GLOB_HAS_GL_STATV, 1,
1181 [Define if your system glob() function has
1182 gl_statv options in glob_t])
1183 AC_MSG_RESULT(yes)
1184 ],
1185 [
1186 AC_MSG_RESULT(no)
1187 ]
1188)
1189
Darren Tucker096faec2006-09-01 20:29:10 +10001190AC_CHECK_DECLS(GLOB_NOMATCH, , , [#include <glob.h>])
1191
Damien Miller18bb4732001-03-28 14:35:30 +10001192AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001193AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001194 [AC_LANG_SOURCE([[
Damien Miller18bb4732001-03-28 14:35:30 +10001195#include <sys/types.h>
1196#include <dirent.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001197int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
Darren Tucker623d92f2004-09-12 22:36:15 +10001198 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001199 [AC_MSG_RESULT(yes)],
Damien Miller18bb4732001-03-28 14:35:30 +10001200 [
1201 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -07001202 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
Darren Tucker79d09fa2005-11-24 22:34:54 +11001203 [Define if your struct dirent expects you to
Tim Rice7df8d392005-09-19 09:33:39 -07001204 allocate extra space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001205 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08001206 [
Darren Tuckera0c2b392004-09-11 23:26:37 +10001207 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
1208 AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
Damien Miller18bb4732001-03-28 14:35:30 +10001209 ]
1210)
1211
Damien Miller36f49652004-08-15 18:40:59 +10001212AC_MSG_CHECKING([for /proc/pid/fd directory])
1213if test -d "/proc/$$/fd" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07001214 AC_DEFINE(HAVE_PROC_PID, 1, [Define if you have /proc/$pid/fd])
Damien Miller36f49652004-08-15 18:40:59 +10001215 AC_MSG_RESULT(yes)
1216else
1217 AC_MSG_RESULT(no)
1218fi
1219
Damien Millerc547bf12001-02-16 10:18:12 +11001220# Check whether user wants S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +11001221SKEY_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +11001222AC_ARG_WITH(skey,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001223 [ --with-skey[[=PATH]] Enable S/Key support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +11001224 [
1225 if test "x$withval" != "xno" ; then
1226
1227 if test "x$withval" != "xyes" ; then
1228 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1229 LDFLAGS="$LDFLAGS -L${withval}/lib"
1230 fi
1231
Tim Rice7df8d392005-09-19 09:33:39 -07001232 AC_DEFINE(SKEY, 1, [Define if you want S/Key support])
Damien Millerc547bf12001-02-16 10:18:12 +11001233 LIBS="-lskey $LIBS"
Damien Millera8e06ce2003-11-21 23:48:55 +11001234 SKEY_MSG="yes"
Tim Riceeae17cc2005-03-17 16:52:20 -08001235
Tim Rice4cec93f2002-02-26 08:40:48 -08001236 AC_MSG_CHECKING([for s/key support])
Darren Tucker314d89e2005-10-17 23:29:23 +10001237 AC_LINK_IFELSE(
1238 [AC_LANG_SOURCE([[
Tim Rice4cec93f2002-02-26 08:40:48 -08001239#include <stdio.h>
1240#include <skey.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001241int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); }
Darren Tucker314d89e2005-10-17 23:29:23 +10001242 ]])],
Tim Rice4cec93f2002-02-26 08:40:48 -08001243 [AC_MSG_RESULT(yes)],
1244 [
1245 AC_MSG_RESULT(no)
Damien Millerc547bf12001-02-16 10:18:12 +11001246 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
1247 ])
Darren Tucker3b908f62004-04-14 15:26:39 +10001248 AC_MSG_CHECKING(if skeychallenge takes 4 arguments)
1249 AC_TRY_COMPILE(
1250 [#include <stdio.h>
1251 #include <skey.h>],
1252 [(void)skeychallenge(NULL,"name","",0);],
1253 [AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001254 AC_DEFINE(SKEYCHALLENGE_4ARG, 1,
1255 [Define if your skeychallenge()
1256 function takes 4 arguments (NetBSD)])],
Darren Tucker3b908f62004-04-14 15:26:39 +10001257 [AC_MSG_RESULT(no)]
1258 )
Damien Millerc547bf12001-02-16 10:18:12 +11001259 fi
1260 ]
1261)
1262
1263# Check whether user wants TCP wrappers support
Tim Rice13aae5e2001-10-21 17:53:58 -07001264TCPW_MSG="no"
Damien Millerc547bf12001-02-16 10:18:12 +11001265AC_ARG_WITH(tcp-wrappers,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001266 [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +11001267 [
1268 if test "x$withval" != "xno" ; then
1269 saved_LIBS="$LIBS"
Tim Rice13aae5e2001-10-21 17:53:58 -07001270 saved_LDFLAGS="$LDFLAGS"
1271 saved_CPPFLAGS="$CPPFLAGS"
Tim Rice8bb561b2005-03-17 16:23:19 -08001272 if test -n "${withval}" && \
Tim Rice35cc69d2005-03-17 16:44:25 -08001273 test "x${withval}" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001274 if test -d "${withval}/lib"; then
1275 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001276 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001277 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001278 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001279 fi
1280 else
1281 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001282 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001283 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001284 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001285 fi
1286 fi
1287 if test -d "${withval}/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001288 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001289 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001290 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001291 fi
Tim Rice13aae5e2001-10-21 17:53:58 -07001292 fi
Darren Tucker20e9f972007-03-25 18:26:01 +10001293 LIBS="-lwrap $LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001294 AC_MSG_CHECKING(for libwrap)
1295 AC_TRY_LINK(
1296 [
Damien Miller0ac45002004-04-14 20:14:26 +10001297#include <sys/types.h>
1298#include <sys/socket.h>
1299#include <netinet/in.h>
Damien Millerc547bf12001-02-16 10:18:12 +11001300#include <tcpd.h>
1301 int deny_severity = 0, allow_severity = 0;
1302 ],
1303 [hosts_access(0);],
1304 [
1305 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001306 AC_DEFINE(LIBWRAP, 1,
1307 [Define if you want
1308 TCP Wrappers support])
Darren Tucker20e9f972007-03-25 18:26:01 +10001309 SSHDLIBS="$SSHDLIBS -lwrap"
Tim Rice13aae5e2001-10-21 17:53:58 -07001310 TCPW_MSG="yes"
Damien Millerc547bf12001-02-16 10:18:12 +11001311 ],
1312 [
1313 AC_MSG_ERROR([*** libwrap missing])
1314 ]
1315 )
Tim Rice4cec93f2002-02-26 08:40:48 -08001316 LIBS="$saved_LIBS"
Damien Millerc547bf12001-02-16 10:18:12 +11001317 fi
1318 ]
1319)
1320
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001321# Check whether user wants libedit support
1322LIBEDIT_MSG="no"
1323AC_ARG_WITH(libedit,
Darren Tucker1b6f2292005-02-11 16:11:49 +11001324 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001325 [ if test "x$withval" != "xno" ; then
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001326 if test "x$withval" = "xyes" ; then
1327 AC_PATH_PROG(PKGCONFIG, pkg-config, no)
1328 if test "x$PKGCONFIG" != "xno"; then
1329 AC_MSG_CHECKING(if $PKGCONFIG knows about libedit)
1330 if "$PKGCONFIG" libedit; then
1331 AC_MSG_RESULT(yes)
1332 use_pkgconfig_for_libedit=yes
1333 else
1334 AC_MSG_RESULT(no)
1335 fi
1336 fi
1337 else
Darren Tuckerc373a562005-09-22 20:15:08 +10001338 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1339 if test -n "${need_dash_r}"; then
1340 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1341 else
1342 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1343 fi
Darren Tucker1df61452005-03-21 09:58:07 +11001344 fi
Damien Miller1f789802010-10-11 22:35:22 +11001345 if test "x$use_pkgconfig_for_libedit" = "xyes"; then
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001346 LIBEDIT=`$PKGCONFIG --libs-only-l libedit`
1347 CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`"
1348 else
1349 LIBEDIT="-ledit -lcurses"
1350 fi
1351 OTHERLIBS=`echo $LIBEDIT | sed 's/-ledit//'`
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001352 AC_CHECK_LIB(edit, el_init,
Tim Rice7df8d392005-09-19 09:33:39 -07001353 [ AC_DEFINE(USE_LIBEDIT, 1, [Use libedit for sftp])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001354 LIBEDIT_MSG="yes"
1355 AC_SUBST(LIBEDIT)
1356 ],
Darren Tucker1df61452005-03-21 09:58:07 +11001357 [ AC_MSG_ERROR(libedit not found) ],
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001358 [ $OTHERLIBS ]
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001359 )
Darren Tuckerc7572b22005-08-10 20:34:15 +10001360 AC_MSG_CHECKING(if libedit version is compatible)
Tim Ricec1819c82005-08-15 17:48:40 -07001361 AC_COMPILE_IFELSE(
1362 [AC_LANG_SOURCE([[
1363#include <histedit.h>
Darren Tuckerc7572b22005-08-10 20:34:15 +10001364int main(void)
1365{
1366 int i = H_SETSIZE;
1367 el_init("", NULL, NULL, NULL);
1368 exit(0);
1369}
Tim Ricec1819c82005-08-15 17:48:40 -07001370 ]])],
Darren Tuckerc7572b22005-08-10 20:34:15 +10001371 [ AC_MSG_RESULT(yes) ],
1372 [ AC_MSG_RESULT(no)
1373 AC_MSG_ERROR(libedit version is not compatible) ]
1374 )
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001375 fi ]
1376)
1377
Darren Tuckerd9f88912005-02-20 21:01:48 +11001378AUDIT_MODULE=none
1379AC_ARG_WITH(audit,
1380 [ --with-audit=module Enable EXPERIMENTAL audit support (modules=debug,bsm)],
1381 [
1382 AC_MSG_CHECKING(for supported audit module)
1383 case "$withval" in
1384 bsm)
1385 AC_MSG_RESULT(bsm)
1386 AUDIT_MODULE=bsm
1387 dnl Checks for headers, libs and functions
1388 AC_CHECK_HEADERS(bsm/audit.h, [],
Darren Tucker6d0d6fb2006-09-09 01:05:21 +10001389 [AC_MSG_ERROR(BSM enabled and bsm/audit.h not found)],
1390 [
1391#ifdef HAVE_TIME_H
1392# include <time.h>
1393#endif
1394 ]
1395)
Darren Tuckerd9f88912005-02-20 21:01:48 +11001396 AC_CHECK_LIB(bsm, getaudit, [],
1397 [AC_MSG_ERROR(BSM enabled and required library not found)])
1398 AC_CHECK_FUNCS(getaudit, [],
1399 [AC_MSG_ERROR(BSM enabled and required function not found)])
1400 # These are optional
Darren Tuckeracada072008-02-25 21:05:04 +11001401 AC_CHECK_FUNCS(getaudit_addr aug_get_machine)
Tim Rice7df8d392005-09-19 09:33:39 -07001402 AC_DEFINE(USE_BSM_AUDIT, 1, [Use BSM audit module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001403 ;;
1404 debug)
1405 AUDIT_MODULE=debug
1406 AC_MSG_RESULT(debug)
Tim Rice7df8d392005-09-19 09:33:39 -07001407 AC_DEFINE(SSH_AUDIT_EVENTS, 1, Use audit debugging module)
Darren Tuckerd9f88912005-02-20 21:01:48 +11001408 ;;
Tim Rice8bc6b902005-08-09 10:09:53 -07001409 no)
Tim Ricec1819c82005-08-15 17:48:40 -07001410 AC_MSG_RESULT(no)
Tim Rice8bc6b902005-08-09 10:09:53 -07001411 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001412 *)
1413 AC_MSG_ERROR([Unknown audit module $withval])
1414 ;;
1415 esac ]
1416)
1417
Damien Millerfe1f1432003-02-24 15:45:42 +11001418dnl Checks for library functions. Please keep in alphabetical order
Darren Tucker0c9653f2005-05-28 15:58:14 +10001419AC_CHECK_FUNCS( \
1420 arc4random \
Damien Millera4be7c22008-05-19 14:47:37 +10001421 arc4random_buf \
1422 arc4random_uniform \
Damien Miller57f39152005-11-24 19:58:19 +11001423 asprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001424 b64_ntop \
1425 __b64_ntop \
1426 b64_pton \
1427 __b64_pton \
1428 bcopy \
1429 bindresvport_sa \
1430 clock \
1431 closefrom \
1432 dirfd \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001433 fchmod \
1434 fchown \
1435 freeaddrinfo \
Darren Tucker598eaa62008-06-09 03:32:29 +10001436 fstatvfs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001437 futimes \
1438 getaddrinfo \
1439 getcwd \
1440 getgrouplist \
1441 getnameinfo \
1442 getopt \
1443 getpeereid \
Darren Tucker164aa302007-03-21 21:39:57 +11001444 getpeerucred \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001445 _getpty \
1446 getrlimit \
1447 getttyent \
1448 glob \
Darren Tucker909a3902010-01-15 12:38:30 +11001449 group_from_gid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001450 inet_aton \
1451 inet_ntoa \
1452 inet_ntop \
1453 innetgr \
1454 login_getcapbool \
1455 md5_crypt \
1456 memmove \
1457 mkdtemp \
1458 mmap \
1459 ngetaddrinfo \
1460 nsleep \
1461 ogetaddrinfo \
1462 openlog_r \
1463 openpty \
Darren Tuckerfebf0f52007-06-25 22:15:12 +10001464 poll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001465 prctl \
1466 pstat \
1467 readpassphrase \
1468 realpath \
1469 recvmsg \
1470 rresvport_af \
1471 sendmsg \
1472 setdtablesize \
1473 setegid \
1474 setenv \
1475 seteuid \
Darren Tucker909a3902010-01-15 12:38:30 +11001476 setgroupent \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001477 setgroups \
1478 setlogin \
Darren Tucker909a3902010-01-15 12:38:30 +11001479 setpassent\
Darren Tucker0c9653f2005-05-28 15:58:14 +10001480 setpcred \
1481 setproctitle \
1482 setregid \
1483 setreuid \
1484 setrlimit \
1485 setsid \
1486 setvbuf \
1487 sigaction \
1488 sigvec \
1489 snprintf \
1490 socketpair \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +10001491 statfs \
1492 statvfs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001493 strdup \
1494 strerror \
1495 strlcat \
1496 strlcpy \
1497 strmode \
1498 strnvis \
Darren Tuckeraa74f672010-08-16 13:15:23 +10001499 strptime \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001500 strtonum \
Darren Tucker81eb5d52005-06-01 21:39:33 +10001501 strtoll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001502 strtoul \
Damien Miller34a17692007-06-11 14:15:42 +10001503 swap32 \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001504 sysconf \
1505 tcgetpgrp \
Damien Milleraa180632010-10-07 21:25:27 +11001506 timingsafe_bcmp \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001507 truncate \
1508 unsetenv \
1509 updwtmpx \
Darren Tucker909a3902010-01-15 12:38:30 +11001510 user_from_uid \
Damien Miller57f39152005-11-24 19:58:19 +11001511 vasprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001512 vhangup \
1513 vsnprintf \
1514 waitpid \
Damien Millerfe1f1432003-02-24 15:45:42 +11001515)
Tim Rice13aae5e2001-10-21 17:53:58 -07001516
Tim Ricec7a8af02010-11-08 14:26:23 -08001517AC_LINK_IFELSE(
1518[
1519#include <ctype.h>
1520int main(void)
1521{
1522 return (isblank('a'));
1523}
1524],
1525 [AC_DEFINE(HAVE_ISBLANK, 1, [Define if you have isblank(3C).])
1526])
1527
Damien Millerb3c9f782010-02-12 10:11:34 +11001528# PKCS#11 support requires dlopen() and co
1529AC_SEARCH_LIBS(dlopen, dl,
1530 AC_DEFINE([ENABLE_PKCS11], [], [Enable for PKCS#11 support])
1531)
1532
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001533# IRIX has a const char return value for gai_strerror()
1534AC_CHECK_FUNCS(gai_strerror,[
1535 AC_DEFINE(HAVE_GAI_STRERROR)
1536 AC_TRY_COMPILE([
1537#include <sys/types.h>
1538#include <sys/socket.h>
1539#include <netdb.h>
1540
1541const char *gai_strerror(int);],[
1542char *str;
1543
1544str = gai_strerror(0);],[
1545 AC_DEFINE(HAVE_CONST_GAI_STRERROR_PROTO, 1,
1546 [Define if gai_strerror() returns const char *])])])
1547
Tim Rice7df8d392005-09-19 09:33:39 -07001548AC_SEARCH_LIBS(nanosleep, rt posix4, AC_DEFINE(HAVE_NANOSLEEP, 1,
1549 [Some systems put nanosleep outside of libc]))
Damien Millercd6853c2003-01-28 11:33:42 +11001550
Darren Tuckerf1159b52003-07-07 19:44:01 +10001551dnl Make sure prototypes are defined for these before using them.
Darren Tuckerf1159b52003-07-07 19:44:01 +10001552AC_CHECK_DECL(getrusage, [AC_CHECK_FUNCS(getrusage)])
Darren Tucker390b6d52005-05-28 16:54:36 +10001553AC_CHECK_DECL(strsep,
1554 [AC_CHECK_FUNCS(strsep)],
1555 [],
1556 [
1557#ifdef HAVE_STRING_H
1558# include <string.h>
1559#endif
1560 ])
Ben Lindstrom3e006472002-10-16 00:24:03 +00001561
Darren Tuckerb2427c82003-09-10 15:22:44 +10001562dnl tcsendbreak might be a macro
1563AC_CHECK_DECL(tcsendbreak,
1564 [AC_DEFINE(HAVE_TCSENDBREAK)],
Damien Millera8e06ce2003-11-21 23:48:55 +11001565 [AC_CHECK_FUNCS(tcsendbreak)],
Darren Tuckerb2427c82003-09-10 15:22:44 +10001566 [#include <termios.h>]
1567)
1568
Darren Tucker5bb14002004-04-23 18:53:10 +10001569AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>])
1570
Darren Tucker128a0892006-07-12 19:02:56 +10001571AC_CHECK_DECLS(SHUT_RD, , ,
1572 [
1573#include <sys/types.h>
1574#include <sys/socket.h>
1575 ])
Darren Tucker248469b2006-07-12 14:14:31 +10001576
1577AC_CHECK_DECLS(O_NONBLOCK, , ,
1578 [
1579#include <sys/types.h>
1580#ifdef HAVE_SYS_STAT_H
1581# include <sys/stat.h>
1582#endif
1583#ifdef HAVE_FCNTL_H
1584# include <fcntl.h>
1585#endif
1586 ])
1587
Darren Tuckered0b5922006-09-03 22:44:49 +10001588AC_CHECK_DECLS(writev, , , [
1589#include <sys/types.h>
1590#include <sys/uio.h>
1591#include <unistd.h>
1592 ])
1593
Darren Tucker6d862a52007-04-29 14:39:02 +10001594AC_CHECK_DECLS(MAXSYMLINKS, , , [
1595#include <sys/param.h>
1596 ])
1597
Darren Tuckerdca0edf2007-04-29 15:06:44 +10001598AC_CHECK_DECLS(offsetof, , , [
1599#include <stddef.h>
1600 ])
1601
Darren Tucker2a6b0292003-12-31 14:59:17 +11001602AC_CHECK_FUNCS(setresuid, [
1603 dnl Some platorms have setresuid that isn't implemented, test for this
1604 AC_MSG_CHECKING(if setresuid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001605 AC_RUN_IFELSE(
1606 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001607#include <stdlib.h>
1608#include <errno.h>
1609int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001610 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001611 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001612 [AC_DEFINE(BROKEN_SETRESUID, 1,
1613 [Define if your setresuid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001614 AC_MSG_RESULT(not implemented)],
1615 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001616 )
1617])
Darren Tuckere937be32003-12-17 18:53:26 +11001618
Darren Tucker2a6b0292003-12-31 14:59:17 +11001619AC_CHECK_FUNCS(setresgid, [
1620 dnl Some platorms have setresgid that isn't implemented, test for this
1621 AC_MSG_CHECKING(if setresgid seems to work)
Darren Tucker623d92f2004-09-12 22:36:15 +10001622 AC_RUN_IFELSE(
1623 [AC_LANG_SOURCE([[
Darren Tuckere937be32003-12-17 18:53:26 +11001624#include <stdlib.h>
1625#include <errno.h>
1626int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
Darren Tucker623d92f2004-09-12 22:36:15 +10001627 ]])],
Darren Tucker2a6b0292003-12-31 14:59:17 +11001628 [AC_MSG_RESULT(yes)],
Tim Rice7df8d392005-09-19 09:33:39 -07001629 [AC_DEFINE(BROKEN_SETRESGID, 1,
1630 [Define if your setresgid() is broken])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001631 AC_MSG_RESULT(not implemented)],
1632 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001633 )
1634])
Darren Tuckere937be32003-12-17 18:53:26 +11001635
Damien Millerad833b32000-08-23 10:46:23 +10001636dnl Checks for time functions
andre2ff7b5d2000-06-03 14:57:40 +00001637AC_CHECK_FUNCS(gettimeofday time)
Damien Millerad833b32000-08-23 10:46:23 +10001638dnl Checks for utmp functions
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001639AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
andre2ff7b5d2000-06-03 14:57:40 +00001640AC_CHECK_FUNCS(utmpname)
Damien Millerad833b32000-08-23 10:46:23 +10001641dnl Checks for utmpx functions
Darren Tucker261d93a2010-04-09 18:13:27 +10001642AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline getutxuser pututxline)
1643AC_CHECK_FUNCS(setutxdb setutxent utmpxname)
Damien Miller20e231f2009-02-12 13:12:21 +11001644dnl Checks for lastlog functions
1645AC_CHECK_FUNCS(getlastlogxbyname)
Damien Millercedfecc1999-11-15 14:36:53 +11001646
Damien Millera8e06ce2003-11-21 23:48:55 +11001647AC_CHECK_FUNC(daemon,
Tim Rice7df8d392005-09-19 09:33:39 -07001648 [AC_DEFINE(HAVE_DAEMON, 1, [Define if your libraries define daemon()])],
1649 [AC_CHECK_LIB(bsd, daemon,
1650 [LIBS="$LIBS -lbsd"; AC_DEFINE(HAVE_DAEMON)])]
Damien Miller04f80141999-11-19 15:32:34 +11001651)
1652
Damien Millera8e06ce2003-11-21 23:48:55 +11001653AC_CHECK_FUNC(getpagesize,
Tim Rice7df8d392005-09-19 09:33:39 -07001654 [AC_DEFINE(HAVE_GETPAGESIZE, 1,
1655 [Define if your libraries define getpagesize()])],
1656 [AC_CHECK_LIB(ucb, getpagesize,
1657 [LIBS="$LIBS -lucb"; AC_DEFINE(HAVE_GETPAGESIZE)])]
Damien Miller9fb07e42000-03-05 16:22:59 +11001658)
1659
Damien Millercb170cb2000-07-01 16:52:55 +10001660# Check for broken snprintf
1661if test "x$ac_cv_func_snprintf" = "xyes" ; then
1662 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001663 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10001664 [AC_LANG_SOURCE([[
Damien Millercb170cb2000-07-01 16:52:55 +10001665#include <stdio.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07001666int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
Darren Tucker623d92f2004-09-12 22:36:15 +10001667 ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001668 [AC_MSG_RESULT(yes)],
Damien Millercb170cb2000-07-01 16:52:55 +10001669 [
1670 AC_MSG_RESULT(no)
Tim Rice7df8d392005-09-19 09:33:39 -07001671 AC_DEFINE(BROKEN_SNPRINTF, 1,
1672 [Define if your snprintf is busted])
Damien Millercb170cb2000-07-01 16:52:55 +10001673 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001674 ],
1675 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
Damien Millercb170cb2000-07-01 16:52:55 +10001676 )
1677fi
1678
Damien Miller57f39152005-11-24 19:58:19 +11001679# If we don't have a working asprintf, then we strongly depend on vsnprintf
1680# returning the right thing on overflow: the number of characters it tried to
1681# create (as per SUSv3)
1682if test "x$ac_cv_func_asprintf" != "xyes" && \
1683 test "x$ac_cv_func_vsnprintf" = "xyes" ; then
1684 AC_MSG_CHECKING([whether vsnprintf returns correct values on overflow])
1685 AC_RUN_IFELSE(
1686 [AC_LANG_SOURCE([[
1687#include <sys/types.h>
1688#include <stdio.h>
1689#include <stdarg.h>
1690
1691int x_snprintf(char *str,size_t count,const char *fmt,...)
1692{
1693 size_t ret; va_list ap;
1694 va_start(ap, fmt); ret = vsnprintf(str, count, fmt, ap); va_end(ap);
1695 return ret;
1696}
1697int main(void)
1698{
1699 char x[1];
1700 exit(x_snprintf(x, 1, "%s %d", "hello", 12345) == 11 ? 0 : 1);
1701} ]])],
1702 [AC_MSG_RESULT(yes)],
1703 [
1704 AC_MSG_RESULT(no)
1705 AC_DEFINE(BROKEN_SNPRINTF, 1,
1706 [Define if your snprintf is busted])
1707 AC_MSG_WARN([****** Your vsnprintf() function is broken, complain to your vendor])
1708 ],
1709 [ AC_MSG_WARN([cross compiling: Assuming working vsnprintf()]) ]
1710 )
1711fi
1712
Darren Tuckerd40c66c2005-12-17 22:32:03 +11001713# On systems where [v]snprintf is broken, but is declared in stdio,
1714# check that the fmt argument is const char * or just char *.
1715# This is only useful for when BROKEN_SNPRINTF
1716AC_MSG_CHECKING([whether snprintf can declare const char *fmt])
1717AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
1718 int snprintf(char *a, size_t b, const char *c, ...) { return 0; }
1719 int main(void) { snprintf(0, 0, 0); }
1720 ]])],
1721 [AC_MSG_RESULT(yes)
1722 AC_DEFINE(SNPRINTF_CONST, [const],
1723 [Define as const if snprintf() can declare const char *fmt])],
1724 [AC_MSG_RESULT(no)
1725 AC_DEFINE(SNPRINTF_CONST, [/* not const */])])
1726
Damien Millerb4097182004-05-23 14:09:40 +10001727# Check for missing getpeereid (or equiv) support
1728NO_PEERCHECK=""
Darren Tucker164aa302007-03-21 21:39:57 +11001729if test "x$ac_cv_func_getpeereid" != "xyes" -a "x$ac_cv_func_getpeerucred" != "xyes"; then
Damien Millerb4097182004-05-23 14:09:40 +10001730 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
1731 AC_TRY_COMPILE(
1732 [#include <sys/types.h>
1733 #include <sys/socket.h>],
1734 [int i = SO_PEERCRED;],
Darren Tucker9d2562c2005-04-05 19:22:45 +10001735 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001736 AC_DEFINE(HAVE_SO_PEERCRED, 1, [Have PEERCRED socket option])
Darren Tucker9d2562c2005-04-05 19:22:45 +10001737 ],
Damien Millerb4097182004-05-23 14:09:40 +10001738 [AC_MSG_RESULT(no)
1739 NO_PEERCHECK=1]
1740 )
1741fi
1742
Damien Millere8328192003-01-07 15:18:32 +11001743dnl see whether mkstemp() requires XXXXXX
1744if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
1745AC_MSG_CHECKING([for (overly) strict mkstemp])
Darren Tucker314d89e2005-10-17 23:29:23 +10001746AC_RUN_IFELSE(
1747 [AC_LANG_SOURCE([[
Damien Millere8328192003-01-07 15:18:32 +11001748#include <stdlib.h>
1749main() { char template[]="conftest.mkstemp-test";
1750if (mkstemp(template) == -1)
1751 exit(1);
1752unlink(template); exit(0);
1753}
Darren Tucker314d89e2005-10-17 23:29:23 +10001754 ]])],
Damien Millere8328192003-01-07 15:18:32 +11001755 [
1756 AC_MSG_RESULT(no)
1757 ],
Damien Millera8e06ce2003-11-21 23:48:55 +11001758 [
Damien Millere8328192003-01-07 15:18:32 +11001759 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001760 AC_DEFINE(HAVE_STRICT_MKSTEMP, 1, [Silly mkstemp()])
Damien Millere8328192003-01-07 15:18:32 +11001761 ],
1762 [
1763 AC_MSG_RESULT(yes)
1764 AC_DEFINE(HAVE_STRICT_MKSTEMP)
Damien Millera8e06ce2003-11-21 23:48:55 +11001765 ]
Damien Millere8328192003-01-07 15:18:32 +11001766)
1767fi
1768
Darren Tucker70a3d552003-08-21 17:58:29 +10001769dnl make sure that openpty does not reacquire controlling terminal
1770if test ! -z "$check_for_openpty_ctty_bug"; then
1771 AC_MSG_CHECKING(if openpty correctly handles controlling tty)
Darren Tucker314d89e2005-10-17 23:29:23 +10001772 AC_RUN_IFELSE(
1773 [AC_LANG_SOURCE([[
Darren Tucker70a3d552003-08-21 17:58:29 +10001774#include <stdio.h>
1775#include <sys/fcntl.h>
1776#include <sys/types.h>
1777#include <sys/wait.h>
1778
1779int
1780main()
1781{
1782 pid_t pid;
1783 int fd, ptyfd, ttyfd, status;
1784
1785 pid = fork();
1786 if (pid < 0) { /* failed */
1787 exit(1);
1788 } else if (pid > 0) { /* parent */
1789 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +11001790 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +10001791 exit(WEXITSTATUS(status));
1792 else
1793 exit(2);
1794 } else { /* child */
1795 close(0); close(1); close(2);
1796 setsid();
1797 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
1798 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
1799 if (fd >= 0)
1800 exit(3); /* Acquired ctty: broken */
1801 else
1802 exit(0); /* Did not acquire ctty: OK */
1803 }
1804}
Darren Tucker314d89e2005-10-17 23:29:23 +10001805 ]])],
Darren Tucker70a3d552003-08-21 17:58:29 +10001806 [
1807 AC_MSG_RESULT(yes)
1808 ],
1809 [
1810 AC_MSG_RESULT(no)
1811 AC_DEFINE(SSHD_ACQUIRES_CTTY)
Darren Tucker314d89e2005-10-17 23:29:23 +10001812 ],
1813 [
1814 AC_MSG_RESULT(cross-compiling, assuming yes)
Darren Tucker70a3d552003-08-21 17:58:29 +10001815 ]
1816 )
1817fi
1818
Tim Rice8bb561b2005-03-17 16:23:19 -08001819if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1820 test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
Darren Tucker4398cf52004-04-06 21:39:02 +10001821 AC_MSG_CHECKING(if getaddrinfo seems to work)
Darren Tucker314d89e2005-10-17 23:29:23 +10001822 AC_RUN_IFELSE(
1823 [AC_LANG_SOURCE([[
Darren Tucker4398cf52004-04-06 21:39:02 +10001824#include <stdio.h>
1825#include <sys/socket.h>
1826#include <netdb.h>
1827#include <errno.h>
1828#include <netinet/in.h>
1829
1830#define TEST_PORT "2222"
1831
1832int
1833main(void)
1834{
1835 int err, sock;
1836 struct addrinfo *gai_ai, *ai, hints;
1837 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1838
1839 memset(&hints, 0, sizeof(hints));
1840 hints.ai_family = PF_UNSPEC;
1841 hints.ai_socktype = SOCK_STREAM;
1842 hints.ai_flags = AI_PASSIVE;
1843
1844 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1845 if (err != 0) {
1846 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1847 exit(1);
1848 }
1849
1850 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1851 if (ai->ai_family != AF_INET6)
1852 continue;
1853
1854 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1855 sizeof(ntop), strport, sizeof(strport),
1856 NI_NUMERICHOST|NI_NUMERICSERV);
1857
1858 if (err != 0) {
1859 if (err == EAI_SYSTEM)
1860 perror("getnameinfo EAI_SYSTEM");
1861 else
1862 fprintf(stderr, "getnameinfo failed: %s\n",
1863 gai_strerror(err));
1864 exit(2);
1865 }
1866
1867 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1868 if (sock < 0)
1869 perror("socket");
1870 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1871 if (errno == EBADF)
1872 exit(3);
1873 }
1874 }
1875 exit(0);
1876}
Darren Tucker314d89e2005-10-17 23:29:23 +10001877 ]])],
Darren Tucker4398cf52004-04-06 21:39:02 +10001878 [
1879 AC_MSG_RESULT(yes)
1880 ],
1881 [
1882 AC_MSG_RESULT(no)
1883 AC_DEFINE(BROKEN_GETADDRINFO)
Darren Tucker314d89e2005-10-17 23:29:23 +10001884 ],
1885 [
1886 AC_MSG_RESULT(cross-compiling, assuming yes)
Darren Tucker4398cf52004-04-06 21:39:02 +10001887 ]
1888 )
1889fi
1890
Tim Rice8bb561b2005-03-17 16:23:19 -08001891if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
1892 test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
Darren Tucker691d5232005-02-15 21:45:57 +11001893 AC_MSG_CHECKING(if getaddrinfo seems to work)
Darren Tucker314d89e2005-10-17 23:29:23 +10001894 AC_RUN_IFELSE(
1895 [AC_LANG_SOURCE([[
Darren Tucker691d5232005-02-15 21:45:57 +11001896#include <stdio.h>
1897#include <sys/socket.h>
1898#include <netdb.h>
1899#include <errno.h>
1900#include <netinet/in.h>
1901
1902#define TEST_PORT "2222"
1903
1904int
1905main(void)
1906{
1907 int err, sock;
1908 struct addrinfo *gai_ai, *ai, hints;
1909 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
1910
1911 memset(&hints, 0, sizeof(hints));
1912 hints.ai_family = PF_UNSPEC;
1913 hints.ai_socktype = SOCK_STREAM;
1914 hints.ai_flags = AI_PASSIVE;
1915
1916 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
1917 if (err != 0) {
1918 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
1919 exit(1);
1920 }
1921
1922 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
1923 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1924 continue;
1925
1926 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
1927 sizeof(ntop), strport, sizeof(strport),
1928 NI_NUMERICHOST|NI_NUMERICSERV);
1929
1930 if (ai->ai_family == AF_INET && err != 0) {
1931 perror("getnameinfo");
1932 exit(2);
1933 }
1934 }
1935 exit(0);
1936}
Darren Tucker314d89e2005-10-17 23:29:23 +10001937 ]])],
Darren Tucker691d5232005-02-15 21:45:57 +11001938 [
1939 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07001940 AC_DEFINE(AIX_GETNAMEINFO_HACK, 1,
1941 [Define if you have a getaddrinfo that fails
1942 for the all-zeros IPv6 address])
Darren Tucker691d5232005-02-15 21:45:57 +11001943 ],
1944 [
1945 AC_MSG_RESULT(no)
1946 AC_DEFINE(BROKEN_GETADDRINFO)
Darren Tucker314d89e2005-10-17 23:29:23 +10001947 ],
Darren Tucker8b272ab2006-06-27 11:20:28 +10001948 [
Darren Tucker314d89e2005-10-17 23:29:23 +10001949 AC_MSG_RESULT(cross-compiling, assuming no)
Darren Tucker691d5232005-02-15 21:45:57 +11001950 ]
1951 )
1952fi
1953
Darren Tuckera56f1912004-11-02 20:30:54 +11001954if test "x$check_for_conflicting_getspnam" = "x1"; then
1955 AC_MSG_CHECKING(for conflicting getspnam in shadow.h)
1956 AC_COMPILE_IFELSE(
1957 [
1958#include <shadow.h>
1959int main(void) {exit(0);}
1960 ],
1961 [
1962 AC_MSG_RESULT(no)
1963 ],
1964 [
1965 AC_MSG_RESULT(yes)
1966 AC_DEFINE(GETSPNAM_CONFLICTING_DEFS, 1,
1967 [Conflicting defs for getspnam])
1968 ]
1969 )
1970fi
1971
Damien Miller606f8802000-09-16 15:39:56 +11001972AC_FUNC_GETPGRP
1973
Tim Riceaef73712002-05-11 13:17:42 -07001974# Search for OpenSSL
1975saved_CPPFLAGS="$CPPFLAGS"
1976saved_LDFLAGS="$LDFLAGS"
Damien Millera22ba012000-03-02 23:09:20 +11001977AC_ARG_WITH(ssl-dir,
1978 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
1979 [
Ben Lindstrom23e13712000-10-29 22:49:19 +00001980 if test "x$withval" != "xno" ; then
Darren Tuckerc7e38d52005-02-09 22:12:30 +11001981 case "$withval" in
1982 # Relative paths
1983 ./*|../*) withval="`pwd`/$withval"
1984 esac
Tim Riceaef73712002-05-11 13:17:42 -07001985 if test -d "$withval/lib"; then
1986 if test -n "${need_dash_r}"; then
1987 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1988 else
1989 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1990 fi
Darren Tucker9f8703b2010-04-23 11:12:06 +10001991 elif test -d "$withval/lib64"; then
1992 if test -n "${need_dash_r}"; then
1993 LDFLAGS="-L${withval}/lib64 -R${withval}/lib64 ${LDFLAGS}"
1994 else
1995 LDFLAGS="-L${withval}/lib64 ${LDFLAGS}"
1996 fi
Tim Riceaef73712002-05-11 13:17:42 -07001997 else
1998 if test -n "${need_dash_r}"; then
1999 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
2000 else
2001 LDFLAGS="-L${withval} ${LDFLAGS}"
2002 fi
2003 fi
2004 if test -d "$withval/include"; then
2005 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
2006 else
2007 CPPFLAGS="-I${withval} ${CPPFLAGS}"
2008 fi
Damien Millera22ba012000-03-02 23:09:20 +11002009 fi
2010 ]
2011)
Tim Rice3d5352e2004-02-12 09:27:21 -08002012LIBS="-lcrypto $LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07002013AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL, 1,
2014 [Define if your ssl headers are included
2015 with #include <openssl/header.h>]),
Damien Miller3b512e12000-05-17 23:29:18 +10002016 [
Tim Riceaef73712002-05-11 13:17:42 -07002017 dnl Check default openssl install dir
2018 if test -n "${need_dash_r}"; then
2019 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10002020 else
Tim Riceaef73712002-05-11 13:17:42 -07002021 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
Damien Miller3b512e12000-05-17 23:29:18 +10002022 fi
Tim Riceaef73712002-05-11 13:17:42 -07002023 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
Darren Tucker83d8f282009-08-17 09:35:22 +10002024 AC_CHECK_HEADER([openssl/opensslv.h], ,
2025 AC_MSG_ERROR([*** OpenSSL headers missing - please install first or check config.log ***]))
Tim Riceaef73712002-05-11 13:17:42 -07002026 AC_TRY_LINK_FUNC(RAND_add, AC_DEFINE(HAVE_OPENSSL),
2027 [
2028 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
2029 ]
2030 )
2031 ]
2032)
2033
Tim Riced730b782002-08-13 18:52:10 -07002034# Determine OpenSSL header version
2035AC_MSG_CHECKING([OpenSSL header version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002036AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002037 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07002038#include <stdio.h>
2039#include <string.h>
2040#include <openssl/opensslv.h>
2041#define DATA "conftest.sslincver"
2042int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11002043 FILE *fd;
2044 int rc;
Tim Riced730b782002-08-13 18:52:10 -07002045
Damien Millera8e06ce2003-11-21 23:48:55 +11002046 fd = fopen(DATA,"w");
2047 if(fd == NULL)
2048 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07002049
2050 if ((rc = fprintf(fd ,"%x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0)
2051 exit(1);
2052
2053 exit(0);
2054}
Darren Tucker623d92f2004-09-12 22:36:15 +10002055 ]])],
Tim Riced730b782002-08-13 18:52:10 -07002056 [
2057 ssl_header_ver=`cat conftest.sslincver`
2058 AC_MSG_RESULT($ssl_header_ver)
2059 ],
2060 [
2061 AC_MSG_RESULT(not found)
2062 AC_MSG_ERROR(OpenSSL version header not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10002063 ],
2064 [
2065 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07002066 ]
2067)
2068
2069# Determine OpenSSL library version
2070AC_MSG_CHECKING([OpenSSL library version])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002071AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002072 [AC_LANG_SOURCE([[
Tim Riced730b782002-08-13 18:52:10 -07002073#include <stdio.h>
2074#include <string.h>
2075#include <openssl/opensslv.h>
2076#include <openssl/crypto.h>
2077#define DATA "conftest.ssllibver"
2078int main(void) {
Damien Millera8e06ce2003-11-21 23:48:55 +11002079 FILE *fd;
2080 int rc;
Tim Riced730b782002-08-13 18:52:10 -07002081
Damien Millera8e06ce2003-11-21 23:48:55 +11002082 fd = fopen(DATA,"w");
2083 if(fd == NULL)
2084 exit(1);
Tim Riced730b782002-08-13 18:52:10 -07002085
2086 if ((rc = fprintf(fd ,"%x (%s)\n", SSLeay(), SSLeay_version(SSLEAY_VERSION))) <0)
2087 exit(1);
2088
2089 exit(0);
2090}
Darren Tucker623d92f2004-09-12 22:36:15 +10002091 ]])],
Tim Riced730b782002-08-13 18:52:10 -07002092 [
2093 ssl_library_ver=`cat conftest.ssllibver`
2094 AC_MSG_RESULT($ssl_library_ver)
2095 ],
2096 [
2097 AC_MSG_RESULT(not found)
2098 AC_MSG_ERROR(OpenSSL library not found.)
Darren Tuckera0c2b392004-09-11 23:26:37 +10002099 ],
2100 [
2101 AC_MSG_WARN([cross compiling: not checking])
Tim Riced730b782002-08-13 18:52:10 -07002102 ]
2103)
Damien Millera22ba012000-03-02 23:09:20 +11002104
Damien Miller9975e482007-03-05 11:51:27 +11002105AC_ARG_WITH(openssl-header-check,
2106 [ --without-openssl-header-check Disable OpenSSL version consistency check],
2107 [ if test "x$withval" = "xno" ; then
2108 openssl_check_nonfatal=1
2109 fi
2110 ]
2111)
2112
Damien Millerec932372002-01-22 22:16:03 +11002113# Sanity check OpenSSL headers
2114AC_MSG_CHECKING([whether OpenSSL's headers match the library])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002115AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002116 [AC_LANG_SOURCE([[
Damien Millerec932372002-01-22 22:16:03 +11002117#include <string.h>
2118#include <openssl/opensslv.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07002119int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10002120 ]])],
Damien Millerec932372002-01-22 22:16:03 +11002121 [
2122 AC_MSG_RESULT(yes)
2123 ],
2124 [
2125 AC_MSG_RESULT(no)
Damien Miller9975e482007-03-05 11:51:27 +11002126 if test "x$openssl_check_nonfatal" = "x"; then
2127 AC_MSG_ERROR([Your OpenSSL headers do not match your
2128library. Check config.log for details.
2129If you are sure your installation is consistent, you can disable the check
2130by running "./configure --without-openssl-header-check".
2131Also see contrib/findssl.sh for help identifying header/library mismatches.
2132])
2133 else
2134 AC_MSG_WARN([Your OpenSSL headers do not match your
2135library. Check config.log for details.
Darren Tuckera0472e02003-06-24 20:22:09 +10002136Also see contrib/findssl.sh for help identifying header/library mismatches.])
Damien Miller9975e482007-03-05 11:51:27 +11002137 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10002138 ],
2139 [
2140 AC_MSG_WARN([cross compiling: not checking])
Damien Millerec932372002-01-22 22:16:03 +11002141 ]
2142)
2143
Darren Tucker639bbe82006-08-20 20:17:53 +10002144AC_MSG_CHECKING([if programs using OpenSSL functions will link])
2145AC_LINK_IFELSE(
2146 [AC_LANG_SOURCE([[
2147#include <openssl/evp.h>
2148int main(void) { SSLeay_add_all_algorithms(); }
2149 ]])],
2150 [
2151 AC_MSG_RESULT(yes)
2152 ],
2153 [
2154 AC_MSG_RESULT(no)
2155 saved_LIBS="$LIBS"
2156 LIBS="$LIBS -ldl"
2157 AC_MSG_CHECKING([if programs using OpenSSL need -ldl])
2158 AC_LINK_IFELSE(
2159 [AC_LANG_SOURCE([[
2160#include <openssl/evp.h>
2161int main(void) { SSLeay_add_all_algorithms(); }
2162 ]])],
2163 [
2164 AC_MSG_RESULT(yes)
2165 ],
2166 [
2167 AC_MSG_RESULT(no)
2168 LIBS="$saved_LIBS"
2169 ]
2170 )
2171 ]
2172)
2173
Darren Tuckerebdef762010-12-04 23:20:50 +11002174AC_CHECK_FUNCS(RSA_generate_key_ex DSA_generate_parameters_ex BN_is_prime_ex)
2175
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002176AC_ARG_WITH(ssl-engine,
2177 [ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
2178 [ if test "x$withval" != "xno" ; then
2179 AC_MSG_CHECKING(for OpenSSL ENGINE support)
2180 AC_TRY_COMPILE(
2181 [ #include <openssl/engine.h>],
2182 [
Darren Tucker5e8381e2006-09-29 20:16:51 +10002183ENGINE_load_builtin_engines();ENGINE_register_all_complete();
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002184 ],
2185 [ AC_MSG_RESULT(yes)
2186 AC_DEFINE(USE_OPENSSL_ENGINE, 1,
2187 [Enable OpenSSL engine support])
2188 ],
2189 [ AC_MSG_ERROR(OpenSSL ENGINE support not found)]
2190 )
2191 fi ]
2192)
2193
Darren Tucker129d0bb2005-12-19 17:40:40 +11002194# Check for OpenSSL without EVP_aes_{192,256}_cbc
2195AC_MSG_CHECKING([whether OpenSSL has crippled AES support])
Darren Tuckerf1f4bdd2006-08-04 19:44:23 +10002196AC_LINK_IFELSE(
Darren Tucker129d0bb2005-12-19 17:40:40 +11002197 [AC_LANG_SOURCE([[
2198#include <string.h>
2199#include <openssl/evp.h>
Darren Tuckercc7c2122006-02-02 18:44:19 +11002200int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);}
Darren Tucker129d0bb2005-12-19 17:40:40 +11002201 ]])],
2202 [
2203 AC_MSG_RESULT(no)
2204 ],
2205 [
2206 AC_MSG_RESULT(yes)
2207 AC_DEFINE(OPENSSL_LOBOTOMISED_AES, 1,
2208 [libcrypto is missing AES 192 and 256 bit functions])
2209 ]
2210)
2211
Darren Tucker3e7e15f2009-03-07 22:22:35 +11002212AC_MSG_CHECKING([if EVP_DigestUpdate returns an int])
2213AC_LINK_IFELSE(
2214 [AC_LANG_SOURCE([[
2215#include <string.h>
2216#include <openssl/evp.h>
2217int main(void) { if(EVP_DigestUpdate(NULL, NULL,0)) exit(0); }
2218 ]])],
2219 [
2220 AC_MSG_RESULT(yes)
2221 ],
2222 [
2223 AC_MSG_RESULT(no)
2224 AC_DEFINE(OPENSSL_EVP_DIGESTUPDATE_VOID, 1,
2225 [Define if EVP_DigestUpdate returns void])
2226 ]
2227)
2228
Tim Rice3d5352e2004-02-12 09:27:21 -08002229# Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
2230# because the system crypt() is more featureful.
2231if test "x$check_for_libcrypt_before" = "x1"; then
2232 AC_CHECK_LIB(crypt, crypt)
2233fi
2234
Damien Millera8e06ce2003-11-21 23:48:55 +11002235# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
Tim Rice43fa5572004-02-11 14:46:40 -08002236# version in OpenSSL.
Damien Miller4f9f42a2003-05-10 19:28:02 +10002237if test "x$check_for_libcrypt_later" = "x1"; then
Damien Miller95aa2d62001-03-01 09:16:11 +11002238 AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
Damien Millera64b57a2001-01-17 10:44:13 +11002239fi
2240
Damien Milleraf87af12006-03-15 13:02:28 +11002241# Search for SHA256 support in libc and/or OpenSSL
Darren Tucker50c61f82011-01-16 18:28:09 +11002242AC_CHECK_FUNCS(SHA256_Update EVP_sha256, [TEST_SSH_SHA256=yes],
2243 [TEST_SSH_SHA256=no])
2244AC_SUBST(TEST_SSH_SHA256)
Damien Milleraf87af12006-03-15 13:02:28 +11002245
Damien Miller6af914a2010-09-10 11:39:26 +10002246# Check complete ECC support in OpenSSL
2247AC_MSG_CHECKING([whether OpenSSL has complete ECC support])
2248AC_LINK_IFELSE(
2249 [AC_LANG_SOURCE([[
2250#include <openssl/ec.h>
2251#include <openssl/evp.h>
2252#include <openssl/objects.h>
2253int main(void) {
2254 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1);
2255 const EVP_MD *m = EVP_sha512(); /* We need this too */
2256}
2257 ]])],
2258 [
2259 AC_MSG_RESULT(yes)
2260 AC_DEFINE(OPENSSL_HAS_ECC, 1,
2261 [libcrypto includes complete ECC support])
Darren Tuckereab5f0d2010-11-05 18:23:38 +11002262 TEST_SSH_ECC=yes
Tim Rice9b87a5c2011-01-12 22:35:43 -08002263 COMMENT_OUT_ECC=""
Damien Miller6af914a2010-09-10 11:39:26 +10002264 ],
2265 [
2266 AC_MSG_RESULT(no)
Darren Tuckereab5f0d2010-11-05 18:23:38 +11002267 TEST_SSH_ECC=no
Tim Rice9b87a5c2011-01-12 22:35:43 -08002268 COMMENT_OUT_ECC="#no ecc#"
Damien Miller6af914a2010-09-10 11:39:26 +10002269 ]
2270)
Darren Tuckereab5f0d2010-11-05 18:23:38 +11002271AC_SUBST(TEST_SSH_ECC)
Tim Rice9b87a5c2011-01-12 22:35:43 -08002272AC_SUBST(COMMENT_OUT_ECC)
Damien Miller6af914a2010-09-10 11:39:26 +10002273
Tim Rice99203ec2007-03-26 09:35:28 -07002274saved_LIBS="$LIBS"
2275AC_CHECK_LIB(iaf, ia_openinfo, [
2276 LIBS="$LIBS -liaf"
Tim Rice0eeaf122007-09-10 16:24:17 -07002277 AC_CHECK_FUNCS(set_id, [SSHDLIBS="$SSHDLIBS -liaf"
2278 AC_DEFINE(HAVE_LIBIAF, 1,
2279 [Define if system has libiaf that supports set_id])
2280 ])
Tim Rice99203ec2007-03-26 09:35:28 -07002281])
2282LIBS="$saved_LIBS"
Damien Miller6c21c512002-01-22 21:57:53 +11002283
2284### Configure cryptographic random number support
2285
2286# Check wheter OpenSSL seeds itself
2287AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002288AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10002289 [AC_LANG_SOURCE([[
Damien Miller6c21c512002-01-22 21:57:53 +11002290#include <string.h>
2291#include <openssl/rand.h>
Tim Rice2c961ce2002-09-23 16:54:10 -07002292int main(void) { exit(RAND_status() == 1 ? 0 : 1); }
Darren Tucker623d92f2004-09-12 22:36:15 +10002293 ]])],
Damien Miller6c21c512002-01-22 21:57:53 +11002294 [
2295 OPENSSL_SEEDS_ITSELF=yes
2296 AC_MSG_RESULT(yes)
2297 ],
2298 [
2299 AC_MSG_RESULT(no)
2300 # Default to use of the rand helper if OpenSSL doesn't
2301 # seed itself
2302 USE_RAND_HELPER=yes
Darren Tuckera0c2b392004-09-11 23:26:37 +10002303 ],
2304 [
2305 AC_MSG_WARN([cross compiling: assuming yes])
2306 # This is safe, since all recent OpenSSL versions will
Tim Riceeae17cc2005-03-17 16:52:20 -08002307 # complain at runtime if not seeded correctly.
Darren Tuckera0c2b392004-09-11 23:26:37 +10002308 OPENSSL_SEEDS_ITSELF=yes
Damien Miller6c21c512002-01-22 21:57:53 +11002309 ]
2310)
2311
Darren Tucker3e6bde42006-08-20 20:03:50 +10002312# Check for PAM libs
2313PAM_MSG="no"
2314AC_ARG_WITH(pam,
2315 [ --with-pam Enable PAM support ],
2316 [
2317 if test "x$withval" != "xno" ; then
2318 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
2319 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
2320 AC_MSG_ERROR([PAM headers not found])
2321 fi
2322
2323 saved_LIBS="$LIBS"
2324 AC_CHECK_LIB(dl, dlopen, , )
2325 AC_CHECK_LIB(pam, pam_set_item, , AC_MSG_ERROR([*** libpam missing]))
2326 AC_CHECK_FUNCS(pam_getenvlist)
2327 AC_CHECK_FUNCS(pam_putenv)
2328 LIBS="$saved_LIBS"
2329
2330 PAM_MSG="yes"
2331
Darren Tucker20e9f972007-03-25 18:26:01 +10002332 SSHDLIBS="$SSHDLIBS -lpam"
Darren Tucker3e6bde42006-08-20 20:03:50 +10002333 AC_DEFINE(USE_PAM, 1,
2334 [Define if you want to enable PAM support])
Darren Tucker639bbe82006-08-20 20:17:53 +10002335
Darren Tucker3e6bde42006-08-20 20:03:50 +10002336 if test $ac_cv_lib_dl_dlopen = yes; then
Darren Tucker639bbe82006-08-20 20:17:53 +10002337 case "$LIBS" in
2338 *-ldl*)
2339 # libdl already in LIBS
2340 ;;
2341 *)
Darren Tucker20e9f972007-03-25 18:26:01 +10002342 SSHDLIBS="$SSHDLIBS -ldl"
Darren Tucker639bbe82006-08-20 20:17:53 +10002343 ;;
2344 esac
Darren Tucker3e6bde42006-08-20 20:03:50 +10002345 fi
Darren Tucker3e6bde42006-08-20 20:03:50 +10002346 fi
2347 ]
2348)
2349
2350# Check for older PAM
2351if test "x$PAM_MSG" = "xyes" ; then
2352 # Check PAM strerror arguments (old PAM)
2353 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
2354 AC_TRY_COMPILE(
2355 [
2356#include <stdlib.h>
2357#if defined(HAVE_SECURITY_PAM_APPL_H)
2358#include <security/pam_appl.h>
2359#elif defined (HAVE_PAM_PAM_APPL_H)
2360#include <pam/pam_appl.h>
2361#endif
2362 ],
2363 [(void)pam_strerror((pam_handle_t *)NULL, -1);],
2364 [AC_MSG_RESULT(no)],
2365 [
2366 AC_DEFINE(HAVE_OLD_PAM, 1,
2367 [Define if you have an old version of PAM
2368 which takes only one argument to pam_strerror])
2369 AC_MSG_RESULT(yes)
2370 PAM_MSG="yes (old library)"
2371 ]
2372 )
2373fi
Damien Miller6c21c512002-01-22 21:57:53 +11002374
2375# Do we want to force the use of the rand helper?
2376AC_ARG_WITH(rand-helper,
2377 [ --with-rand-helper Use subprocess to gather strong randomness ],
2378 [
2379 if test "x$withval" = "xno" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11002380 # Force use of OpenSSL's internal RNG, even if
Damien Miller6c21c512002-01-22 21:57:53 +11002381 # the previous test showed it to be unseeded.
2382 if test -z "$OPENSSL_SEEDS_ITSELF" ; then
2383 AC_MSG_WARN([*** Forcing use of OpenSSL's non-self-seeding PRNG])
2384 OPENSSL_SEEDS_ITSELF=yes
2385 USE_RAND_HELPER=""
2386 fi
2387 else
2388 USE_RAND_HELPER=yes
2389 fi
2390 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08002391)
Damien Miller6c21c512002-01-22 21:57:53 +11002392
2393# Which randomness source do we use?
Tim Rice8bb561b2005-03-17 16:23:19 -08002394if test ! -z "$OPENSSL_SEEDS_ITSELF" && test -z "$USE_RAND_HELPER" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002395 # OpenSSL only
Tim Rice7df8d392005-09-19 09:33:39 -07002396 AC_DEFINE(OPENSSL_PRNG_ONLY, 1,
2397 [Define if you want OpenSSL's internally seeded PRNG only])
Damien Miller6c21c512002-01-22 21:57:53 +11002398 RAND_MSG="OpenSSL internal ONLY"
2399 INSTALL_SSH_RAND_HELPER=""
Tim Rice1e2c6002002-01-30 22:14:03 -08002400elif test ! -z "$USE_RAND_HELPER" ; then
2401 # install rand helper
Damien Miller6c21c512002-01-22 21:57:53 +11002402 RAND_MSG="ssh-rand-helper"
2403 INSTALL_SSH_RAND_HELPER="yes"
2404fi
2405AC_SUBST(INSTALL_SSH_RAND_HELPER)
2406
2407### Configuration of ssh-rand-helper
2408
2409# PRNGD TCP socket
2410AC_ARG_WITH(prngd-port,
2411 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
2412 [
Damien Millere996d722002-01-23 11:20:59 +11002413 case "$withval" in
2414 no)
2415 withval=""
2416 ;;
2417 [[0-9]]*)
2418 ;;
2419 *)
2420 AC_MSG_ERROR(You must specify a numeric port number for --with-prngd-port)
2421 ;;
2422 esac
2423 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002424 PRNGD_PORT="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07002425 AC_DEFINE_UNQUOTED(PRNGD_PORT, $PRNGD_PORT,
2426 [Port number of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11002427 fi
2428 ]
2429)
2430
2431# PRNGD Unix domain socket
2432AC_ARG_WITH(prngd-socket,
2433 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
2434 [
Damien Millere996d722002-01-23 11:20:59 +11002435 case "$withval" in
2436 yes)
Damien Miller6c21c512002-01-22 21:57:53 +11002437 withval="/var/run/egd-pool"
Damien Millere996d722002-01-23 11:20:59 +11002438 ;;
2439 no)
2440 withval=""
2441 ;;
2442 /*)
2443 ;;
2444 *)
2445 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
2446 ;;
2447 esac
2448
2449 if test ! -z "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002450 if test ! -z "$PRNGD_PORT" ; then
2451 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
2452 fi
Damien Miller6385ba02002-01-23 08:12:36 +11002453 if test ! -r "$withval" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11002454 AC_MSG_WARN(Entropy socket is not readable)
2455 fi
2456 PRNGD_SOCKET="$withval"
Tim Rice7df8d392005-09-19 09:33:39 -07002457 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET",
2458 [Location of PRNGD/EGD random number socket])
Damien Miller6c21c512002-01-22 21:57:53 +11002459 fi
Tim Rice4cec93f2002-02-26 08:40:48 -08002460 ],
2461 [
2462 # Check for existing socket only if we don't have a random device already
2463 if test "$USE_RAND_HELPER" = yes ; then
2464 AC_MSG_CHECKING(for PRNGD/EGD socket)
2465 # Insert other locations here
2466 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
2467 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
2468 PRNGD_SOCKET="$sock"
2469 AC_DEFINE_UNQUOTED(PRNGD_SOCKET, "$PRNGD_SOCKET")
2470 break;
2471 fi
2472 done
2473 if test ! -z "$PRNGD_SOCKET" ; then
2474 AC_MSG_RESULT($PRNGD_SOCKET)
2475 else
2476 AC_MSG_RESULT(not found)
2477 fi
2478 fi
Damien Miller6c21c512002-01-22 21:57:53 +11002479 ]
2480)
2481
2482# Change default command timeout for hashing entropy source
2483entropy_timeout=200
2484AC_ARG_WITH(entropy-timeout,
2485 [ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
2486 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002487 if test -n "$withval" && test "x$withval" != "xno" && \
2488 test "x${withval}" != "xyes"; then
Damien Miller6c21c512002-01-22 21:57:53 +11002489 entropy_timeout=$withval
2490 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08002491 ]
Damien Miller6c21c512002-01-22 21:57:53 +11002492)
Tim Rice7df8d392005-09-19 09:33:39 -07002493AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout,
2494 [Builtin PRNG command timeout])
Damien Miller6c21c512002-01-22 21:57:53 +11002495
Damien Millerd3f6ad22002-06-25 10:24:47 +10002496SSH_PRIVSEP_USER=sshd
Kevin Steves7ff91122002-04-07 19:22:54 +00002497AC_ARG_WITH(privsep-user,
Kevin Stevesc81e1292002-05-13 03:51:40 +00002498 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00002499 [
Tim Rice35cc69d2005-03-17 16:44:25 -08002500 if test -n "$withval" && test "x$withval" != "xno" && \
2501 test "x${withval}" != "xyes"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10002502 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00002503 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08002504 ]
Kevin Steves7ff91122002-04-07 19:22:54 +00002505)
Tim Rice7df8d392005-09-19 09:33:39 -07002506AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER",
2507 [non-privileged user for privilege separation])
Damien Millerd3f6ad22002-06-25 10:24:47 +10002508AC_SUBST(SSH_PRIVSEP_USER)
Kevin Steves7ff91122002-04-07 19:22:54 +00002509
Tim Rice88f2ab52002-03-17 12:17:34 -08002510# We do this little dance with the search path to insure
2511# that programs that we select for use by installed programs
2512# (which may be run by the super-user) come from trusted
2513# locations before they come from the user's private area.
2514# This should help avoid accidentally configuring some
2515# random version of a program in someone's personal bin.
2516
2517OPATH=$PATH
2518PATH=/bin:/usr/bin
Tim Riceae49fe62002-04-12 10:26:21 -07002519test -h /bin 2> /dev/null && PATH=/usr/bin
Tim Rice88f2ab52002-03-17 12:17:34 -08002520test -d /sbin && PATH=$PATH:/sbin
2521test -d /usr/sbin && PATH=$PATH:/usr/sbin
2522PATH=$PATH:/etc:$OPATH
2523
Damien Millera8e06ce2003-11-21 23:48:55 +11002524# These programs are used by the command hashing source to gather entropy
Damien Miller6c21c512002-01-22 21:57:53 +11002525OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
2526OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
2527OSSH_PATH_ENTROPY_PROG(PROG_ARP, arp)
2528OSSH_PATH_ENTROPY_PROG(PROG_IFCONFIG, ifconfig)
2529OSSH_PATH_ENTROPY_PROG(PROG_JSTAT, jstat)
2530OSSH_PATH_ENTROPY_PROG(PROG_PS, ps)
2531OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar)
2532OSSH_PATH_ENTROPY_PROG(PROG_W, w)
2533OSSH_PATH_ENTROPY_PROG(PROG_WHO, who)
2534OSSH_PATH_ENTROPY_PROG(PROG_LAST, last)
2535OSSH_PATH_ENTROPY_PROG(PROG_LASTLOG, lastlog)
2536OSSH_PATH_ENTROPY_PROG(PROG_DF, df)
2537OSSH_PATH_ENTROPY_PROG(PROG_VMSTAT, vmstat)
2538OSSH_PATH_ENTROPY_PROG(PROG_UPTIME, uptime)
2539OSSH_PATH_ENTROPY_PROG(PROG_IPCS, ipcs)
2540OSSH_PATH_ENTROPY_PROG(PROG_TAIL, tail)
Tim Rice88f2ab52002-03-17 12:17:34 -08002541# restore PATH
2542PATH=$OPATH
Damien Miller6c21c512002-01-22 21:57:53 +11002543
2544# Where does ssh-rand-helper get its randomness from?
2545INSTALL_SSH_PRNG_CMDS=""
2546if test ! -z "$INSTALL_SSH_RAND_HELPER" ; then
2547 if test ! -z "$PRNGD_PORT" ; then
2548 RAND_HELPER_MSG="TCP localhost:$PRNGD_PORT"
2549 elif test ! -z "$PRNGD_SOCKET" ; then
2550 RAND_HELPER_MSG="Unix domain socket \"$PRNGD_SOCKET\""
2551 else
2552 RAND_HELPER_MSG="Command hashing (timeout $entropy_timeout)"
2553 RAND_HELPER_CMDHASH=yes
2554 INSTALL_SSH_PRNG_CMDS="yes"
2555 fi
2556fi
2557AC_SUBST(INSTALL_SSH_PRNG_CMDS)
2558
2559
Ben Lindstromb5628642000-10-18 00:02:25 +00002560# Cheap hack to ensure NEWS-OS libraries are arranged right.
2561if test ! -z "$SONY" ; then
2562 LIBS="$LIBS -liberty";
2563fi
2564
Damien Miller57f39152005-11-24 19:58:19 +11002565# Check for long long datatypes
2566AC_CHECK_TYPES([long long, unsigned long long, long double])
2567
2568# Check datatype sizes
Damien Millere0f45742000-01-18 09:12:06 +11002569AC_CHECK_SIZEOF(char, 1)
Damien Millerc6398ef1999-11-20 12:18:40 +11002570AC_CHECK_SIZEOF(short int, 2)
2571AC_CHECK_SIZEOF(int, 4)
2572AC_CHECK_SIZEOF(long int, 4)
2573AC_CHECK_SIZEOF(long long int, 8)
2574
Damien Millerfa2bb692002-04-23 23:22:25 +10002575# Sanity check long long for some platforms (AIX)
2576if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
2577 ac_cv_sizeof_long_long_int=0
2578fi
2579
Darren Tucker537f1ed2005-10-25 18:38:33 +10002580# compute LLONG_MIN and LLONG_MAX if we don't know them.
2581if test -z "$have_llong_max"; then
2582 AC_MSG_CHECKING([for max value of long long])
2583 AC_RUN_IFELSE(
2584 [AC_LANG_SOURCE([[
2585#include <stdio.h>
2586/* Why is this so damn hard? */
2587#ifdef __GNUC__
2588# undef __GNUC__
2589#endif
2590#define __USE_ISOC99
2591#include <limits.h>
2592#define DATA "conftest.llminmax"
Darren Tuckerd1450db2006-03-13 19:06:51 +11002593#define my_abs(a) ((a) < 0 ? ((a) * -1) : (a))
2594
2595/*
2596 * printf in libc on some platforms (eg old Tru64) does not understand %lld so
2597 * we do this the hard way.
2598 */
2599static int
2600fprint_ll(FILE *f, long long n)
2601{
2602 unsigned int i;
2603 int l[sizeof(long long) * 8];
2604
2605 if (n < 0)
2606 if (fprintf(f, "-") < 0)
2607 return -1;
2608 for (i = 0; n != 0; i++) {
2609 l[i] = my_abs(n % 10);
2610 n /= 10;
2611 }
2612 do {
2613 if (fprintf(f, "%d", l[--i]) < 0)
2614 return -1;
2615 } while (i != 0);
2616 if (fprintf(f, " ") < 0)
2617 return -1;
2618 return 0;
2619}
2620
Darren Tucker537f1ed2005-10-25 18:38:33 +10002621int main(void) {
2622 FILE *f;
2623 long long i, llmin, llmax = 0;
2624
2625 if((f = fopen(DATA,"w")) == NULL)
2626 exit(1);
2627
2628#if defined(LLONG_MIN) && defined(LLONG_MAX)
2629 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
2630 llmin = LLONG_MIN;
2631 llmax = LLONG_MAX;
2632#else
2633 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n");
2634 /* This will work on one's complement and two's complement */
2635 for (i = 1; i > llmax; i <<= 1, i++)
2636 llmax = i;
2637 llmin = llmax + 1LL; /* wrap */
2638#endif
2639
2640 /* Sanity check */
2641 if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
Darren Tuckerd1450db2006-03-13 19:06:51 +11002642 || llmax - 1 > llmax || llmin == llmax || llmin == 0
2643 || llmax == 0 || llmax < LONG_MAX || llmin > LONG_MIN) {
Darren Tucker537f1ed2005-10-25 18:38:33 +10002644 fprintf(f, "unknown unknown\n");
2645 exit(2);
2646 }
2647
Darren Tuckerd1450db2006-03-13 19:06:51 +11002648 if (fprint_ll(f, llmin) < 0)
Darren Tucker537f1ed2005-10-25 18:38:33 +10002649 exit(3);
Darren Tuckerd1450db2006-03-13 19:06:51 +11002650 if (fprint_ll(f, llmax) < 0)
2651 exit(4);
2652 if (fclose(f) < 0)
2653 exit(5);
Darren Tucker537f1ed2005-10-25 18:38:33 +10002654 exit(0);
2655}
2656 ]])],
2657 [
2658 llong_min=`$AWK '{print $1}' conftest.llminmax`
2659 llong_max=`$AWK '{print $2}' conftest.llminmax`
2660
Darren Tucker537f1ed2005-10-25 18:38:33 +10002661 AC_MSG_RESULT($llong_max)
2662 AC_DEFINE_UNQUOTED(LLONG_MAX, [${llong_max}LL],
2663 [max value of long long calculated by configure])
2664 AC_MSG_CHECKING([for min value of long long])
2665 AC_MSG_RESULT($llong_min)
2666 AC_DEFINE_UNQUOTED(LLONG_MIN, [${llong_min}LL],
2667 [min value of long long calculated by configure])
2668 ],
2669 [
2670 AC_MSG_RESULT(not found)
2671 ],
2672 [
2673 AC_MSG_WARN([cross compiling: not checking])
2674 ]
2675 )
2676fi
2677
2678
Damien Millera22ba012000-03-02 23:09:20 +11002679# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11002680AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
2681 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002682 [ #include <sys/types.h> ],
2683 [ u_int a; a = 1;],
Damien Millercaf6dd62000-08-29 11:33:50 +11002684 [ ac_cv_have_u_int="yes" ],
2685 [ ac_cv_have_u_int="no" ]
2686 )
2687])
2688if test "x$ac_cv_have_u_int" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002689 AC_DEFINE(HAVE_U_INT, 1, [define if you have u_int data type])
Damien Millercaf6dd62000-08-29 11:33:50 +11002690 have_u_int=1
2691fi
2692
Damien Miller61e50f12000-05-08 20:49:37 +10002693AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
2694 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002695 [ #include <sys/types.h> ],
2696 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002697 [ ac_cv_have_intxx_t="yes" ],
2698 [ ac_cv_have_intxx_t="no" ]
2699 )
2700])
2701if test "x$ac_cv_have_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002702 AC_DEFINE(HAVE_INTXX_T, 1, [define if you have intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002703 have_intxx_t=1
2704fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002705
2706if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002707 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002708then
2709 AC_MSG_CHECKING([for intXX_t types in stdint.h])
2710 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002711 [ #include <stdint.h> ],
2712 [ int8_t a; int16_t b; int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002713 [
2714 AC_DEFINE(HAVE_INTXX_T)
2715 AC_MSG_RESULT(yes)
2716 ],
2717 [ AC_MSG_RESULT(no) ]
2718 )
2719fi
2720
Damien Miller578783e2000-09-23 14:12:24 +11002721AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
2722 AC_TRY_COMPILE(
Tim Rice907881e2002-07-18 11:44:50 -07002723 [
2724#include <sys/types.h>
2725#ifdef HAVE_STDINT_H
2726# include <stdint.h>
2727#endif
2728#include <sys/socket.h>
2729#ifdef HAVE_SYS_BITYPES_H
2730# include <sys/bitypes.h>
2731#endif
Damien Millera8e06ce2003-11-21 23:48:55 +11002732 ],
2733 [ int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002734 [ ac_cv_have_int64_t="yes" ],
2735 [ ac_cv_have_int64_t="no" ]
2736 )
2737])
2738if test "x$ac_cv_have_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002739 AC_DEFINE(HAVE_INT64_T, 1, [define if you have int64_t data type])
Tim Rice4cec93f2002-02-26 08:40:48 -08002740fi
2741
Damien Miller61e50f12000-05-08 20:49:37 +10002742AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
2743 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002744 [ #include <sys/types.h> ],
2745 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Damien Miller61e50f12000-05-08 20:49:37 +10002746 [ ac_cv_have_u_intxx_t="yes" ],
2747 [ ac_cv_have_u_intxx_t="no" ]
2748 )
2749])
2750if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002751 AC_DEFINE(HAVE_U_INTXX_T, 1, [define if you have u_intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002752 have_u_intxx_t=1
2753fi
Damien Millerc6398ef1999-11-20 12:18:40 +11002754
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002755if test -z "$have_u_intxx_t" ; then
2756 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
2757 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002758 [ #include <sys/socket.h> ],
2759 [ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002760 [
2761 AC_DEFINE(HAVE_U_INTXX_T)
2762 AC_MSG_RESULT(yes)
2763 ],
2764 [ AC_MSG_RESULT(no) ]
2765 )
2766fi
2767
Damien Miller578783e2000-09-23 14:12:24 +11002768AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
2769 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002770 [ #include <sys/types.h> ],
2771 [ u_int64_t a; a = 1;],
Damien Miller578783e2000-09-23 14:12:24 +11002772 [ ac_cv_have_u_int64_t="yes" ],
2773 [ ac_cv_have_u_int64_t="no" ]
2774 )
2775])
2776if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002777 AC_DEFINE(HAVE_U_INT64_T, 1, [define if you have u_int64_t data type])
Damien Miller578783e2000-09-23 14:12:24 +11002778 have_u_int64_t=1
2779fi
2780
Tim Rice4cec93f2002-02-26 08:40:48 -08002781if test -z "$have_u_int64_t" ; then
2782 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
2783 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002784 [ #include <sys/bitypes.h> ],
Tim Rice4cec93f2002-02-26 08:40:48 -08002785 [ u_int64_t a; a = 1],
2786 [
2787 AC_DEFINE(HAVE_U_INT64_T)
2788 AC_MSG_RESULT(yes)
2789 ],
2790 [ AC_MSG_RESULT(no) ]
2791 )
2792fi
2793
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002794if test -z "$have_u_intxx_t" ; then
2795 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
2796 AC_TRY_COMPILE(
2797 [
2798#include <sys/types.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002799 ],
2800 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1; ],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002801 [ ac_cv_have_uintxx_t="yes" ],
2802 [ ac_cv_have_uintxx_t="no" ]
2803 )
2804 ])
2805 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002806 AC_DEFINE(HAVE_UINTXX_T, 1,
2807 [define if you have uintxx_t data type])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002808 fi
2809fi
2810
2811if test -z "$have_uintxx_t" ; then
2812 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
2813 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11002814 [ #include <stdint.h> ],
2815 [ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00002816 [
2817 AC_DEFINE(HAVE_UINTXX_T)
2818 AC_MSG_RESULT(yes)
2819 ],
2820 [ AC_MSG_RESULT(no) ]
2821 )
2822fi
2823
Damien Milleredb82922000-06-20 13:25:52 +10002824if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11002825 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11002826then
2827 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
2828 AC_TRY_COMPILE(
Damien Miller61e50f12000-05-08 20:49:37 +10002829 [
2830#include <sys/bitypes.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11002831 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002832 [
Damien Miller70494d12000-04-03 15:57:06 +10002833 int8_t a; int16_t b; int32_t c;
2834 u_int8_t e; u_int16_t f; u_int32_t g;
2835 a = b = c = e = f = g = 1;
Damien Millera8e06ce2003-11-21 23:48:55 +11002836 ],
Damien Millerb29ea912000-01-15 14:12:03 +11002837 [
2838 AC_DEFINE(HAVE_U_INTXX_T)
2839 AC_DEFINE(HAVE_INTXX_T)
2840 AC_MSG_RESULT(yes)
2841 ],
2842 [AC_MSG_RESULT(no)]
Damien Millera8e06ce2003-11-21 23:48:55 +11002843 )
Damien Millerb29ea912000-01-15 14:12:03 +11002844fi
2845
Damien Miller58be7382001-09-15 21:31:54 +10002846
2847AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
2848 AC_TRY_COMPILE(
2849 [
2850#include <sys/types.h>
2851 ],
2852 [ u_char foo; foo = 125; ],
2853 [ ac_cv_have_u_char="yes" ],
2854 [ ac_cv_have_u_char="no" ]
2855 )
2856])
2857if test "x$ac_cv_have_u_char" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002858 AC_DEFINE(HAVE_U_CHAR, 1, [define if you have u_char data type])
Damien Miller58be7382001-09-15 21:31:54 +10002859fi
2860
Tim Rice13aae5e2001-10-21 17:53:58 -07002861TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11002862
Tim Rice200a5c02002-02-26 22:12:34 -08002863AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
Darren Tucker598eaa62008-06-09 03:32:29 +10002864AC_CHECK_TYPES([fsblkcnt_t, fsfilcnt_t],,,[
2865#include <sys/types.h>
2866#ifdef HAVE_SYS_BITYPES_H
2867#include <sys/bitypes.h>
2868#endif
2869#ifdef HAVE_SYS_STATFS_H
2870#include <sys/statfs.h>
2871#endif
2872#ifdef HAVE_SYS_STATVFS_H
2873#include <sys/statvfs.h>
2874#endif
2875])
Tim Rice4cec93f2002-02-26 08:40:48 -08002876
Darren Tucker30ed6682009-03-07 18:06:22 +11002877AC_CHECK_TYPES([in_addr_t, in_port_t],,,
Damien Miller848b9932005-02-24 12:12:34 +11002878[#include <sys/types.h>
2879#include <netinet/in.h>])
Darren Tuckerd9f88912005-02-20 21:01:48 +11002880
Damien Miller61e50f12000-05-08 20:49:37 +10002881AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
2882 AC_TRY_COMPILE(
2883 [
2884#include <sys/types.h>
2885 ],
2886 [ size_t foo; foo = 1235; ],
2887 [ ac_cv_have_size_t="yes" ],
2888 [ ac_cv_have_size_t="no" ]
2889 )
2890])
2891if test "x$ac_cv_have_size_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002892 AC_DEFINE(HAVE_SIZE_T, 1, [define if you have size_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002893fi
Damien Miller95058511999-12-29 10:36:45 +11002894
Damien Miller615f9392000-05-17 22:53:33 +10002895AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
2896 AC_TRY_COMPILE(
2897 [
2898#include <sys/types.h>
2899 ],
2900 [ ssize_t foo; foo = 1235; ],
2901 [ ac_cv_have_ssize_t="yes" ],
2902 [ ac_cv_have_ssize_t="no" ]
2903 )
2904])
2905if test "x$ac_cv_have_ssize_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002906 AC_DEFINE(HAVE_SSIZE_T, 1, [define if you have ssize_t data type])
Damien Miller615f9392000-05-17 22:53:33 +10002907fi
2908
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002909AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
2910 AC_TRY_COMPILE(
2911 [
2912#include <time.h>
2913 ],
2914 [ clock_t foo; foo = 1235; ],
2915 [ ac_cv_have_clock_t="yes" ],
2916 [ ac_cv_have_clock_t="no" ]
2917 )
2918])
2919if test "x$ac_cv_have_clock_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002920 AC_DEFINE(HAVE_CLOCK_T, 1, [define if you have clock_t data type])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00002921fi
2922
Damien Millerb54b40e2000-06-23 08:23:34 +10002923AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
2924 AC_TRY_COMPILE(
2925 [
2926#include <sys/types.h>
2927#include <sys/socket.h>
2928 ],
2929 [ sa_family_t foo; foo = 1235; ],
2930 [ ac_cv_have_sa_family_t="yes" ],
Damien Miller78315eb2000-09-29 23:01:36 +11002931 [ AC_TRY_COMPILE(
2932 [
2933#include <sys/types.h>
2934#include <sys/socket.h>
2935#include <netinet/in.h>
2936 ],
2937 [ sa_family_t foo; foo = 1235; ],
2938 [ ac_cv_have_sa_family_t="yes" ],
2939
Damien Millerb54b40e2000-06-23 08:23:34 +10002940 [ ac_cv_have_sa_family_t="no" ]
Damien Miller78315eb2000-09-29 23:01:36 +11002941 )]
Damien Millerb54b40e2000-06-23 08:23:34 +10002942 )
2943])
2944if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002945 AC_DEFINE(HAVE_SA_FAMILY_T, 1,
2946 [define if you have sa_family_t data type])
Damien Millerb54b40e2000-06-23 08:23:34 +10002947fi
2948
Damien Miller0f91b4e2000-06-18 15:43:25 +10002949AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
2950 AC_TRY_COMPILE(
2951 [
2952#include <sys/types.h>
2953 ],
2954 [ pid_t foo; foo = 1235; ],
2955 [ ac_cv_have_pid_t="yes" ],
2956 [ ac_cv_have_pid_t="no" ]
2957 )
2958])
2959if test "x$ac_cv_have_pid_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002960 AC_DEFINE(HAVE_PID_T, 1, [define if you have pid_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002961fi
2962
2963AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
2964 AC_TRY_COMPILE(
2965 [
2966#include <sys/types.h>
2967 ],
2968 [ mode_t foo; foo = 1235; ],
2969 [ ac_cv_have_mode_t="yes" ],
2970 [ ac_cv_have_mode_t="no" ]
2971 )
2972])
2973if test "x$ac_cv_have_mode_t" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002974 AC_DEFINE(HAVE_MODE_T, 1, [define if you have mode_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10002975fi
2976
Damien Miller61e50f12000-05-08 20:49:37 +10002977
2978AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
2979 AC_TRY_COMPILE(
2980 [
Damien Miller81171112000-04-23 11:14:01 +10002981#include <sys/types.h>
2982#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002983 ],
2984 [ struct sockaddr_storage s; ],
2985 [ ac_cv_have_struct_sockaddr_storage="yes" ],
2986 [ ac_cv_have_struct_sockaddr_storage="no" ]
2987 )
2988])
2989if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07002990 AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE, 1,
2991 [define if you have struct sockaddr_storage data type])
Damien Miller61e50f12000-05-08 20:49:37 +10002992fi
Damien Miller34132e52000-01-14 15:45:46 +11002993
Damien Miller61e50f12000-05-08 20:49:37 +10002994AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
2995 AC_TRY_COMPILE(
2996 [
Damien Miller7b22d652000-06-18 14:07:04 +10002997#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10002998#include <netinet/in.h>
2999 ],
3000 [ struct sockaddr_in6 s; s.sin6_family = 0; ],
3001 [ ac_cv_have_struct_sockaddr_in6="yes" ],
3002 [ ac_cv_have_struct_sockaddr_in6="no" ]
3003 )
3004])
3005if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003006 AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6, 1,
3007 [define if you have struct sockaddr_in6 data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003008fi
Damien Miller34132e52000-01-14 15:45:46 +11003009
Damien Miller61e50f12000-05-08 20:49:37 +10003010AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
3011 AC_TRY_COMPILE(
3012 [
Damien Miller7b22d652000-06-18 14:07:04 +10003013#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003014#include <netinet/in.h>
3015 ],
3016 [ struct in6_addr s; s.s6_addr[0] = 0; ],
3017 [ ac_cv_have_struct_in6_addr="yes" ],
3018 [ ac_cv_have_struct_in6_addr="no" ]
3019 )
3020])
3021if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003022 AC_DEFINE(HAVE_STRUCT_IN6_ADDR, 1,
3023 [define if you have struct in6_addr data type])
Tim Rice0f4d2c02008-11-18 21:26:41 -08003024
3025dnl Now check for sin6_scope_id
3026 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
3027 [
3028#ifdef HAVE_SYS_TYPES_H
3029#include <sys/types.h>
3030#endif
3031#include <netinet/in.h>
3032 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003033fi
Damien Miller34132e52000-01-14 15:45:46 +11003034
Damien Miller61e50f12000-05-08 20:49:37 +10003035AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
3036 AC_TRY_COMPILE(
3037 [
Damien Miller81171112000-04-23 11:14:01 +10003038#include <sys/types.h>
3039#include <sys/socket.h>
3040#include <netdb.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003041 ],
3042 [ struct addrinfo s; s.ai_flags = AI_PASSIVE; ],
3043 [ ac_cv_have_struct_addrinfo="yes" ],
3044 [ ac_cv_have_struct_addrinfo="no" ]
3045 )
3046])
3047if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003048 AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1,
3049 [define if you have struct addrinfo data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003050fi
3051
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003052AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
3053 AC_TRY_COMPILE(
Damien Millera8e06ce2003-11-21 23:48:55 +11003054 [ #include <sys/time.h> ],
3055 [ struct timeval tv; tv.tv_sec = 1;],
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003056 [ ac_cv_have_struct_timeval="yes" ],
3057 [ ac_cv_have_struct_timeval="no" ]
3058 )
3059])
3060if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003061 AC_DEFINE(HAVE_STRUCT_TIMEVAL, 1, [define if you have struct timeval])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003062 have_struct_timeval=1
3063fi
3064
Tim Rice4e4dc562003-03-18 10:21:40 -08003065AC_CHECK_TYPES(struct timespec)
3066
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00003067# We need int64_t or else certian parts of the compile will fail.
Tim Rice8bb561b2005-03-17 16:23:19 -08003068if test "x$ac_cv_have_int64_t" = "xno" && \
3069 test "x$ac_cv_sizeof_long_int" != "x8" && \
3070 test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00003071 echo "OpenSSH requires int64_t support. Contact your vendor or install"
3072 echo "an alternative compiler (I.E., GCC) before continuing."
3073 echo ""
3074 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08003075else
3076dnl test snprintf (broken on SCO w/gcc)
Darren Tuckera0c2b392004-09-11 23:26:37 +10003077 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10003078 [AC_LANG_SOURCE([[
Tim Ricebee3f222001-03-11 17:32:12 -08003079#include <stdio.h>
3080#include <string.h>
3081#ifdef HAVE_SNPRINTF
3082main()
3083{
3084 char buf[50];
3085 char expected_out[50];
3086 int mazsize = 50 ;
3087#if (SIZEOF_LONG_INT == 8)
3088 long int num = 0x7fffffffffffffff;
3089#else
Kevin Steves6482ec82001-07-15 02:09:28 +00003090 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08003091#endif
3092 strcpy(expected_out, "9223372036854775807");
3093 snprintf(buf, mazsize, "%lld", num);
3094 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11003095 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08003096 exit(0);
3097}
3098#else
3099main() { exit(0); }
3100#endif
Darren Tucker623d92f2004-09-12 22:36:15 +10003101 ]])], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],
Darren Tuckera0c2b392004-09-11 23:26:37 +10003102 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
Tim Ricebee3f222001-03-11 17:32:12 -08003103 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003104fi
3105
Damien Miller78315eb2000-09-29 23:01:36 +11003106dnl Checks for structure members
Damien Miller61e50f12000-05-08 20:49:37 +10003107OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmp.h, HAVE_HOST_IN_UTMP)
3108OSSH_CHECK_HEADER_FOR_FIELD(ut_host, utmpx.h, HAVE_HOST_IN_UTMPX)
3109OSSH_CHECK_HEADER_FOR_FIELD(syslen, utmpx.h, HAVE_SYSLEN_IN_UTMPX)
3110OSSH_CHECK_HEADER_FOR_FIELD(ut_pid, utmp.h, HAVE_PID_IN_UTMP)
3111OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmp.h, HAVE_TYPE_IN_UTMP)
Damien Millerad1bc5f2000-05-20 14:53:09 +10003112OSSH_CHECK_HEADER_FOR_FIELD(ut_type, utmpx.h, HAVE_TYPE_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10003113OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmp.h, HAVE_TV_IN_UTMP)
3114OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmp.h, HAVE_ID_IN_UTMP)
Damien Miller8e81ed32000-07-01 13:17:42 +10003115OSSH_CHECK_HEADER_FOR_FIELD(ut_id, utmpx.h, HAVE_ID_IN_UTMPX)
Damien Miller61e50f12000-05-08 20:49:37 +10003116OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmp.h, HAVE_ADDR_IN_UTMP)
3117OSSH_CHECK_HEADER_FOR_FIELD(ut_addr, utmpx.h, HAVE_ADDR_IN_UTMPX)
3118OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmp.h, HAVE_ADDR_V6_IN_UTMP)
3119OSSH_CHECK_HEADER_FOR_FIELD(ut_addr_v6, utmpx.h, HAVE_ADDR_V6_IN_UTMPX)
andre2ff7b5d2000-06-03 14:57:40 +00003120OSSH_CHECK_HEADER_FOR_FIELD(ut_exit, utmp.h, HAVE_EXIT_IN_UTMP)
3121OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmp.h, HAVE_TIME_IN_UTMP)
3122OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
3123OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
Tim Rice13aae5e2001-10-21 17:53:58 -07003124
3125AC_CHECK_MEMBERS([struct stat.st_blksize])
Darren Tucker58e298d2005-11-25 13:14:58 +11003126AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE(__res_state, state,
3127 [Define if we don't have struct __res_state in resolv.h])],
3128[
3129#include <stdio.h>
3130#if HAVE_SYS_TYPES_H
3131# include <sys/types.h>
3132#endif
3133#include <netinet/in.h>
3134#include <arpa/nameser.h>
3135#include <resolv.h>
3136])
andre2ff7b5d2000-06-03 14:57:40 +00003137
Damien Miller61e50f12000-05-08 20:49:37 +10003138AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
3139 ac_cv_have_ss_family_in_struct_ss, [
3140 AC_TRY_COMPILE(
3141 [
Damien Miller81171112000-04-23 11:14:01 +10003142#include <sys/types.h>
3143#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003144 ],
3145 [ struct sockaddr_storage s; s.ss_family = 1; ],
3146 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
3147 [ ac_cv_have_ss_family_in_struct_ss="no" ],
3148 )
3149])
3150if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003151 AC_DEFINE(HAVE_SS_FAMILY_IN_SS, 1, [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10003152fi
3153
Damien Miller61e50f12000-05-08 20:49:37 +10003154AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
3155 ac_cv_have___ss_family_in_struct_ss, [
3156 AC_TRY_COMPILE(
3157 [
Damien Miller81171112000-04-23 11:14:01 +10003158#include <sys/types.h>
3159#include <sys/socket.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003160 ],
3161 [ struct sockaddr_storage s; s.__ss_family = 1; ],
3162 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
3163 [ ac_cv_have___ss_family_in_struct_ss="no" ]
3164 )
3165])
3166if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003167 AC_DEFINE(HAVE___SS_FAMILY_IN_SS, 1,
3168 [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10003169fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11003170
Damien Millerad833b32000-08-23 10:46:23 +10003171AC_CACHE_CHECK([for pw_class field in struct passwd],
3172 ac_cv_have_pw_class_in_struct_passwd, [
3173 AC_TRY_COMPILE(
3174 [
Damien Millerad833b32000-08-23 10:46:23 +10003175#include <pwd.h>
3176 ],
Kevin Steves48b7cc02000-10-07 13:24:00 +00003177 [ struct passwd p; p.pw_class = 0; ],
Damien Millerad833b32000-08-23 10:46:23 +10003178 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
3179 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
3180 )
3181])
3182if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003183 AC_DEFINE(HAVE_PW_CLASS_IN_PASSWD, 1,
3184 [Define if your password has a pw_class field])
Damien Millerad833b32000-08-23 10:46:23 +10003185fi
3186
Kevin Steves82456952001-06-22 21:14:18 +00003187AC_CACHE_CHECK([for pw_expire field in struct passwd],
3188 ac_cv_have_pw_expire_in_struct_passwd, [
3189 AC_TRY_COMPILE(
3190 [
3191#include <pwd.h>
3192 ],
3193 [ struct passwd p; p.pw_expire = 0; ],
3194 [ ac_cv_have_pw_expire_in_struct_passwd="yes" ],
3195 [ ac_cv_have_pw_expire_in_struct_passwd="no" ]
3196 )
3197])
3198if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003199 AC_DEFINE(HAVE_PW_EXPIRE_IN_PASSWD, 1,
3200 [Define if your password has a pw_expire field])
Kevin Steves82456952001-06-22 21:14:18 +00003201fi
3202
3203AC_CACHE_CHECK([for pw_change field in struct passwd],
3204 ac_cv_have_pw_change_in_struct_passwd, [
3205 AC_TRY_COMPILE(
3206 [
3207#include <pwd.h>
3208 ],
3209 [ struct passwd p; p.pw_change = 0; ],
3210 [ ac_cv_have_pw_change_in_struct_passwd="yes" ],
3211 [ ac_cv_have_pw_change_in_struct_passwd="no" ]
3212 )
3213])
3214if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003215 AC_DEFINE(HAVE_PW_CHANGE_IN_PASSWD, 1,
3216 [Define if your password has a pw_change field])
Kevin Steves82456952001-06-22 21:14:18 +00003217fi
Damien Miller61e50f12000-05-08 20:49:37 +10003218
Tim Rice28bbb0c2002-05-27 17:37:32 -07003219dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00003220AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
3221 ac_cv_have_accrights_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10003222 AC_COMPILE_IFELSE(
Kevin Steves939c9db2002-03-22 17:23:25 +00003223 [
Tim Riceae49fe62002-04-12 10:26:21 -07003224#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00003225#include <sys/socket.h>
3226#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07003227int main() {
3228#ifdef msg_accrights
Darren Tuckera0c2b392004-09-11 23:26:37 +10003229#error "msg_accrights is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07003230exit(1);
3231#endif
3232struct msghdr m;
3233m.msg_accrights = 0;
3234exit(0);
3235}
Kevin Steves939c9db2002-03-22 17:23:25 +00003236 ],
Kevin Steves939c9db2002-03-22 17:23:25 +00003237 [ ac_cv_have_accrights_in_msghdr="yes" ],
3238 [ ac_cv_have_accrights_in_msghdr="no" ]
3239 )
3240])
3241if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003242 AC_DEFINE(HAVE_ACCRIGHTS_IN_MSGHDR, 1,
3243 [Define if your system uses access rights style
3244 file descriptor passing])
Kevin Steves939c9db2002-03-22 17:23:25 +00003245fi
3246
Darren Tucker32780622009-06-16 16:11:02 +10003247AC_MSG_CHECKING(if struct statvfs.f_fsid is integral type)
Darren Tucker77001382008-06-09 06:17:53 +10003248AC_TRY_COMPILE([
3249#include <sys/types.h>
Darren Tucker32780622009-06-16 16:11:02 +10003250#include <sys/stat.h>
3251#ifdef HAVE_SYS_TIME_H
3252# include <sys/time.h>
3253#endif
3254#ifdef HAVE_SYS_MOUNT_H
3255#include <sys/mount.h>
3256#endif
3257#ifdef HAVE_SYS_STATVFS_H
3258#include <sys/statvfs.h>
3259#endif
3260], [struct statvfs s; s.f_fsid = 0;],
3261[ AC_MSG_RESULT(yes) ],
3262[ AC_MSG_RESULT(no)
3263
3264 AC_MSG_CHECKING(if fsid_t has member val)
3265 AC_TRY_COMPILE([
3266#include <sys/types.h>
Darren Tucker77001382008-06-09 06:17:53 +10003267#include <sys/statvfs.h>],
Darren Tucker32780622009-06-16 16:11:02 +10003268 [fsid_t t; t.val[0] = 0;],
Darren Tucker77001382008-06-09 06:17:53 +10003269 [ AC_MSG_RESULT(yes)
Darren Tucker32780622009-06-16 16:11:02 +10003270 AC_DEFINE(FSID_HAS_VAL, 1, fsid_t has member val) ],
3271 [ AC_MSG_RESULT(no) ])
3272
3273 AC_MSG_CHECKING(if f_fsid has member __val)
3274 AC_TRY_COMPILE([
3275#include <sys/types.h>
3276#include <sys/statvfs.h>],
3277 [fsid_t t; t.__val[0] = 0;],
3278 [ AC_MSG_RESULT(yes)
3279 AC_DEFINE(FSID_HAS___VAL, 1, fsid_t has member __val) ],
3280 [ AC_MSG_RESULT(no) ])
3281])
Darren Tucker77001382008-06-09 06:17:53 +10003282
Kevin Stevesa44e0352002-04-07 16:18:03 +00003283AC_CACHE_CHECK([for msg_control field in struct msghdr],
3284 ac_cv_have_control_in_msghdr, [
Darren Tuckera0c2b392004-09-11 23:26:37 +10003285 AC_COMPILE_IFELSE(
Kevin Stevesa44e0352002-04-07 16:18:03 +00003286 [
Tim Riceae49fe62002-04-12 10:26:21 -07003287#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00003288#include <sys/socket.h>
3289#include <sys/uio.h>
Tim Rice28bbb0c2002-05-27 17:37:32 -07003290int main() {
3291#ifdef msg_control
Darren Tuckera0c2b392004-09-11 23:26:37 +10003292#error "msg_control is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07003293exit(1);
3294#endif
3295struct msghdr m;
3296m.msg_control = 0;
3297exit(0);
3298}
Kevin Stevesa44e0352002-04-07 16:18:03 +00003299 ],
Kevin Stevesa44e0352002-04-07 16:18:03 +00003300 [ ac_cv_have_control_in_msghdr="yes" ],
3301 [ ac_cv_have_control_in_msghdr="no" ]
3302 )
3303])
3304if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003305 AC_DEFINE(HAVE_CONTROL_IN_MSGHDR, 1,
3306 [Define if your system uses ancillary data style
3307 file descriptor passing])
Kevin Stevesa44e0352002-04-07 16:18:03 +00003308fi
3309
Damien Miller61e50f12000-05-08 20:49:37 +10003310AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Damien Millera8e06ce2003-11-21 23:48:55 +11003311 AC_TRY_LINK([],
3312 [ extern char *__progname; printf("%s", __progname); ],
Damien Miller61e50f12000-05-08 20:49:37 +10003313 [ ac_cv_libc_defines___progname="yes" ],
3314 [ ac_cv_libc_defines___progname="no" ]
3315 )
3316])
3317if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003318 AC_DEFINE(HAVE___PROGNAME, 1, [Define if libc defines __progname])
Damien Miller61e50f12000-05-08 20:49:37 +10003319fi
3320
Kevin Steves4846f4a2002-03-22 18:19:53 +00003321AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
3322 AC_TRY_LINK([
3323#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11003324],
3325 [ printf("%s", __FUNCTION__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00003326 [ ac_cv_cc_implements___FUNCTION__="yes" ],
3327 [ ac_cv_cc_implements___FUNCTION__="no" ]
3328 )
3329])
3330if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003331 AC_DEFINE(HAVE___FUNCTION__, 1,
3332 [Define if compiler implements __FUNCTION__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00003333fi
3334
3335AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
3336 AC_TRY_LINK([
3337#include <stdio.h>
Damien Millera8e06ce2003-11-21 23:48:55 +11003338],
3339 [ printf("%s", __func__); ],
Kevin Steves4846f4a2002-03-22 18:19:53 +00003340 [ ac_cv_cc_implements___func__="yes" ],
3341 [ ac_cv_cc_implements___func__="no" ]
3342 )
3343])
3344if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003345 AC_DEFINE(HAVE___func__, 1, [Define if compiler implements __func__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00003346fi
3347
Damien Miller57f39152005-11-24 19:58:19 +11003348AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [
3349 AC_TRY_LINK(
3350 [#include <stdarg.h>
3351 va_list x,y;],
3352 [va_copy(x,y);],
3353 [ ac_cv_have_va_copy="yes" ],
3354 [ ac_cv_have_va_copy="no" ]
3355 )
3356])
3357if test "x$ac_cv_have_va_copy" = "xyes" ; then
3358 AC_DEFINE(HAVE_VA_COPY, 1, [Define if va_copy exists])
3359fi
3360
3361AC_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
Damien Miller4f8e6692001-07-14 13:22:53 +10003374AC_CACHE_CHECK([whether getopt has optreset support],
3375 ac_cv_have_getopt_optreset, [
3376 AC_TRY_LINK(
3377 [
3378#include <getopt.h>
3379 ],
3380 [ extern int optreset; optreset = 0; ],
3381 [ ac_cv_have_getopt_optreset="yes" ],
3382 [ ac_cv_have_getopt_optreset="no" ]
3383 )
3384])
3385if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003386 AC_DEFINE(HAVE_GETOPT_OPTRESET, 1,
3387 [Define if your getopt(3) defines and uses optreset])
Damien Miller4f8e6692001-07-14 13:22:53 +10003388fi
Damien Millera22ba012000-03-02 23:09:20 +11003389
Damien Millerecbb26d2000-07-15 14:59:14 +10003390AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Damien Millera8e06ce2003-11-21 23:48:55 +11003391 AC_TRY_LINK([],
3392 [ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);],
Damien Millerecbb26d2000-07-15 14:59:14 +10003393 [ ac_cv_libc_defines_sys_errlist="yes" ],
3394 [ ac_cv_libc_defines_sys_errlist="no" ]
3395 )
3396])
3397if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003398 AC_DEFINE(HAVE_SYS_ERRLIST, 1,
3399 [Define if your system defines sys_errlist[]])
Damien Millerecbb26d2000-07-15 14:59:14 +10003400fi
3401
3402
Damien Miller11fa2cc2000-08-16 10:35:58 +10003403AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Damien Millera8e06ce2003-11-21 23:48:55 +11003404 AC_TRY_LINK([],
3405 [ extern int sys_nerr; printf("%i", sys_nerr);],
Damien Miller11fa2cc2000-08-16 10:35:58 +10003406 [ ac_cv_libc_defines_sys_nerr="yes" ],
3407 [ ac_cv_libc_defines_sys_nerr="no" ]
3408 )
3409])
3410if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003411 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if your system defines sys_nerr])
Damien Miller11fa2cc2000-08-16 10:35:58 +10003412fi
3413
Darren Tucker5f88d342003-10-15 16:57:57 +10003414# Check libraries needed by DNS fingerprint support
Damien Millera8e06ce2003-11-21 23:48:55 +11003415AC_SEARCH_LIBS(getrrsetbyname, resolv,
Tim Rice7df8d392005-09-19 09:33:39 -07003416 [AC_DEFINE(HAVE_GETRRSETBYNAME, 1,
3417 [Define if getrrsetbyname() exists])],
Damien Miller7abe09b2003-05-15 10:53:49 +10003418 [
Darren Tucker5f88d342003-10-15 16:57:57 +10003419 # Needed by our getrrsetbyname()
3420 AC_SEARCH_LIBS(res_query, resolv)
3421 AC_SEARCH_LIBS(dn_expand, resolv)
Darren Tucker8e968a52004-05-13 11:56:16 +10003422 AC_MSG_CHECKING(if res_query will link)
Darren Tuckere02b49a2009-09-11 14:56:08 +10003423 AC_LINK_IFELSE([
3424#include "confdefs.h"
3425#include <sys/types.h>
3426#include <netinet/in.h>
3427#include <arpa/nameser.h>
3428#include <netdb.h>
3429#include <resolv.h>
3430int main()
3431{
3432 res_query (0, 0, 0, 0, 0);
3433 return 0;
3434}
3435 ],
3436 AC_MSG_RESULT(yes),
Darren Tucker8e968a52004-05-13 11:56:16 +10003437 [AC_MSG_RESULT(no)
3438 saved_LIBS="$LIBS"
3439 LIBS="$LIBS -lresolv"
3440 AC_MSG_CHECKING(for res_query in -lresolv)
3441 AC_LINK_IFELSE([
Darren Tuckere02b49a2009-09-11 14:56:08 +10003442#include "confdefs.h"
3443#include <sys/types.h>
3444#include <netinet/in.h>
3445#include <arpa/nameser.h>
3446#include <netdb.h>
Darren Tucker8e968a52004-05-13 11:56:16 +10003447#include <resolv.h>
3448int main()
3449{
3450 res_query (0, 0, 0, 0, 0);
3451 return 0;
3452}
3453 ],
Darren Tuckere02b49a2009-09-11 14:56:08 +10003454 [AC_MSG_RESULT(yes)],
Darren Tucker8e968a52004-05-13 11:56:16 +10003455 [LIBS="$saved_LIBS"
3456 AC_MSG_RESULT(no)])
3457 ])
Darren Tucker5f88d342003-10-15 16:57:57 +10003458 AC_CHECK_FUNCS(_getshort _getlong)
Darren Tuckerd886e1c2005-06-01 18:57:45 +10003459 AC_CHECK_DECLS([_getshort, _getlong], , ,
Tim Ricefcc7ff12005-06-02 20:28:29 -07003460 [#include <sys/types.h>
3461 #include <arpa/nameser.h>])
Darren Tucker5f88d342003-10-15 16:57:57 +10003462 AC_CHECK_MEMBER(HEADER.ad,
Tim Rice7df8d392005-09-19 09:33:39 -07003463 [AC_DEFINE(HAVE_HEADER_AD, 1,
3464 [Define if HEADER.ad exists in arpa/nameser.h])],,
Darren Tucker5f88d342003-10-15 16:57:57 +10003465 [#include <arpa/nameser.h>])
3466 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10003467
Darren Tuckercc40d5e2007-04-29 13:58:06 +10003468AC_MSG_CHECKING(if struct __res_state _res is an extern)
3469AC_LINK_IFELSE([
3470#include <stdio.h>
3471#if HAVE_SYS_TYPES_H
3472# include <sys/types.h>
3473#endif
3474#include <netinet/in.h>
3475#include <arpa/nameser.h>
3476#include <resolv.h>
3477extern struct __res_state _res;
3478int main() { return 0; }
3479 ],
3480 [AC_MSG_RESULT(yes)
3481 AC_DEFINE(HAVE__RES_EXTERN, 1,
3482 [Define if you have struct __res_state _res as an extern])
3483 ],
3484 [ AC_MSG_RESULT(no) ]
3485)
3486
Damien Miller73b42d22006-04-22 21:26:08 +10003487# Check whether user wants SELinux support
3488SELINUX_MSG="no"
3489LIBSELINUX=""
3490AC_ARG_WITH(selinux,
Damien Miller5b1c8b32008-03-27 12:33:07 +11003491 [ --with-selinux Enable SELinux support],
Damien Miller73b42d22006-04-22 21:26:08 +10003492 [ if test "x$withval" != "xno" ; then
Darren Tucker20e9f972007-03-25 18:26:01 +10003493 save_LIBS="$LIBS"
Damien Miller73b42d22006-04-22 21:26:08 +10003494 AC_DEFINE(WITH_SELINUX,1,[Define if you want SELinux support.])
3495 SELINUX_MSG="yes"
3496 AC_CHECK_HEADER([selinux/selinux.h], ,
Damien Miller1d2bfc42010-02-10 10:19:29 +11003497 AC_MSG_ERROR(SELinux support requires selinux.h header))
3498 AC_CHECK_LIB(selinux, setexeccon,
3499 [ LIBSELINUX="-lselinux"
3500 LIBS="$LIBS -lselinux"
3501 ],
3502 AC_MSG_ERROR(SELinux support requires libselinux library))
Darren Tucker20e9f972007-03-25 18:26:01 +10003503 SSHDLIBS="$SSHDLIBS $LIBSELINUX"
Damien Miller73b42d22006-04-22 21:26:08 +10003504 AC_CHECK_FUNCS(getseuserbyname get_default_context_with_level)
Darren Tuckeradc947d2006-10-07 09:07:20 +10003505 LIBS="$save_LIBS"
Damien Miller73b42d22006-04-22 21:26:08 +10003506 fi ]
3507)
Damien Miller73b42d22006-04-22 21:26:08 +10003508
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003509# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11003510KRB5_MSG="no"
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003511AC_ARG_WITH(kerberos5,
Damien Millera8e06ce2003-11-21 23:48:55 +11003512 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11003513 [ if test "x$withval" != "xno" ; then
3514 if test "x$withval" = "xyes" ; then
3515 KRB5ROOT="/usr/local"
3516 else
3517 KRB5ROOT=${withval}
3518 fi
3519
Tim Rice7df8d392005-09-19 09:33:39 -07003520 AC_DEFINE(KRB5, 1, [Define if you want Kerberos 5 support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11003521 KRB5_MSG="yes"
3522
Darren Tuckerdad48e72009-09-01 18:26:00 +10003523 AC_PATH_PROG([KRB5CONF],[krb5-config],
3524 [$KRB5ROOT/bin/krb5-config],
3525 [$KRB5ROOT/bin:$PATH])
3526 if test -x $KRB5CONF ; then
Darren Tucker1d3ca582004-01-22 12:05:34 +11003527
3528 AC_MSG_CHECKING(for gssapi support)
3529 if $KRB5CONF | grep gssapi >/dev/null ; then
3530 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003531 AC_DEFINE(GSSAPI, 1,
3532 [Define this if you want GSSAPI
3533 support in the version 2 protocol])
Darren Tucker0d27ed12004-02-24 10:37:33 +11003534 k5confopts=gssapi
Damien Millera8e06ce2003-11-21 23:48:55 +11003535 else
Darren Tucker1d3ca582004-01-22 12:05:34 +11003536 AC_MSG_RESULT(no)
Darren Tucker0d27ed12004-02-24 10:37:33 +11003537 k5confopts=""
Damien Millera8e06ce2003-11-21 23:48:55 +11003538 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11003539 K5CFLAGS="`$KRB5CONF --cflags $k5confopts`"
3540 K5LIBS="`$KRB5CONF --libs $k5confopts`"
Darren Tucker1d3ca582004-01-22 12:05:34 +11003541 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11003542 AC_MSG_CHECKING(whether we are using Heimdal)
3543 AC_TRY_COMPILE([ #include <krb5.h> ],
3544 [ char *tmp = heimdal_version; ],
3545 [ AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003546 AC_DEFINE(HEIMDAL, 1,
3547 [Define this if you are using the
3548 Heimdal version of Kerberos V5]) ],
Darren Tucker1d3ca582004-01-22 12:05:34 +11003549 AC_MSG_RESULT(no)
3550 )
3551 else
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003552 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11003553 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Damien Millera8e06ce2003-11-21 23:48:55 +11003554 AC_MSG_CHECKING(whether we are using Heimdal)
3555 AC_TRY_COMPILE([ #include <krb5.h> ],
3556 [ char *tmp = heimdal_version; ],
3557 [ AC_MSG_RESULT(yes)
3558 AC_DEFINE(HEIMDAL)
Damien Miller41bccf72011-01-02 21:53:07 +11003559 K5LIBS="-lkrb5"
Damien Miller5561e0b2004-04-20 20:28:55 +10003560 K5LIBS="$K5LIBS -lcom_err -lasn1"
Tim Riceeae17cc2005-03-17 16:52:20 -08003561 AC_CHECK_LIB(roken, net_write,
Damien Miller5561e0b2004-04-20 20:28:55 +10003562 [K5LIBS="$K5LIBS -lroken"])
Damien Miller41bccf72011-01-02 21:53:07 +11003563 AC_CHECK_LIB(des, des_cbc_encrypt,
3564 [K5LIBS="$K5LIBS -ldes"])
Damien Millera8e06ce2003-11-21 23:48:55 +11003565 ],
3566 [ AC_MSG_RESULT(no)
3567 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
3568 ]
3569 )
Damien Miller200d0a72003-06-30 19:21:36 +10003570 AC_SEARCH_LIBS(dn_expand, resolv)
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003571
Darren Tucker30fd49e2008-06-14 09:14:46 +10003572 AC_CHECK_LIB(gssapi_krb5, gss_init_sec_context,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003573 [ AC_DEFINE(GSSAPI)
Darren Tucker30fd49e2008-06-14 09:14:46 +10003574 K5LIBS="-lgssapi_krb5 $K5LIBS" ],
3575 [ AC_CHECK_LIB(gssapi, gss_init_sec_context,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003576 [ AC_DEFINE(GSSAPI)
Darren Tucker30fd49e2008-06-14 09:14:46 +10003577 K5LIBS="-lgssapi $K5LIBS" ],
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003578 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]),
3579 $K5LIBS)
3580 ],
3581 $K5LIBS)
Tim Riceeae17cc2005-03-17 16:52:20 -08003582
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003583 AC_CHECK_HEADER(gssapi.h, ,
3584 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11003585 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003586 AC_CHECK_HEADERS(gssapi.h, ,
3587 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11003588 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10003589 ]
3590 )
3591
3592 oldCPP="$CPPFLAGS"
3593 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
3594 AC_CHECK_HEADER(gssapi_krb5.h, ,
3595 [ CPPFLAGS="$oldCPP" ])
3596
Damien Millera8e06ce2003-11-21 23:48:55 +11003597 fi
Darren Tucker1d3ca582004-01-22 12:05:34 +11003598 if test ! -z "$need_dash_r" ; then
3599 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
3600 fi
3601 if test ! -z "$blibpath" ; then
3602 blibpath="$blibpath:${KRB5ROOT}/lib"
3603 fi
Tim Ricefd9e9e32005-09-12 17:36:10 -07003604
3605 AC_CHECK_HEADERS(gssapi.h gssapi/gssapi.h)
3606 AC_CHECK_HEADERS(gssapi_krb5.h gssapi/gssapi_krb5.h)
3607 AC_CHECK_HEADERS(gssapi_generic.h gssapi/gssapi_generic.h)
3608
3609 LIBS="$LIBS $K5LIBS"
Tim Rice7df8d392005-09-19 09:33:39 -07003610 AC_SEARCH_LIBS(k_hasafs, kafs, AC_DEFINE(USE_AFS, 1,
3611 [Define this if you want to use libkafs' AFS support]))
Darren Tucker0d27ed12004-02-24 10:37:33 +11003612 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11003613 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10003614)
Damien Millerc79bc0d2001-03-28 13:03:42 +10003615
Damien Millera22ba012000-03-02 23:09:20 +11003616# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11003617
Damien Millerf58c6722002-05-13 13:15:42 +10003618PRIVSEP_PATH=/var/empty
3619AC_ARG_WITH(privsep-path,
Tim Ricecbb90662002-07-08 19:17:10 -07003620 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10003621 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003622 if test -n "$withval" && test "x$withval" != "xno" && \
3623 test "x${withval}" != "xyes"; then
Damien Millerf58c6722002-05-13 13:15:42 +10003624 PRIVSEP_PATH=$withval
3625 fi
3626 ]
3627)
3628AC_SUBST(PRIVSEP_PATH)
3629
Damien Millera22ba012000-03-02 23:09:20 +11003630AC_ARG_WITH(xauth,
3631 [ --with-xauth=PATH Specify path to xauth program ],
3632 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003633 if test -n "$withval" && test "x$withval" != "xno" && \
3634 test "x${withval}" != "xyes"; then
Damien Miller7b22d652000-06-18 14:07:04 +10003635 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11003636 fi
3637 ],
3638 [
Tim Ricee22be3b2002-07-17 19:20:07 -07003639 TestPath="$PATH"
3640 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
3641 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
3642 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
3643 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
3644 AC_PATH_PROG(xauth_path, xauth, , $TestPath)
Damien Milleredb82922000-06-20 13:25:52 +10003645 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11003646 xauth_path="/usr/openwin/bin/xauth"
3647 fi
3648 ]
3649)
3650
Damien Miller7d901272003-01-13 16:55:22 +11003651STRIP_OPT=-s
3652AC_ARG_ENABLE(strip,
3653 [ --disable-strip Disable calling strip(1) on install],
3654 [
3655 if test "x$enableval" = "xno" ; then
3656 STRIP_OPT=
3657 fi
3658 ]
3659)
3660AC_SUBST(STRIP_OPT)
3661
Damien Millera19cf472000-11-29 13:28:50 +11003662if test -z "$xauth_path" ; then
3663 XAUTH_PATH="undefined"
3664 AC_SUBST(XAUTH_PATH)
3665else
Tim Rice7df8d392005-09-19 09:33:39 -07003666 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path",
3667 [Define if xauth is found in your path])
Damien Millera19cf472000-11-29 13:28:50 +11003668 XAUTH_PATH=$xauth_path
3669 AC_SUBST(XAUTH_PATH)
Damien Millera22ba012000-03-02 23:09:20 +11003670fi
Damien Millera22ba012000-03-02 23:09:20 +11003671
3672# Check for mail directory (last resort if we cannot get it from headers)
3673if test ! -z "$MAIL" ; then
3674 maildir=`dirname $MAIL`
Tim Rice7df8d392005-09-19 09:33:39 -07003675 AC_DEFINE_UNQUOTED(MAIL_DIRECTORY, "$maildir",
3676 [Set this to your mail directory if you don't have maillock.h])
Damien Millera22ba012000-03-02 23:09:20 +11003677fi
3678
Darren Tucker623d92f2004-09-12 22:36:15 +10003679if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10003680 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
3681 disable_ptmx_check=yes
3682fi
Damien Millera22ba012000-03-02 23:09:20 +11003683if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003684 if test "x$disable_ptmx_check" != "xyes" ; then
Damien Millera8e06ce2003-11-21 23:48:55 +11003685 AC_CHECK_FILE("/dev/ptmx",
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003686 [
Tim Rice7df8d392005-09-19 09:33:39 -07003687 AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX, 1,
3688 [Define if you have /dev/ptmx])
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00003689 have_dev_ptmx=1
3690 ]
3691 )
3692 fi
Damien Millera22ba012000-03-02 23:09:20 +11003693fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10003694
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_CHECK_FILE("/dev/ptc",
3697 [
Tim Rice7df8d392005-09-19 09:33:39 -07003698 AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC, 1,
3699 [Define if you have /dev/ptc])
Darren Tuckera0c2b392004-09-11 23:26:37 +10003700 have_dev_ptc=1
3701 ]
3702 )
3703else
3704 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
3705fi
Damien Miller204ad072000-03-02 23:56:12 +11003706
Damien Millera22ba012000-03-02 23:09:20 +11003707# Options from here on. Some of these are preset by platform above
Ben Lindstrom9841b0a2001-06-09 02:26:58 +00003708AC_ARG_WITH(mantype,
Damien Miller897741e2001-04-16 10:41:46 +10003709 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11003710 [
Damien Miller897741e2001-04-16 10:41:46 +10003711 case "$withval" in
3712 man|cat|doc)
3713 MANTYPE=$withval
3714 ;;
3715 *)
3716 AC_MSG_ERROR(invalid man type: $withval)
3717 ;;
3718 esac
Damien Miller670a4b82000-01-22 13:53:11 +11003719 ]
3720)
Ben Lindstrombc709922001-04-18 18:04:21 +00003721if test -z "$MANTYPE"; then
Tim Ricee22be3b2002-07-17 19:20:07 -07003722 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
3723 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
Ben Lindstrombc709922001-04-18 18:04:21 +00003724 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
3725 MANTYPE=doc
3726 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
3727 MANTYPE=man
3728 else
3729 MANTYPE=cat
3730 fi
3731fi
Damien Miller670a4b82000-01-22 13:53:11 +11003732AC_SUBST(MANTYPE)
Ben Lindstrombc709922001-04-18 18:04:21 +00003733if test "$MANTYPE" = "doc"; then
3734 mansubdir=man;
3735else
3736 mansubdir=$MANTYPE;
3737fi
3738AC_SUBST(mansubdir)
Damien Miller8bdeee21999-12-30 15:50:54 +11003739
Damien Millera22ba012000-03-02 23:09:20 +11003740# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11003741MD5_MSG="no"
Damien Millerf7c0f821999-11-22 22:31:49 +11003742AC_ARG_WITH(md5-passwords,
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003743 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11003744 [
Damien Millerb85dcad2000-03-11 11:37:00 +11003745 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003746 AC_DEFINE(HAVE_MD5_PASSWORDS, 1,
3747 [Define if you want to allow MD5 passwords])
Damien Millera8e06ce2003-11-21 23:48:55 +11003748 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11003749 fi
3750 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11003751)
3752
Damien Millera22ba012000-03-02 23:09:20 +11003753# Whether to disable shadow password support
Damien Miller76112de1999-12-21 11:18:08 +11003754AC_ARG_WITH(shadow,
3755 [ --without-shadow Disable shadow password support],
3756 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003757 if test "x$withval" = "xno" ; then
Damien Miller76112de1999-12-21 11:18:08 +11003758 AC_DEFINE(DISABLE_SHADOW)
Damien Miller1f335fb2000-06-26 11:31:33 +10003759 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11003760 fi
3761 ]
3762)
3763
Damien Miller1f335fb2000-06-26 11:31:33 +10003764if test -z "$disable_shadow" ; then
3765 AC_MSG_CHECKING([if the systems has expire shadow information])
3766 AC_TRY_COMPILE(
3767 [
3768#include <sys/types.h>
3769#include <shadow.h>
3770 struct spwd sp;
3771 ],[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ],
3772 [ sp_expire_available=yes ], []
3773 )
3774
3775 if test "x$sp_expire_available" = "xyes" ; then
3776 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003777 AC_DEFINE(HAS_SHADOW_EXPIRE, 1,
3778 [Define if you want to use shadow password expire field])
Damien Miller1f335fb2000-06-26 11:31:33 +10003779 else
3780 AC_MSG_RESULT(no)
3781 fi
3782fi
3783
Damien Millera22ba012000-03-02 23:09:20 +11003784# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11003785if test ! -z "$IPADDR_IN_DISPLAY" ; then
3786 DISPLAY_HACK_MSG="yes"
Tim Rice7df8d392005-09-19 09:33:39 -07003787 AC_DEFINE(IPADDR_IN_DISPLAY, 1,
3788 [Define if you need to use IP address
3789 instead of hostname in $DISPLAY])
Damien Miller9a947342000-08-30 10:03:33 +11003790else
Damien Millera8e06ce2003-11-21 23:48:55 +11003791 DISPLAY_HACK_MSG="no"
Damien Miller9a947342000-08-30 10:03:33 +11003792 AC_ARG_WITH(ipaddr-display,
3793 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
3794 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003795 if test "x$withval" != "xno" ; then
Damien Miller9a947342000-08-30 10:03:33 +11003796 AC_DEFINE(IPADDR_IN_DISPLAY)
Damien Millera8e06ce2003-11-21 23:48:55 +11003797 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11003798 fi
3799 ]
3800 )
3801fi
Damien Miller76112de1999-12-21 11:18:08 +11003802
Darren Tuckere1a790d2003-09-16 11:52:19 +10003803# check for /etc/default/login and use it if present.
Tim Rice7ff4e6d2003-09-22 19:50:14 -07003804AC_ARG_ENABLE(etc-default-login,
Darren Tucker1b6f2292005-02-11 16:11:49 +11003805 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
Darren Tucker2f9573d2005-02-10 22:28:54 +11003806 [ if test "x$enableval" = "xno"; then
3807 AC_MSG_NOTICE([/etc/default/login handling disabled])
3808 etc_default_login=no
3809 else
3810 etc_default_login=yes
3811 fi ],
Darren Tucker314d89e2005-10-17 23:29:23 +10003812 [ if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
3813 then
3814 AC_MSG_WARN([cross compiling: not checking /etc/default/login])
3815 etc_default_login=no
3816 else
3817 etc_default_login=yes
3818 fi ]
Darren Tucker2f9573d2005-02-10 22:28:54 +11003819)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003820
Darren Tucker2f9573d2005-02-10 22:28:54 +11003821if test "x$etc_default_login" != "xno"; then
3822 AC_CHECK_FILE("/etc/default/login",
3823 [ external_path_file=/etc/default/login ])
Darren Tucker314d89e2005-10-17 23:29:23 +10003824 if test "x$external_path_file" = "x/etc/default/login"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003825 AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN, 1,
3826 [Define if your system has /etc/default/login])
Darren Tuckera0c2b392004-09-11 23:26:37 +10003827 fi
Darren Tucker2f9573d2005-02-10 22:28:54 +11003828fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003829
Tim Rice43a1c132002-04-17 21:19:14 -07003830dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
Tim Rice8bb561b2005-03-17 16:23:19 -08003831if test $ac_cv_func_login_getcapbool = "yes" && \
3832 test $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003833 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07003834fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10003835
Damien Millera22ba012000-03-02 23:09:20 +11003836# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11003837SERVER_PATH_MSG="(default)"
Damien Millere7f626c1999-12-31 09:49:44 +11003838AC_ARG_WITH(default-path,
Damien Millerf71d2a52002-05-13 15:14:08 +10003839 [ --with-default-path= Specify default \$PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11003840 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10003841 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07003842 AC_MSG_WARN([
3843--with-default-path=PATH has no effect on this system.
3844Edit /etc/login.conf instead.])
Tim Riceeae17cc2005-03-17 16:52:20 -08003845 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07003846 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003847 AC_MSG_WARN([
3848--with-default-path=PATH will only be used if PATH is not defined in
3849$external_path_file .])
3850 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003851 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11003852 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11003853 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08003854 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10003855 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
3856 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07003857 else
Tim Riceb925b4b2003-09-15 22:40:49 -07003858 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10003859 AC_MSG_WARN([
3860If PATH is defined in $external_path_file, ensure the path to scp is included,
3861otherwise scp will not work.])
3862 fi
Darren Tucker314d89e2005-10-17 23:29:23 +10003863 AC_RUN_IFELSE(
3864 [AC_LANG_SOURCE([[
Tim Rice59ea0a02001-03-10 13:50:45 -08003865/* find out what STDPATH is */
3866#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08003867#ifdef HAVE_PATHS_H
3868# include <paths.h>
3869#endif
3870#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08003871# ifdef _PATH_USERPATH /* Irix */
3872# define _PATH_STDPATH _PATH_USERPATH
3873# else
3874# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
3875# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08003876#endif
3877#include <sys/types.h>
3878#include <sys/stat.h>
3879#include <fcntl.h>
3880#define DATA "conftest.stdpath"
3881
3882main()
3883{
3884 FILE *fd;
3885 int rc;
Tim Riceeae17cc2005-03-17 16:52:20 -08003886
Tim Rice59ea0a02001-03-10 13:50:45 -08003887 fd = fopen(DATA,"w");
3888 if(fd == NULL)
3889 exit(1);
Tim Riceeae17cc2005-03-17 16:52:20 -08003890
Tim Rice59ea0a02001-03-10 13:50:45 -08003891 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
3892 exit(1);
3893
3894 exit(0);
3895}
Darren Tucker314d89e2005-10-17 23:29:23 +10003896 ]])],
3897 [ user_path=`cat conftest.stdpath` ],
Tim Rice59ea0a02001-03-10 13:50:45 -08003898 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
3899 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
3900 )
3901# make sure $bindir is in USER_PATH so scp will work
3902 t_bindir=`eval echo ${bindir}`
3903 case $t_bindir in
3904 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
3905 esac
3906 case $t_bindir in
3907 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
3908 esac
3909 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
3910 if test $? -ne 0 ; then
3911 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
3912 if test $? -ne 0 ; then
3913 user_path=$user_path:$t_bindir
3914 AC_MSG_RESULT(Adding $t_bindir to USER_PATH so scp will work)
3915 fi
3916 fi
Tim Rice43a1c132002-04-17 21:19:14 -07003917 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11003918)
Darren Tuckere1a790d2003-09-16 11:52:19 +10003919if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003920 AC_DEFINE_UNQUOTED(USER_PATH, "$user_path", [Specify default $PATH])
Tim Rice43a1c132002-04-17 21:19:14 -07003921 AC_SUBST(user_path)
3922fi
Damien Miller5a3e6831999-12-27 09:48:56 +11003923
Damien Millera18bbd32002-05-13 10:48:57 +10003924# Set superuser path separately to user path
Damien Millera18bbd32002-05-13 10:48:57 +10003925AC_ARG_WITH(superuser-path,
3926 [ --with-superuser-path= Specify different path for super-user],
3927 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003928 if test -n "$withval" && test "x$withval" != "xno" && \
3929 test "x${withval}" != "xyes"; then
Tim Rice7df8d392005-09-19 09:33:39 -07003930 AC_DEFINE_UNQUOTED(SUPERUSER_PATH, "$withval",
3931 [Define if you want a different $PATH
3932 for the superuser])
Damien Millera18bbd32002-05-13 10:48:57 +10003933 superuser_path=$withval
3934 fi
3935 ]
3936)
3937
3938
Damien Miller61e50f12000-05-08 20:49:37 +10003939AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11003940IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11003941AC_ARG_WITH(4in6,
3942 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
3943 [
3944 if test "x$withval" != "xno" ; then
3945 AC_MSG_RESULT(yes)
Tim Rice7df8d392005-09-19 09:33:39 -07003946 AC_DEFINE(IPV4_IN_IPV6, 1,
3947 [Detect IPv4 in IPv6 mapped addresses
3948 and treat as IPv4])
Damien Millera8e06ce2003-11-21 23:48:55 +11003949 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003950 else
3951 AC_MSG_RESULT(no)
3952 fi
3953 ],[
3954 if test "x$inet6_default_4in6" = "xyes"; then
3955 AC_MSG_RESULT([yes (default)])
3956 AC_DEFINE(IPV4_IN_IPV6)
Damien Millera8e06ce2003-11-21 23:48:55 +11003957 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11003958 else
3959 AC_MSG_RESULT([no (default)])
3960 fi
3961 ]
3962)
3963
Damien Miller60396b02001-02-18 17:01:00 +11003964# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11003965BSD_AUTH_MSG=no
Damien Miller60396b02001-02-18 17:01:00 +11003966AC_ARG_WITH(bsd-auth,
3967 [ --with-bsd-auth Enable BSD auth support],
3968 [
Tim Riceeae17cc2005-03-17 16:52:20 -08003969 if test "x$withval" != "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07003970 AC_DEFINE(BSD_AUTH, 1,
3971 [Define if you have BSD auth support])
Damien Miller6c21c512002-01-22 21:57:53 +11003972 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11003973 fi
3974 ]
3975)
3976
Damien Millera22ba012000-03-02 23:09:20 +11003977# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11003978piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11003979# make sure the directory exists
Tim Riceeae17cc2005-03-17 16:52:20 -08003980if test ! -d $piddir ; then
Damien Miller78315eb2000-09-29 23:01:36 +11003981 piddir=`eval echo ${sysconfdir}`
3982 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11003983 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11003984 esac
3985fi
3986
Tim Rice88f2ab52002-03-17 12:17:34 -08003987AC_ARG_WITH(pid-dir,
3988 [ --with-pid-dir=PATH Specify location of ssh.pid file],
3989 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003990 if test -n "$withval" && test "x$withval" != "xno" && \
3991 test "x${withval}" != "xyes"; then
Tim Rice88f2ab52002-03-17 12:17:34 -08003992 piddir=$withval
Tim Riceeae17cc2005-03-17 16:52:20 -08003993 if test ! -d $piddir ; then
Tim Rice88f2ab52002-03-17 12:17:34 -08003994 AC_MSG_WARN([** no $piddir directory on this system **])
3995 fi
3996 fi
3997 ]
3998)
3999
Tim Rice7df8d392005-09-19 09:33:39 -07004000AC_DEFINE_UNQUOTED(_PATH_SSH_PIDDIR, "$piddir", [Specify location of ssh.pid])
Damien Millerb13c73e2000-01-17 22:02:17 +11004001AC_SUBST(piddir)
Damien Miller5eed6a22000-01-16 12:05:18 +11004002
andre2ff7b5d2000-06-03 14:57:40 +00004003dnl allow user to disable some login recording features
4004AC_ARG_ENABLE(lastlog,
andre43ca7e22000-06-19 08:23:46 +00004005 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004006 [
4007 if test "x$enableval" = "xno" ; then
4008 AC_DEFINE(DISABLE_LASTLOG)
4009 fi
4010 ]
andre2ff7b5d2000-06-03 14:57:40 +00004011)
4012AC_ARG_ENABLE(utmp,
andre43ca7e22000-06-19 08:23:46 +00004013 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004014 [
4015 if test "x$enableval" = "xno" ; then
4016 AC_DEFINE(DISABLE_UTMP)
4017 fi
4018 ]
andre2ff7b5d2000-06-03 14:57:40 +00004019)
4020AC_ARG_ENABLE(utmpx,
andre43ca7e22000-06-19 08:23:46 +00004021 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004022 [
4023 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07004024 AC_DEFINE(DISABLE_UTMPX, 1,
4025 [Define if you don't want to use utmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004026 fi
4027 ]
andre2ff7b5d2000-06-03 14:57:40 +00004028)
4029AC_ARG_ENABLE(wtmp,
andre43ca7e22000-06-19 08:23:46 +00004030 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004031 [
4032 if test "x$enableval" = "xno" ; then
4033 AC_DEFINE(DISABLE_WTMP)
4034 fi
4035 ]
andre2ff7b5d2000-06-03 14:57:40 +00004036)
4037AC_ARG_ENABLE(wtmpx,
andre43ca7e22000-06-19 08:23:46 +00004038 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004039 [
4040 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07004041 AC_DEFINE(DISABLE_WTMPX, 1,
4042 [Define if you don't want to use wtmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004043 fi
4044 ]
andre2ff7b5d2000-06-03 14:57:40 +00004045)
4046AC_ARG_ENABLE(libutil,
andre43ca7e22000-06-19 08:23:46 +00004047 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004048 [
4049 if test "x$enableval" = "xno" ; then
4050 AC_DEFINE(DISABLE_LOGIN)
4051 fi
4052 ]
andre2ff7b5d2000-06-03 14:57:40 +00004053)
4054AC_ARG_ENABLE(pututline,
andre43ca7e22000-06-19 08:23:46 +00004055 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004056 [
4057 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07004058 AC_DEFINE(DISABLE_PUTUTLINE, 1,
4059 [Define if you don't want to use pututline()
4060 etc. to write [uw]tmp])
Darren Tuckera3020db2003-06-28 12:54:33 +10004061 fi
4062 ]
andre2ff7b5d2000-06-03 14:57:40 +00004063)
4064AC_ARG_ENABLE(pututxline,
andre43ca7e22000-06-19 08:23:46 +00004065 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004066 [
4067 if test "x$enableval" = "xno" ; then
Tim Rice7df8d392005-09-19 09:33:39 -07004068 AC_DEFINE(DISABLE_PUTUTXLINE, 1,
4069 [Define if you don't want to use pututxline()
4070 etc. to write [uw]tmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004071 fi
4072 ]
andre2ff7b5d2000-06-03 14:57:40 +00004073)
4074AC_ARG_WITH(lastlog,
andre43ca7e22000-06-19 08:23:46 +00004075 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11004076 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004077 if test "x$withval" = "xno" ; then
Damien Miller709528a2001-01-31 09:57:55 +11004078 AC_DEFINE(DISABLE_LASTLOG)
Tim Rice35cc69d2005-03-17 16:44:25 -08004079 elif test -n "$withval" && test "x${withval}" != "xyes"; then
Damien Miller709528a2001-01-31 09:57:55 +11004080 conf_lastlog_location=$withval
4081 fi
4082 ]
4083)
andre2ff7b5d2000-06-03 14:57:40 +00004084
4085dnl lastlog, [uw]tmpx? detection
4086dnl NOTE: set the paths in the platform section to avoid the
4087dnl need for command-line parameters
4088dnl lastlog and [uw]tmp are subject to a file search if all else fails
4089
4090dnl lastlog detection
4091dnl NOTE: the code itself will detect if lastlog is a directory
4092AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
4093AC_TRY_COMPILE([
4094#include <sys/types.h>
4095#include <utmp.h>
4096#ifdef HAVE_LASTLOG_H
4097# include <lastlog.h>
4098#endif
Damien Miller2994e082000-06-04 15:51:47 +10004099#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004100# include <paths.h>
4101#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00004102#ifdef HAVE_LOGIN_H
4103# include <login.h>
4104#endif
andre2ff7b5d2000-06-03 14:57:40 +00004105 ],
4106 [ char *lastlog = LASTLOG_FILE; ],
4107 [ AC_MSG_RESULT(yes) ],
Damien Miller2994e082000-06-04 15:51:47 +10004108 [
4109 AC_MSG_RESULT(no)
4110 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
4111 AC_TRY_COMPILE([
4112#include <sys/types.h>
4113#include <utmp.h>
4114#ifdef HAVE_LASTLOG_H
4115# include <lastlog.h>
4116#endif
4117#ifdef HAVE_PATHS_H
4118# include <paths.h>
4119#endif
4120 ],
4121 [ char *lastlog = _PATH_LASTLOG; ],
4122 [ AC_MSG_RESULT(yes) ],
4123 [
andree441aa32000-06-12 22:34:38 +00004124 AC_MSG_RESULT(no)
Damien Miller2994e082000-06-04 15:51:47 +10004125 system_lastlog_path=no
4126 ])
4127 ]
andre2ff7b5d2000-06-03 14:57:40 +00004128)
Damien Miller2994e082000-06-04 15:51:47 +10004129
andre2ff7b5d2000-06-03 14:57:40 +00004130if test -z "$conf_lastlog_location"; then
4131 if test x"$system_lastlog_path" = x"no" ; then
4132 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10004133 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00004134 conf_lastlog_location=$f
4135 fi
4136 done
4137 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00004138 AC_MSG_WARN([** Cannot find lastlog **])
4139 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00004140 fi
4141 fi
4142fi
4143
4144if test -n "$conf_lastlog_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07004145 AC_DEFINE_UNQUOTED(CONF_LASTLOG_FILE, "$conf_lastlog_location",
4146 [Define if you want to specify the path to your lastlog file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004147fi
andre2ff7b5d2000-06-03 14:57:40 +00004148
4149dnl utmp detection
4150AC_MSG_CHECKING([if your system defines UTMP_FILE])
4151AC_TRY_COMPILE([
4152#include <sys/types.h>
4153#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10004154#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004155# include <paths.h>
4156#endif
4157 ],
4158 [ char *utmp = UTMP_FILE; ],
4159 [ AC_MSG_RESULT(yes) ],
4160 [ AC_MSG_RESULT(no)
4161 system_utmp_path=no ]
4162)
4163if test -z "$conf_utmp_location"; then
4164 if test x"$system_utmp_path" = x"no" ; then
4165 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
4166 if test -f $f ; then
4167 conf_utmp_location=$f
4168 fi
4169 done
4170 if test -z "$conf_utmp_location"; then
4171 AC_DEFINE(DISABLE_UTMP)
4172 fi
4173 fi
4174fi
4175if test -n "$conf_utmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07004176 AC_DEFINE_UNQUOTED(CONF_UTMP_FILE, "$conf_utmp_location",
4177 [Define if you want to specify the path to your utmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004178fi
andre2ff7b5d2000-06-03 14:57:40 +00004179
4180dnl wtmp detection
4181AC_MSG_CHECKING([if your system defines WTMP_FILE])
4182AC_TRY_COMPILE([
4183#include <sys/types.h>
4184#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10004185#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004186# include <paths.h>
4187#endif
4188 ],
4189 [ char *wtmp = WTMP_FILE; ],
4190 [ AC_MSG_RESULT(yes) ],
4191 [ AC_MSG_RESULT(no)
4192 system_wtmp_path=no ]
4193)
4194if test -z "$conf_wtmp_location"; then
4195 if test x"$system_wtmp_path" = x"no" ; then
4196 for f in /usr/adm/wtmp /var/log/wtmp; do
4197 if test -f $f ; then
4198 conf_wtmp_location=$f
4199 fi
4200 done
4201 if test -z "$conf_wtmp_location"; then
4202 AC_DEFINE(DISABLE_WTMP)
4203 fi
4204 fi
4205fi
4206if test -n "$conf_wtmp_location"; then
Tim Rice7df8d392005-09-19 09:33:39 -07004207 AC_DEFINE_UNQUOTED(CONF_WTMP_FILE, "$conf_wtmp_location",
4208 [Define if you want to specify the path to your wtmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004209fi
andre2ff7b5d2000-06-03 14:57:40 +00004210
4211
andre2ff7b5d2000-06-03 14:57:40 +00004212dnl wtmpx detection
4213AC_MSG_CHECKING([if your system defines WTMPX_FILE])
4214AC_TRY_COMPILE([
4215#include <sys/types.h>
4216#include <utmp.h>
4217#ifdef HAVE_UTMPX_H
4218#include <utmpx.h>
4219#endif
Damien Miller2994e082000-06-04 15:51:47 +10004220#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004221# include <paths.h>
4222#endif
4223 ],
4224 [ char *wtmpx = WTMPX_FILE; ],
4225 [ AC_MSG_RESULT(yes) ],
4226 [ AC_MSG_RESULT(no)
4227 system_wtmpx_path=no ]
4228)
4229if test -z "$conf_wtmpx_location"; then
4230 if test x"$system_wtmpx_path" = x"no" ; then
4231 AC_DEFINE(DISABLE_WTMPX)
4232 fi
4233else
Tim Rice7df8d392005-09-19 09:33:39 -07004234 AC_DEFINE_UNQUOTED(CONF_WTMPX_FILE, "$conf_wtmpx_location",
4235 [Define if you want to specify the path to your wtmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004236fi
andre2ff7b5d2000-06-03 14:57:40 +00004237
Damien Miller4018c192000-04-30 09:30:44 +10004238
Damien Miller29ea30d2000-03-17 10:54:15 +11004239if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10004240 LDFLAGS="$LDFLAGS $blibflags$blibpath"
4241 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11004242fi
4243
Darren Tucker7da23cb2005-08-03 00:20:15 +10004244dnl Adding -Werror to CFLAGS early prevents configure tests from running.
4245dnl Add now.
4246CFLAGS="$CFLAGS $werror_flags"
4247
Darren Tucker627337d2010-04-10 22:58:01 +10004248if test "x$ac_cv_func_getaddrinfo" != "xyes" ; then
4249 TEST_SSH_IPV6=no
4250else
4251 TEST_SSH_IPV6=yes
4252fi
4253AC_CHECK_DECL(BROKEN_GETADDRINFO, TEST_SSH_IPV6=no)
4254AC_SUBST(TEST_SSH_IPV6, $TEST_SSH_IPV6)
Darren Tucker5d376902008-06-11 04:15:05 +10004255
Damien Millerbac2d8a2000-09-05 16:13:06 +11004256AC_EXEEXT
Damien Miller223897a2006-09-12 21:54:10 +10004257AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openssh.xml \
4258 openbsd-compat/Makefile openbsd-compat/regress/Makefile \
Damien Millerd8f60022010-02-12 09:34:22 +11004259 ssh_prng_cmds survey.sh])
Tim Rice13aae5e2001-10-21 17:53:58 -07004260AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10004261
Damien Miller7b22d652000-06-18 14:07:04 +10004262# Print summary of options
4263
Damien Miller7b22d652000-06-18 14:07:04 +10004264# Someone please show me a better way :)
4265A=`eval echo ${prefix}` ; A=`eval echo ${A}`
4266B=`eval echo ${bindir}` ; B=`eval echo ${B}`
4267C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
4268D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00004269E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00004270F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10004271G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10004272H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
4273I=`eval echo ${user_path}` ; I=`eval echo ${I}`
4274J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10004275
4276echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00004277echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10004278echo " User binaries: $B"
4279echo " System binaries: $C"
4280echo " Configuration files: $D"
4281echo " Askpass program: $E"
4282echo " Manual pages: $F"
4283echo " PID file: $G"
4284echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10004285if test "x$external_path_file" = "x/etc/login.conf" ; then
4286echo " At runtime, sshd will use the path defined in $external_path_file"
4287echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07004288else
Damien Millerf58c6722002-05-13 13:15:42 +10004289echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07004290 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004291echo " (If PATH is set in $external_path_file it will be used instead. If"
4292echo " used, ensure the path to scp is present, otherwise scp will not work.)"
4293 fi
Tim Rice43a1c132002-04-17 21:19:14 -07004294fi
Damien Millera18bbd32002-05-13 10:48:57 +10004295if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10004296echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10004297fi
Damien Millerf58c6722002-05-13 13:15:42 +10004298echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10004299echo " PAM support: $PAM_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10004300echo " OSF SIA support: $SIA_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004301echo " KerberosV support: $KRB5_MSG"
Damien Miller73b42d22006-04-22 21:26:08 +10004302echo " SELinux support: $SELINUX_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004303echo " Smartcard support: $SCARD_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004304echo " S/KEY support: $SKEY_MSG"
4305echo " TCP Wrappers support: $TCPW_MSG"
4306echo " MD5 password support: $MD5_MSG"
Darren Tucker16bcc1c2004-11-07 20:14:34 +11004307echo " libedit support: $LIBEDIT_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10004308echo " Solaris process contract support: $SPC_MSG"
Darren Tucker97528352010-11-05 12:03:05 +11004309echo " Solaris project support: $SP_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10004310echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10004311echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
4312echo " BSD Auth support: $BSD_AUTH_MSG"
4313echo " Random number source: $RAND_MSG"
Damien Miller6c21c512002-01-22 21:57:53 +11004314if test ! -z "$USE_RAND_HELPER" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10004315echo " ssh-rand-helper collects from: $RAND_HELPER_MSG"
Damien Miller60396b02001-02-18 17:01:00 +11004316fi
4317
Damien Miller7b22d652000-06-18 14:07:04 +10004318echo ""
4319
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00004320echo " Host: ${host}"
4321echo " Compiler: ${CC}"
4322echo " Compiler flags: ${CFLAGS}"
4323echo "Preprocessor flags: ${CPPFLAGS}"
4324echo " Linker flags: ${LDFLAGS}"
Darren Tucker20e9f972007-03-25 18:26:01 +10004325echo " Libraries: ${LIBS}"
4326if test ! -z "${SSHDLIBS}"; then
4327echo " +for sshd: ${SSHDLIBS}"
4328fi
Damien Miller7b22d652000-06-18 14:07:04 +10004329
4330echo ""
4331
Tim Rice6f1f7582004-05-30 21:38:51 -07004332if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
Darren Tuckercf59d312004-08-29 21:18:09 +10004333 echo "SVR4 style packages are supported with \"make package\""
4334 echo ""
Tim Rice6f1f7582004-05-30 21:38:51 -07004335fi
4336
Damien Miller82cf0ce2000-12-20 13:34:48 +11004337if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11004338 echo "PAM is enabled. You may need to install a PAM control file "
4339 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11004340 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11004341 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11004342 echo ""
4343fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00004344
Damien Miller6c21c512002-01-22 21:57:53 +11004345if test ! -z "$RAND_HELPER_CMDHASH" ; then
4346 echo "WARNING: you are using the builtin random number collection "
4347 echo "service. Please read WARNING.RNG and request that your OS "
4348 echo "vendor includes kernel-based random number collection in "
4349 echo "future versions of your OS."
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00004350 echo ""
4351fi
Damien Miller60396b02001-02-18 17:01:00 +11004352
Damien Millerb4097182004-05-23 14:09:40 +10004353if test ! -z "$NO_PEERCHECK" ; then
Darren Tucker164aa302007-03-21 21:39:57 +11004354 echo "WARNING: the operating system that you are using does not"
4355 echo "appear to support getpeereid(), getpeerucred() or the"
4356 echo "SO_PEERCRED getsockopt() option. These facilities are used to"
4357 echo "enforce security checks to prevent unauthorised connections to"
4358 echo "ssh-agent. Their absence increases the risk that a malicious"
4359 echo "user can connect to your agent."
Damien Millerb4097182004-05-23 14:09:40 +10004360 echo ""
4361fi
4362
Darren Tuckerd9f88912005-02-20 21:01:48 +11004363if test "$AUDIT_MODULE" = "bsm" ; then
4364 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
4365 echo "See the Solaris section in README.platform for details."
4366fi