blob: c2878e3d441515c59e43dc71dd86c564bbab40a4 [file] [log] [blame]
Damien Miller3d673d12014-08-27 06:32:01 +10001# $Id: configure.ac,v 1.583 2014/08/26 20:32:01 djm Exp $
Damien Miller4fefe242004-03-11 14:20:10 +11002#
3# Copyright (c) 1999-2004 Damien Miller
4#
5# Permission to use, copy, modify, and distribute this software for any
6# purpose with or without fee is hereby granted, provided that the above
7# copyright notice and this permission notice appear in all copies.
8#
9# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Damien Millere9cf3572001-02-09 12:55:35 +110016
Tim Rice648f8762011-01-26 12:38:57 -080017AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
Damien Miller3d673d12014-08-27 06:32:01 +100018AC_REVISION($Revision: 1.583 $)
Tim Rice13aae5e2001-10-21 17:53:58 -070019AC_CONFIG_SRCDIR([ssh.c])
Tim Rice648f8762011-01-26 12:38:57 -080020AC_LANG([C])
Damien Miller7f6ea021999-10-28 13:25:17 +100021
Tim Rice648f8762011-01-26 12:38:57 -080022AC_CONFIG_HEADER([config.h])
Damien Miller856799b2000-03-15 21:18:10 +110023AC_PROG_CC
Damien Miller76112de1999-12-21 11:18:08 +110024AC_CANONICAL_HOST
Damien Miller4df5c762001-02-28 08:14:22 +110025AC_C_BIGENDIAN
Damien Miller7f6ea021999-10-28 13:25:17 +100026
Damien Millera22ba012000-03-02 23:09:20 +110027# Checks for programs.
Darren Tucker167bd9c2003-09-07 12:34:54 +100028AC_PROG_AWK
Damien Millerab18c411999-11-11 10:40:23 +110029AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +100030AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110031AC_PROG_INSTALL
Tim Ricefd80ddc2006-02-02 19:11:56 -080032AC_PROG_EGREP
Darren Tucker408f4c22015-04-17 09:39:58 +100033AC_CHECK_TOOLS([AR], [ar])
Tim Rice648f8762011-01-26 12:38:57 -080034AC_PATH_PROG([CAT], [cat])
35AC_PATH_PROG([KILL], [kill])
36AC_PATH_PROGS([PERL], [perl5 perl])
37AC_PATH_PROG([SED], [sed])
38AC_SUBST([PERL])
39AC_PATH_PROG([ENT], [ent])
40AC_SUBST([ENT])
41AC_PATH_PROG([TEST_MINUS_S_SH], [bash])
42AC_PATH_PROG([TEST_MINUS_S_SH], [ksh])
43AC_PATH_PROG([TEST_MINUS_S_SH], [sh])
44AC_PATH_PROG([SH], [sh])
45AC_PATH_PROG([GROFF], [groff])
46AC_PATH_PROG([NROFF], [nroff])
47AC_PATH_PROG([MANDOC], [mandoc])
48AC_SUBST([TEST_SHELL], [sh])
Damien Miller2e1b0821999-12-25 10:11:29 +110049
Damien Miller30a69e72011-01-04 08:16:27 +110050dnl select manpage formatter
51if test "x$MANDOC" != "x" ; then
52 MANFMT="$MANDOC"
53elif test "x$NROFF" != "x" ; then
54 MANFMT="$NROFF -mandoc"
55elif test "x$GROFF" != "x" ; then
56 MANFMT="$GROFF -mandoc -Tascii"
57else
58 AC_MSG_WARN([no manpage formatted found])
59 MANFMT="false"
60fi
Tim Rice648f8762011-01-26 12:38:57 -080061AC_SUBST([MANFMT])
Damien Miller30a69e72011-01-04 08:16:27 +110062
Tim Rice6f1f7582004-05-30 21:38:51 -070063dnl for buildpkg.sh
Tim Rice648f8762011-01-26 12:38:57 -080064AC_PATH_PROG([PATH_GROUPADD_PROG], [groupadd], [groupadd],
Tim Rice6f1f7582004-05-30 21:38:51 -070065 [/usr/sbin${PATH_SEPARATOR}/etc])
Tim Rice648f8762011-01-26 12:38:57 -080066AC_PATH_PROG([PATH_USERADD_PROG], [useradd], [useradd],
Tim Rice6f1f7582004-05-30 21:38:51 -070067 [/usr/sbin${PATH_SEPARATOR}/etc])
Tim Rice648f8762011-01-26 12:38:57 -080068AC_CHECK_PROG([MAKE_PACKAGE_SUPPORTED], [pkgmk], [yes], [no])
Darren Tuckerfbea7642006-01-30 00:22:39 +110069if test -x /sbin/sh; then
Tim Rice648f8762011-01-26 12:38:57 -080070 AC_SUBST([STARTUP_SCRIPT_SHELL], [/sbin/sh])
Darren Tuckerfbea7642006-01-30 00:22:39 +110071else
Tim Rice648f8762011-01-26 12:38:57 -080072 AC_SUBST([STARTUP_SCRIPT_SHELL], [/bin/sh])
Darren Tuckerfbea7642006-01-30 00:22:39 +110073fi
Tim Rice6f1f7582004-05-30 21:38:51 -070074
Damien Millere8bb4502001-09-25 16:39:35 +100075# System features
76AC_SYS_LARGEFILE
77
Damien Miller3f62aba2000-11-29 11:56:35 +110078if test -z "$AR" ; then
79 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
80fi
81
Tim Rice648f8762011-01-26 12:38:57 -080082AC_PATH_PROG([PATH_PASSWD_PROG], [passwd])
Darren Tucker23bc8d02004-02-06 16:24:31 +110083if test ! -z "$PATH_PASSWD_PROG" ; then
Tim Rice648f8762011-01-26 12:38:57 -080084 AC_DEFINE_UNQUOTED([_PATH_PASSWD_PROG], ["$PATH_PASSWD_PROG"],
Tim Rice7df8d392005-09-19 09:33:39 -070085 [Full path of your "passwd" program])
Darren Tucker23bc8d02004-02-06 16:24:31 +110086fi
87
Damien Miller166bd442000-03-16 10:48:25 +110088if test -z "$LD" ; then
89 LD=$CC
90fi
Tim Rice648f8762011-01-26 12:38:57 -080091AC_SUBST([LD])
Tim Riceeae17cc2005-03-17 16:52:20 -080092
Damien Miller166bd442000-03-16 10:48:25 +110093AC_C_INLINE
Darren Tucker67b37032005-06-03 17:58:31 +100094
Tim Rice648f8762011-01-26 12:38:57 -080095AC_CHECK_DECL([LLONG_MAX], [have_llong_max=1], , [#include <limits.h>])
Damien Miller69ff1df2011-06-23 08:30:03 +100096AC_CHECK_DECL([SYSTR_POLICY_KILL], [have_systr_policy_kill=1], , [
97 #include <sys/types.h>
98 #include <sys/param.h>
99 #include <dev/systrace.h>
100])
101AC_CHECK_DECL([RLIMIT_NPROC],
102 [AC_DEFINE([HAVE_RLIMIT_NPROC], [], [sys/resource.h has RLIMIT_NPROC])], , [
103 #include <sys/types.h>
104 #include <sys/resource.h>
105])
Damien Millere0956e32012-04-04 11:27:54 +1000106AC_CHECK_DECL([PR_SET_NO_NEW_PRIVS], [have_linux_no_new_privs=1], , [
107 #include <sys/types.h>
108 #include <linux/prctl.h>
109])
Damien Miller868ea1e2014-01-17 16:47:04 +1100110
Damien Miller72ef7c12015-01-15 02:21:31 +1100111openssl=yes
djm@openbsd.org564d63e2015-07-01 23:10:47 +0000112ssh1=no
Tim Ricecf3e0be2016-08-01 14:31:52 -0700113COMMENT_OUT_RSA1="#no ssh1#"
Damien Miller72ef7c12015-01-15 02:21:31 +1100114AC_ARG_WITH([openssl],
115 [ --without-openssl Disable use of OpenSSL; use only limited internal crypto **EXPERIMENTAL** ],
Damien Miller76c04802015-01-13 19:38:18 +1100116 [ if test "x$withval" = "xno" ; then
Damien Miller72ef7c12015-01-15 02:21:31 +1100117 openssl=no
Damien Miller76c04802015-01-13 19:38:18 +1100118 ssh1=no
119 fi
120 ]
121)
Damien Miller72ef7c12015-01-15 02:21:31 +1100122AC_MSG_CHECKING([whether OpenSSL will be used for cryptography])
123if test "x$openssl" = "xyes" ; then
124 AC_MSG_RESULT([yes])
125 AC_DEFINE_UNQUOTED([WITH_OPENSSL], [1], [use libcrypto for cryptography])
126else
127 AC_MSG_RESULT([no])
128fi
129
130AC_ARG_WITH([ssh1],
Darren Tucker366bada2015-09-11 13:29:22 +1000131 [ --with-ssh1 Enable support for SSH protocol 1],
Damien Miller72ef7c12015-01-15 02:21:31 +1100132 [
djm@openbsd.org2aa9da12015-03-24 01:29:19 +0000133 if test "x$withval" = "xyes" ; then
134 if test "x$openssl" = "xno" ; then
135 AC_MSG_ERROR([Cannot enable SSH protocol 1 with OpenSSL disabled])
136 fi
137 ssh1=yes
Tim Ricecf3e0be2016-08-01 14:31:52 -0700138 COMMENT_OUT_RSA1=""
Damien Miller0c2a81d2015-05-29 17:08:28 +1000139 elif test "x$withval" = "xno" ; then
140 ssh1=no
141 else
142 AC_MSG_ERROR([unknown --with-ssh1 argument])
Damien Miller72ef7c12015-01-15 02:21:31 +1100143 fi
144 ]
145)
Damien Miller76c04802015-01-13 19:38:18 +1100146AC_MSG_CHECKING([whether SSH protocol 1 support is enabled])
147if test "x$ssh1" = "xyes" ; then
148 AC_MSG_RESULT([yes])
149 AC_DEFINE_UNQUOTED([WITH_SSH1], [1], [include SSH protocol version 1 support])
Tim Ricecf3e0be2016-08-01 14:31:52 -0700150 AC_SUBST([COMMENT_OUT_RSA1])
Damien Miller76c04802015-01-13 19:38:18 +1100151else
152 AC_MSG_RESULT([no])
153fi
154
Darren Tuckerb7918af2008-03-09 11:34:23 +1100155use_stack_protector=1
Darren Tuckerfd994372014-01-17 09:53:24 +1100156use_toolchain_hardening=1
Tim Rice648f8762011-01-26 12:38:57 -0800157AC_ARG_WITH([stackprotect],
Damien Millerda3155e2008-03-27 12:30:18 +1100158 [ --without-stackprotect Don't use compiler's stack protection], [
Darren Tuckerb7918af2008-03-09 11:34:23 +1100159 if test "x$withval" = "xno"; then
160 use_stack_protector=0
161 fi ])
Darren Tuckerfd994372014-01-17 09:53:24 +1100162AC_ARG_WITH([hardening],
163 [ --without-hardening Don't use toolchain hardening flags], [
164 if test "x$withval" = "xno"; then
Darren Tuckerfd994372014-01-17 09:53:24 +1100165 use_toolchain_hardening=0
166 fi ])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100167
Darren Tuckerfd994372014-01-17 09:53:24 +1100168# We use -Werror for the tests only so that we catch warnings like "this is
169# on by default" for things like -fPIE.
170AC_MSG_CHECKING([if $CC supports -Werror])
171saved_CFLAGS="$CFLAGS"
172CFLAGS="$CFLAGS -Werror"
173AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int main(void) { return 0; }]])],
174 [ AC_MSG_RESULT([yes])
175 WERROR="-Werror"],
176 [ AC_MSG_RESULT([no])
177 WERROR="" ]
178)
179CFLAGS="$saved_CFLAGS"
Damien Miller134d02a2011-01-12 16:00:37 +1100180
Damien Millera8e06ce2003-11-21 23:48:55 +1100181if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
Darren Tuckerfd994372014-01-17 09:53:24 +1100182 OSSH_CHECK_CFLAG_COMPILE([-Qunused-arguments])
183 OSSH_CHECK_CFLAG_COMPILE([-Wunknown-warning-option])
Damien Millerb1763622011-05-20 11:45:25 +1000184 OSSH_CHECK_CFLAG_COMPILE([-Wall])
185 OSSH_CHECK_CFLAG_COMPILE([-Wpointer-arith])
186 OSSH_CHECK_CFLAG_COMPILE([-Wuninitialized])
187 OSSH_CHECK_CFLAG_COMPILE([-Wsign-compare])
188 OSSH_CHECK_CFLAG_COMPILE([-Wformat-security])
Darren Tuckerabbc7a72013-05-10 13:54:23 +1000189 OSSH_CHECK_CFLAG_COMPILE([-Wsizeof-pointer-memaccess])
Damien Millerb1763622011-05-20 11:45:25 +1000190 OSSH_CHECK_CFLAG_COMPILE([-Wpointer-sign], [-Wno-pointer-sign])
191 OSSH_CHECK_CFLAG_COMPILE([-Wunused-result], [-Wno-unused-result])
192 OSSH_CHECK_CFLAG_COMPILE([-fno-strict-aliasing])
Darren Tucker4a725ef2011-11-21 16:38:48 +1100193 OSSH_CHECK_CFLAG_COMPILE([-D_FORTIFY_SOURCE=2])
Darren Tuckerfd994372014-01-17 09:53:24 +1100194 if test "x$use_toolchain_hardening" = "x1"; then
Darren Tuckerfd994372014-01-17 09:53:24 +1100195 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,relro])
196 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,now])
197 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,noexecstack])
Damien Miller5c2ff5e2014-01-22 21:30:12 +1100198 # NB. -ftrapv expects certain support functions to be present in
199 # the compiler library (libgcc or similar) to detect integer operations
200 # that can overflow. We must check that the result of enabling it
201 # actually links. The test program compiled/linked includes a number
202 # of integer operations that should exercise this.
203 OSSH_CHECK_CFLAG_LINK([-ftrapv])
Darren Tuckerfd994372014-01-17 09:53:24 +1100204 fi
Tim Rice648f8762011-01-26 12:38:57 -0800205 AC_MSG_CHECKING([gcc version])
Darren Tucker3f9545e2005-11-12 15:20:52 +1100206 GCC_VER=`$CC -v 2>&1 | $AWK '/gcc version /{print $3}'`
Tim Rice3db1e3f2005-08-23 17:11:26 -0700207 case $GCC_VER in
Darren Tucker391de5c2007-04-29 14:49:21 +1000208 1.*) no_attrib_nonnull=1 ;;
209 2.8* | 2.9*)
Darren Tucker391de5c2007-04-29 14:49:21 +1000210 no_attrib_nonnull=1
211 ;;
212 2.*) no_attrib_nonnull=1 ;;
Darren Tuckerf0324352005-11-10 21:30:36 +1100213 *) ;;
Tim Rice3db1e3f2005-08-23 17:11:26 -0700214 esac
Tim Rice648f8762011-01-26 12:38:57 -0800215 AC_MSG_RESULT([$GCC_VER])
Damien Millerde3cb0a2005-05-26 20:48:25 +1000216
Tim Rice648f8762011-01-26 12:38:57 -0800217 AC_MSG_CHECKING([if $CC accepts -fno-builtin-memset])
Darren Tucker330c93f2008-06-16 02:27:48 +1000218 saved_CFLAGS="$CFLAGS"
219 CFLAGS="$CFLAGS -fno-builtin-memset"
Tim Rice648f8762011-01-26 12:38:57 -0800220 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <string.h> ]],
221 [[ char b[10]; memset(b, 0, sizeof(b)); ]])],
222 [ AC_MSG_RESULT([yes]) ],
223 [ AC_MSG_RESULT([no])
Darren Tucker330c93f2008-06-16 02:27:48 +1000224 CFLAGS="$saved_CFLAGS" ]
Tim Rice648f8762011-01-26 12:38:57 -0800225 )
Darren Tucker330c93f2008-06-16 02:27:48 +1000226
Darren Tuckerb7918af2008-03-09 11:34:23 +1100227 # -fstack-protector-all doesn't always work for some GCC versions
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100228 # and/or platforms, so we test if we can. If it's not supported
Damien Miller7df2e402008-12-08 09:35:36 +1100229 # on a given platform gcc will emit a warning so we use -Werror.
Darren Tuckerb7918af2008-03-09 11:34:23 +1100230 if test "x$use_stack_protector" = "x1"; then
Darren Tuckerfd994372014-01-17 09:53:24 +1100231 for t in -fstack-protector-strong -fstack-protector-all \
232 -fstack-protector; do
Tim Rice648f8762011-01-26 12:38:57 -0800233 AC_MSG_CHECKING([if $CC supports $t])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100234 saved_CFLAGS="$CFLAGS"
235 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100236 CFLAGS="$CFLAGS $t -Werror"
237 LDFLAGS="$LDFLAGS $t -Werror"
238 AC_LINK_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -0800239 [AC_LANG_PROGRAM([[ #include <stdio.h> ]],
240 [[
241 char x[256];
242 snprintf(x, sizeof(x), "XXX");
243 ]])],
244 [ AC_MSG_RESULT([yes])
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100245 CFLAGS="$saved_CFLAGS $t"
246 LDFLAGS="$saved_LDFLAGS $t"
Tim Rice648f8762011-01-26 12:38:57 -0800247 AC_MSG_CHECKING([if $t works])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100248 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -0800249 [AC_LANG_PROGRAM([[ #include <stdio.h> ]],
250 [[
251 char x[256];
252 snprintf(x, sizeof(x), "XXX");
253 ]])],
254 [ AC_MSG_RESULT([yes])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100255 break ],
Tim Rice648f8762011-01-26 12:38:57 -0800256 [ AC_MSG_RESULT([no]) ],
Darren Tuckerb7918af2008-03-09 11:34:23 +1100257 [ AC_MSG_WARN([cross compiling: cannot test])
258 break ]
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100259 )
Darren Tuckerb7918af2008-03-09 11:34:23 +1100260 ],
Tim Rice648f8762011-01-26 12:38:57 -0800261 [ AC_MSG_RESULT([no]) ]
Darren Tuckerb7918af2008-03-09 11:34:23 +1100262 )
263 CFLAGS="$saved_CFLAGS"
264 LDFLAGS="$saved_LDFLAGS"
265 done
266 fi
Darren Tucker319b3d92007-12-02 21:02:22 +1100267
Darren Tucker67b37032005-06-03 17:58:31 +1000268 if test -z "$have_llong_max"; then
269 # retry LLONG_MAX with -std=gnu99, needed on some Linuxes
270 unset ac_cv_have_decl_LLONG_MAX
271 saved_CFLAGS="$CFLAGS"
272 CFLAGS="$CFLAGS -std=gnu99"
Tim Rice648f8762011-01-26 12:38:57 -0800273 AC_CHECK_DECL([LLONG_MAX],
Darren Tucker67b37032005-06-03 17:58:31 +1000274 [have_llong_max=1],
275 [CFLAGS="$saved_CFLAGS"],
276 [#include <limits.h>]
277 )
278 fi
Damien Miller166bd442000-03-16 10:48:25 +1100279fi
280
Darren Tucker951b53b2013-02-08 11:50:09 +1100281AC_MSG_CHECKING([if compiler allows __attribute__ on return types])
282AC_COMPILE_IFELSE(
283 [AC_LANG_PROGRAM([[
284#include <stdlib.h>
285__attribute__((__unused__)) static void foo(void){return;}]],
286 [[ exit(0); ]])],
287 [ AC_MSG_RESULT([yes]) ],
288 [ AC_MSG_RESULT([no])
289 AC_DEFINE(NO_ATTRIBUTE_ON_RETURN_TYPE, 1,
290 [compiler does not accept __attribute__ on return types]) ]
291)
292
Darren Tucker391de5c2007-04-29 14:49:21 +1000293if test "x$no_attrib_nonnull" != "x1" ; then
Tim Rice648f8762011-01-26 12:38:57 -0800294 AC_DEFINE([HAVE_ATTRIBUTE__NONNULL__], [1], [Have attribute nonnull])
Darren Tucker391de5c2007-04-29 14:49:21 +1000295fi
296
Tim Rice648f8762011-01-26 12:38:57 -0800297AC_ARG_WITH([rpath],
Tim Rice88368a32003-12-08 12:35:59 -0800298 [ --without-rpath Disable auto-added -R linker paths],
299 [
Tim Riceeae17cc2005-03-17 16:52:20 -0800300 if test "x$withval" = "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800301 need_dash_r=""
302 fi
303 if test "x$withval" = "xyes" ; then
304 need_dash_r=1
305 fi
306 ]
307)
308
Tim Rice1cfab232006-10-03 09:34:35 -0700309# Allow user to specify flags
Tim Rice648f8762011-01-26 12:38:57 -0800310AC_ARG_WITH([cflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700311 [ --with-cflags Specify additional flags to pass to compiler],
312 [
313 if test -n "$withval" && test "x$withval" != "xno" && \
314 test "x${withval}" != "xyes"; then
315 CFLAGS="$CFLAGS $withval"
316 fi
317 ]
318)
Tim Rice648f8762011-01-26 12:38:57 -0800319AC_ARG_WITH([cppflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700320 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
321 [
322 if test -n "$withval" && test "x$withval" != "xno" && \
323 test "x${withval}" != "xyes"; then
324 CPPFLAGS="$CPPFLAGS $withval"
325 fi
326 ]
327)
Tim Rice648f8762011-01-26 12:38:57 -0800328AC_ARG_WITH([ldflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700329 [ --with-ldflags Specify additional flags to pass to linker],
330 [
331 if test -n "$withval" && test "x$withval" != "xno" && \
332 test "x${withval}" != "xyes"; then
333 LDFLAGS="$LDFLAGS $withval"
334 fi
335 ]
336)
Tim Rice648f8762011-01-26 12:38:57 -0800337AC_ARG_WITH([libs],
Tim Rice1cfab232006-10-03 09:34:35 -0700338 [ --with-libs Specify additional libraries to link with],
339 [
340 if test -n "$withval" && test "x$withval" != "xno" && \
341 test "x${withval}" != "xyes"; then
342 LIBS="$LIBS $withval"
343 fi
344 ]
345)
Tim Rice648f8762011-01-26 12:38:57 -0800346AC_ARG_WITH([Werror],
Tim Rice1cfab232006-10-03 09:34:35 -0700347 [ --with-Werror Build main code with -Werror],
348 [
349 if test -n "$withval" && test "x$withval" != "xno"; then
350 werror_flags="-Werror"
351 if test "x${withval}" != "xyes"; then
352 werror_flags="$withval"
353 fi
354 fi
355 ]
356)
357
Tim Rice648f8762011-01-26 12:38:57 -0800358AC_CHECK_HEADERS([ \
Damien Miller1ff130d2013-12-07 11:51:51 +1100359 blf.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700360 bstring.h \
361 crypt.h \
362 crypto/sha2.h \
363 dirent.h \
364 endian.h \
Damien Miller91f40d82013-02-22 11:37:00 +1100365 elf.h \
Darren Tucker6310ef22016-07-13 14:42:35 +1000366 err.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700367 features.h \
368 fcntl.h \
369 floatingpoint.h \
370 getopt.h \
371 glob.h \
372 ia.h \
373 iaf.h \
Darren Tucker6d725682014-01-17 19:17:34 +1100374 inttypes.h \
Darren Tuckerf3f2cc82016-07-11 17:23:38 +1000375 langinfo.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700376 limits.h \
Darren Tuckerae133d42013-06-06 08:30:20 +1000377 locale.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700378 login.h \
379 maillock.h \
380 ndir.h \
381 net/if_tun.h \
382 netdb.h \
383 netgroup.h \
384 pam/pam_appl.h \
385 paths.h \
Darren Tuckerfebf0f52007-06-25 22:15:12 +1000386 poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700387 pty.h \
388 readpassphrase.h \
389 rpc/types.h \
390 security/pam_appl.h \
391 sha2.h \
392 shadow.h \
393 stddef.h \
394 stdint.h \
395 string.h \
396 strings.h \
397 sys/audit.h \
398 sys/bitypes.h \
399 sys/bsdtty.h \
Damien Millerc96d8532014-01-25 13:12:28 +1100400 sys/capability.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700401 sys/cdefs.h \
402 sys/dir.h \
403 sys/mman.h \
404 sys/ndir.h \
Darren Tucker7c92a652007-09-27 07:00:09 +1000405 sys/poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700406 sys/prctl.h \
407 sys/pstat.h \
Darren Tucker5ee3fb52016-11-01 08:12:33 +1100408 sys/ptrace.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700409 sys/select.h \
410 sys/stat.h \
411 sys/stream.h \
412 sys/stropts.h \
413 sys/strtio.h \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +1000414 sys/statvfs.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700415 sys/sysmacros.h \
416 sys/time.h \
417 sys/timers.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700418 time.h \
419 tmpdir.h \
420 ttyent.h \
Tim Riceaa8954f2007-05-09 15:57:43 -0700421 ucred.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700422 unistd.h \
423 usersec.h \
424 util.h \
425 utime.h \
426 utmp.h \
427 utmpx.h \
428 vis.h \
Darren Tuckerf3f2cc82016-07-11 17:23:38 +1000429 wchar.h \
Tim Rice648f8762011-01-26 12:38:57 -0800430])
Tim Rice1cfab232006-10-03 09:34:35 -0700431
432# lastlog.h requires sys/time.h to be included first on Solaris
Tim Rice648f8762011-01-26 12:38:57 -0800433AC_CHECK_HEADERS([lastlog.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700434#ifdef HAVE_SYS_TIME_H
435# include <sys/time.h>
436#endif
437])
438
439# sys/ptms.h requires sys/stream.h to be included first on Solaris
Tim Rice648f8762011-01-26 12:38:57 -0800440AC_CHECK_HEADERS([sys/ptms.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700441#ifdef HAVE_SYS_STREAM_H
442# include <sys/stream.h>
443#endif
444])
445
446# login_cap.h requires sys/types.h on NetBSD
Tim Rice648f8762011-01-26 12:38:57 -0800447AC_CHECK_HEADERS([login_cap.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700448#include <sys/types.h>
449])
450
Darren Tuckerc4b22ca2009-07-12 21:56:29 +1000451# older BSDs need sys/param.h before sys/mount.h
Tim Rice648f8762011-01-26 12:38:57 -0800452AC_CHECK_HEADERS([sys/mount.h], [], [], [
Darren Tuckerc4b22ca2009-07-12 21:56:29 +1000453#include <sys/param.h>
454])
455
Darren Tuckeref4901c2013-06-03 01:59:13 +1000456# Android requires sys/socket.h to be included before sys/un.h
457AC_CHECK_HEADERS([sys/un.h], [], [], [
Darren Tucker0b43ffe2013-06-03 09:30:44 +1000458#include <sys/types.h>
Darren Tucker16cac192013-06-04 12:55:24 +1000459#include <sys/socket.h>
Darren Tuckeref4901c2013-06-03 01:59:13 +1000460])
461
Damien Miller1b06dc32006-08-31 03:24:41 +1000462# Messages for features tested for in target-specific section
463SIA_MSG="no"
464SPC_MSG="no"
Darren Tucker97528352010-11-05 12:03:05 +1100465SP_MSG="no"
Damien Miller4626cba2016-01-08 14:24:56 +1100466SPP_MSG="no"
467
468# Support for Solaris/Illumos privileges (this test is used by both
469# the --with-solaris-privs option and --with-sandbox=solaris).
470SOLARIS_PRIVS="no"
Damien Miller1b06dc32006-08-31 03:24:41 +1000471
Damien Millera22ba012000-03-02 23:09:20 +1100472# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +1100473case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +1100474*-*-aix*)
Darren Tucker9216c372006-09-18 23:17:40 +1000475 # Some versions of VAC won't allow macro redefinitions at
476 # -qlanglevel=ansi, and autoconf 2.60 sometimes insists on using that
477 # particularly with older versions of vac or xlc.
478 # It also throws errors about null macro argments, but these are
479 # not fatal.
Tim Rice648f8762011-01-26 12:38:57 -0800480 AC_MSG_CHECKING([if compiler allows macro redefinitions])
Darren Tucker9216c372006-09-18 23:17:40 +1000481 AC_COMPILE_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -0800482 [AC_LANG_PROGRAM([[
Darren Tucker9216c372006-09-18 23:17:40 +1000483#define testmacro foo
Tim Rice648f8762011-01-26 12:38:57 -0800484#define testmacro bar]],
485 [[ exit(0); ]])],
486 [ AC_MSG_RESULT([yes]) ],
487 [ AC_MSG_RESULT([no])
Darren Tucker9216c372006-09-18 23:17:40 +1000488 CC="`echo $CC | sed 's/-qlanglvl\=ansi//g'`"
489 LD="`echo $LD | sed 's/-qlanglvl\=ansi//g'`"
490 CFLAGS="`echo $CFLAGS | sed 's/-qlanglvl\=ansi//g'`"
491 CPPFLAGS="`echo $CPPFLAGS | sed 's/-qlanglvl\=ansi//g'`"
492 ]
493 )
494
Damien Millera8e06ce2003-11-21 23:48:55 +1100495 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
Damien Millereab4bae2003-04-29 23:22:40 +1000496 if (test -z "$blibpath"); then
Tim Ricefcb62202004-01-23 18:35:16 -0800497 blibpath="/usr/lib:/lib"
Damien Miller29ea30d2000-03-17 10:54:15 +1100498 fi
Damien Millereab4bae2003-04-29 23:22:40 +1000499 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerbdc12122006-07-06 11:56:25 +1000500 if test "$GCC" = "yes"; then
501 flags="-Wl,-blibpath: -Wl,-rpath, -blibpath:"
502 else
503 flags="-blibpath: -Wl,-blibpath: -Wl,-rpath,"
504 fi
505 for tryflags in $flags ;do
Damien Millereab4bae2003-04-29 23:22:40 +1000506 if (test -z "$blibflags"); then
507 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
Tim Rice648f8762011-01-26 12:38:57 -0800508 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
509 [blibflags=$tryflags], [])
Damien Millereab4bae2003-04-29 23:22:40 +1000510 fi
511 done
512 if (test -z "$blibflags"); then
Tim Rice648f8762011-01-26 12:38:57 -0800513 AC_MSG_RESULT([not found])
Damien Millereab4bae2003-04-29 23:22:40 +1000514 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
515 else
Tim Rice648f8762011-01-26 12:38:57 -0800516 AC_MSG_RESULT([$blibflags])
Damien Millereab4bae2003-04-29 23:22:40 +1000517 fi
518 LDFLAGS="$saved_LDFLAGS"
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000519 dnl Check for authenticate. Might be in libs.a on older AIXes
Tim Rice648f8762011-01-26 12:38:57 -0800520 AC_CHECK_FUNC([authenticate], [AC_DEFINE([WITH_AIXAUTHENTICATE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700521 [Define if you want to enable AIX4's authenticate function])],
Tim Rice648f8762011-01-26 12:38:57 -0800522 [AC_CHECK_LIB([s], [authenticate],
523 [ AC_DEFINE([WITH_AIXAUTHENTICATE])
Tim Ricee958ed32002-07-05 07:12:33 -0700524 LIBS="$LIBS -ls"
525 ])
526 ])
Darren Tucker3c774c52005-02-16 22:49:31 +1100527 dnl Check for various auth function declarations in headers.
Darren Tucker04cfbe02005-02-20 23:27:11 +1100528 AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
Darren Tuckere66519d2005-03-21 22:46:34 +1100529 passwdexpired, setauthdb], , , [#include <usersec.h>])
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000530 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
Tim Rice648f8762011-01-26 12:38:57 -0800531 AC_CHECK_DECLS([loginfailed],
532 [AC_MSG_CHECKING([if loginfailed takes 4 arguments])
533 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <usersec.h> ]],
534 [[ (void)loginfailed("user","host","tty",0); ]])],
535 [AC_MSG_RESULT([yes])
536 AC_DEFINE([AIX_LOGINFAILED_4ARG], [1],
537 [Define if your AIX loginfailed() function
538 takes 4 arguments (AIX >= 5.2)])], [AC_MSG_RESULT([no])
539 ])],
540 [],
541 [#include <usersec.h>]
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000542 )
Tim Rice648f8762011-01-26 12:38:57 -0800543 AC_CHECK_FUNCS([getgrset setauthdb])
544 AC_CHECK_DECL([F_CLOSEM],
545 AC_DEFINE([HAVE_FCNTL_CLOSEM], [1], [Use F_CLOSEM fcntl for closefrom]),
Darren Tucker3083bc22006-08-17 19:35:49 +1000546 [],
547 [ #include <limits.h>
548 #include <fcntl.h> ]
549 )
Darren Tucker691d5232005-02-15 21:45:57 +1100550 check_for_aix_broken_getaddrinfo=1
Tim Rice648f8762011-01-26 12:38:57 -0800551 AC_DEFINE([BROKEN_REALPATH], [1], [Define if you have a broken realpath.])
552 AC_DEFINE([SETEUID_BREAKS_SETUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700553 [Define if your platform breaks doing a seteuid before a setuid])
Tim Rice648f8762011-01-26 12:38:57 -0800554 AC_DEFINE([BROKEN_SETREUID], [1], [Define if your setreuid() is broken])
555 AC_DEFINE([BROKEN_SETREGID], [1], [Define if your setregid() is broken])
andre60f3c982000-06-03 16:18:19 +0000556 dnl AIX handles lastlog as part of its login message
Tim Rice648f8762011-01-26 12:38:57 -0800557 AC_DEFINE([DISABLE_LASTLOG], [1], [Define if you don't want to use lastlog])
558 AC_DEFINE([LOGIN_NEEDS_UTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700559 [Some systems need a utmpx entry for /bin/login to work])
Tim Rice648f8762011-01-26 12:38:57 -0800560 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV],
Tim Rice7df8d392005-09-19 09:33:39 -0700561 [Define to a Set Process Title type if your system is
562 supported by bsd-setproctitle.c])
Tim Rice648f8762011-01-26 12:38:57 -0800563 AC_DEFINE([SSHPAM_CHAUTHTOK_NEEDS_RUID], [1],
Darren Tucker91d25a02005-11-26 22:24:09 +1100564 [AIX 5.2 and 5.3 (and presumably newer) require this])
Tim Rice648f8762011-01-26 12:38:57 -0800565 AC_DEFINE([PTY_ZEROREAD], [1], [read(1) can return 0 for a non-closed fd])
Darren Tuckeraa97d132013-03-12 11:31:05 +1100566 AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)])
Damien Miller75b1d102000-01-07 14:01:41 +1100567 ;;
Darren Tucker898ac932013-06-03 02:03:25 +1000568*-*-android*)
569 AC_DEFINE([DISABLE_UTMP], [1], [Define if you don't want to use utmp])
570 AC_DEFINE([DISABLE_WTMP], [1], [Define if you don't want to use wtmp])
571 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100572*-*-cygwin*)
Damien Millerc8936ac2003-02-11 10:04:03 +1100573 check_for_libcrypt_later=1
Darren Tucker573e3872007-03-02 17:50:03 +1100574 LIBS="$LIBS /usr/lib/textreadmode.o"
Tim Rice648f8762011-01-26 12:38:57 -0800575 AC_DEFINE([HAVE_CYGWIN], [1], [Define if you are on Cygwin])
576 AC_DEFINE([USE_PIPES], [1], [Use PIPES instead of a socketpair()])
Damien Miller4626cba2016-01-08 14:24:56 +1100577 AC_DEFINE([NO_UID_RESTORATION_TEST], [1],
578 [Define to disable UID restoration test])
Tim Rice648f8762011-01-26 12:38:57 -0800579 AC_DEFINE([DISABLE_SHADOW], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700580 [Define if you want to disable shadow passwords])
Tim Rice648f8762011-01-26 12:38:57 -0800581 AC_DEFINE([NO_X11_UNIX_SOCKETS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700582 [Define if X11 doesn't support AF_UNIX sockets on that system])
Tim Rice648f8762011-01-26 12:38:57 -0800583 AC_DEFINE([DISABLE_FD_PASSING], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700584 [Define if your platform needs to skip post auth
585 file descriptor passing])
Tim Rice648f8762011-01-26 12:38:57 -0800586 AC_DEFINE([SSH_IOBUFSZ], [65535], [Windows is sensitive to read buffer size])
Darren Tuckerfdce3732014-01-18 21:12:42 +1100587 AC_DEFINE([FILESYSTEM_NO_BACKSLASH], [1], [File names may not contain backslash characters])
588 # Cygwin defines optargs, optargs as declspec(dllimport) for historical
589 # reasons which cause compile warnings, so we disable those warnings.
590 OSSH_CHECK_CFLAG_COMPILE([-Wno-attributes])
Damien Millerbac2d8a2000-09-05 16:13:06 +1100591 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000592*-*-dgux*)
Tim Rice648f8762011-01-26 12:38:57 -0800593 AC_DEFINE([IP_TOS_IS_BROKEN], [1],
Tim Ricea74000e2009-03-18 11:25:02 -0700594 [Define if your system choked on IP TOS setting])
Tim Rice648f8762011-01-26 12:38:57 -0800595 AC_DEFINE([SETEUID_BREAKS_SETUID])
596 AC_DEFINE([BROKEN_SETREUID])
597 AC_DEFINE([BROKEN_SETREGID])
Ben Lindstrom58055132001-02-15 18:34:29 +0000598 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000599*-*-darwin*)
Damien Miller852472a2014-01-22 16:31:18 +1100600 use_pie=auto
Tim Rice648f8762011-01-26 12:38:57 -0800601 AC_MSG_CHECKING([if we have working getaddrinfo])
602 AC_RUN_IFELSE([AC_LANG_SOURCE([[ #include <mach-o/dyld.h>
Damien Millerfc93d4b2002-09-04 23:26:29 +1000603main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
604 exit(0);
605 else
606 exit(1);
Tim Rice648f8762011-01-26 12:38:57 -0800607}
608 ]])],
609 [AC_MSG_RESULT([working])],
610 [AC_MSG_RESULT([buggy])
611 AC_DEFINE([BROKEN_GETADDRINFO], [1],
612 [getaddrinfo is broken (if present)])
613 ],
614 [AC_MSG_RESULT([assume it is working])])
615 AC_DEFINE([SETEUID_BREAKS_SETUID])
616 AC_DEFINE([BROKEN_SETREUID])
617 AC_DEFINE([BROKEN_SETREGID])
618 AC_DEFINE([BROKEN_GLOB], [1], [OS X glob does not do what we expect])
619 AC_DEFINE_UNQUOTED([BIND_8_COMPAT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700620 [Define if your resolver libs need this for getrrsetbyname])
Tim Rice648f8762011-01-26 12:38:57 -0800621 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
622 AC_DEFINE([SSH_TUN_COMPAT_AF], [1],
Darren Tucker3eb48342006-06-23 21:05:12 +1000623 [Use tunnel device compatibility to OpenBSD])
Tim Rice648f8762011-01-26 12:38:57 -0800624 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Darren Tucker3eb48342006-06-23 21:05:12 +1000625 [Prepend the address family to IP tunnel traffic])
Tim Rice648f8762011-01-26 12:38:57 -0800626 m4_pattern_allow([AU_IPv])
Tim Ricee1d93702016-05-31 11:13:22 -0700627 AC_CHECK_DECL([AU_IPv4], [],
Tim Rice648f8762011-01-26 12:38:57 -0800628 AC_DEFINE([AU_IPv4], [0], [System only supports IPv4 audit records])
Darren Tuckeracada072008-02-25 21:05:04 +1100629 [#include <bsm/audit.h>]
Tim Rice648f8762011-01-26 12:38:57 -0800630 AC_DEFINE([LASTLOG_WRITE_PUTUTXLINE], [1],
Damien Miller20e231f2009-02-12 13:12:21 +1100631 [Define if pututxline updates lastlog too])
Darren Tuckeracada072008-02-25 21:05:04 +1100632 )
Damien Millerc09182f2011-06-03 12:11:38 +1000633 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV],
634 [Define to a Set Process Title type if your system is
635 supported by bsd-setproctitle.c])
Damien Millercd5e52e2011-06-27 07:18:18 +1000636 AC_CHECK_FUNCS([sandbox_init])
637 AC_CHECK_HEADERS([sandbox.h])
Damien Miller39f303b2016-02-23 12:56:59 +1100638 AC_CHECK_LIB([sandbox], [sandbox_apply], [
639 SSHDLIBS="$SSHDLIBS -lsandbox"
640 ])
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000641 ;;
Darren Tucker57b29202006-09-10 20:25:51 +1000642*-*-dragonfly*)
643 SSHDLIBS="$SSHDLIBS -lcrypt"
Darren Tucker882abfd2013-11-09 00:17:41 +1100644 TEST_MALLOC_OPTIONS="AFGJPRX"
Darren Tucker57b29202006-09-10 20:25:51 +1000645 ;;
Tim Ricee1d93702016-05-31 11:13:22 -0700646*-*-haiku*)
Darren Tucker5faa52d2016-08-02 15:22:40 +1000647 LIBS="$LIBS -lbsd "
648 AC_CHECK_LIB([network], [socket])
649 AC_DEFINE([HAVE_U_INT64_T])
650 MANTYPE=man
651 ;;
Darren Tuckerfd333282005-05-28 18:31:42 +1000652*-*-hpux*)
653 # first we define all of the options common to all HP-UX releases
Kevin Steves315f8b72001-06-28 00:24:41 +0000654 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100655 IPADDR_IN_DISPLAY=yes
Tim Rice648f8762011-01-26 12:38:57 -0800656 AC_DEFINE([USE_PIPES])
Tim Rice648f8762011-01-26 12:38:57 -0800657 AC_DEFINE([LOGIN_NEEDS_UTMPX])
658 AC_DEFINE([LOCKED_PASSWD_STRING], ["*"],
Tim Rice7df8d392005-09-19 09:33:39 -0700659 [String used in /etc/passwd to denote locked account])
Tim Rice648f8762011-01-26 12:38:57 -0800660 AC_DEFINE([SPT_TYPE], [SPT_PSTAT])
Darren Tuckeraa97d132013-03-12 11:31:05 +1100661 AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)])
Tim Rice90f42b02011-06-02 18:17:49 -0700662 maildir="/var/mail"
Tim Ricef028f1e2002-07-19 12:41:10 -0700663 LIBS="$LIBS -lsec"
Tim Rice648f8762011-01-26 12:38:57 -0800664 AC_CHECK_LIB([xnet], [t_error], ,
665 [AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***])])
Darren Tuckerfd333282005-05-28 18:31:42 +1000666
667 # next, we define all of the options specific to major releases
668 case "$host" in
669 *-*-hpux10*)
670 if test -z "$GCC"; then
671 CFLAGS="$CFLAGS -Ae"
672 fi
673 ;;
674 *-*-hpux11*)
Tim Rice648f8762011-01-26 12:38:57 -0800675 AC_DEFINE([PAM_SUN_CODEBASE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700676 [Define if you are using Solaris-derived PAM which
677 passes pam_messages to the conversation function
678 with an extra level of indirection])
Tim Rice648f8762011-01-26 12:38:57 -0800679 AC_DEFINE([DISABLE_UTMP], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700680 [Define if you don't want to use utmp])
Tim Rice648f8762011-01-26 12:38:57 -0800681 AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins])
Darren Tuckerfd333282005-05-28 18:31:42 +1000682 check_for_hpux_broken_getaddrinfo=1
683 check_for_conflicting_getspnam=1
684 ;;
685 esac
686
687 # lastly, we define options specific to minor releases
688 case "$host" in
689 *-*-hpux10.26)
Tim Rice648f8762011-01-26 12:38:57 -0800690 AC_DEFINE([HAVE_SECUREWARE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700691 [Define if you have SecureWare-based
692 protected password database])
Darren Tuckerfd333282005-05-28 18:31:42 +1000693 disable_ptmx_check=yes
694 LIBS="$LIBS -lsecpw"
695 ;;
696 esac
Damien Miller1bead332000-04-30 00:47:29 +1000697 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100698*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100699 PATH="$PATH:/usr/etc"
Tim Rice648f8762011-01-26 12:38:57 -0800700 AC_DEFINE([BROKEN_INET_NTOA], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700701 [Define if you system's inet_ntoa is busted
702 (e.g. Irix gcc issue)])
Tim Rice648f8762011-01-26 12:38:57 -0800703 AC_DEFINE([SETEUID_BREAKS_SETUID])
704 AC_DEFINE([BROKEN_SETREUID])
705 AC_DEFINE([BROKEN_SETREGID])
706 AC_DEFINE([WITH_ABBREV_NO_TTY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700707 [Define if you shouldn't strip 'tty' from your
708 ttyname in [uw]tmp])
Tim Rice648f8762011-01-26 12:38:57 -0800709 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Damien Miller1808f382000-01-06 12:03:12 +1100710 ;;
711*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100712 PATH="$PATH:/usr/etc"
Tim Rice648f8762011-01-26 12:38:57 -0800713 AC_DEFINE([WITH_IRIX_ARRAY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700714 [Define if you have/want arrays
715 (cluster-wide session managment, not C arrays)])
Tim Rice648f8762011-01-26 12:38:57 -0800716 AC_DEFINE([WITH_IRIX_PROJECT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700717 [Define if you want IRIX project management])
Tim Rice648f8762011-01-26 12:38:57 -0800718 AC_DEFINE([WITH_IRIX_AUDIT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700719 [Define if you want IRIX audit trails])
Tim Rice648f8762011-01-26 12:38:57 -0800720 AC_CHECK_FUNC([jlimit_startjob], [AC_DEFINE([WITH_IRIX_JOBS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700721 [Define if you want IRIX kernel jobs])])
Tim Rice648f8762011-01-26 12:38:57 -0800722 AC_DEFINE([BROKEN_INET_NTOA])
723 AC_DEFINE([SETEUID_BREAKS_SETUID])
724 AC_DEFINE([BROKEN_SETREUID])
725 AC_DEFINE([BROKEN_SETREGID])
726 AC_DEFINE([BROKEN_UPDWTMPX], [1], [updwtmpx is broken (if present)])
727 AC_DEFINE([WITH_ABBREV_NO_TTY])
728 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Damien Millerbeb4ba51999-12-28 15:09:35 +1100729 ;;
Damien Miller90551722009-02-16 15:37:03 +1100730*-*-k*bsd*-gnu | *-*-kopensolaris*-gnu)
731 check_for_libcrypt_later=1
Tim Rice648f8762011-01-26 12:38:57 -0800732 AC_DEFINE([PAM_TTY_KLUDGE])
733 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["!"])
734 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV])
735 AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts])
736 AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins])
Damien Miller90551722009-02-16 15:37:03 +1100737 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100738*-*-linux*)
739 no_dev_ptmx=1
Damien Miller852472a2014-01-22 16:31:18 +1100740 use_pie=auto
Damien Millera64b57a2001-01-17 10:44:13 +1100741 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000742 check_for_openpty_ctty_bug=1
Darren Tuckerc61d5ec2017-02-03 14:10:34 +1100743 dnl Target SUSv3/POSIX.1-2001 plus BSD specifics.
744 dnl _DEFAULT_SOURCE is the new name for _BSD_SOURCE
745 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -D_DEFAULT_SOURCE"
Tim Rice648f8762011-01-26 12:38:57 -0800746 AC_DEFINE([PAM_TTY_KLUDGE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700747 [Work around problematic Linux PAM modules handling of PAM_TTY])
Tim Rice648f8762011-01-26 12:38:57 -0800748 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["!"],
Tim Rice7df8d392005-09-19 09:33:39 -0700749 [String used in /etc/passwd to denote locked account])
Tim Rice648f8762011-01-26 12:38:57 -0800750 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV])
751 AC_DEFINE([LINK_OPNOTSUPP_ERRNO], [EPERM],
Tim Rice7df8d392005-09-19 09:33:39 -0700752 [Define to whatever link() returns for "not supported"
753 if it doesn't return EOPNOTSUPP.])
Tim Rice648f8762011-01-26 12:38:57 -0800754 AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts])
755 AC_DEFINE([USE_BTMP])
756 AC_DEFINE([LINUX_OOM_ADJUST], [1], [Adjust Linux out-of-memory killer])
Damien Miller7bcb0892000-03-11 20:45:40 +1100757 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000758 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000759 1.*|2.0.*)
Tim Rice648f8762011-01-26 12:38:57 -0800760 AC_DEFINE([BROKEN_CMSG_TYPE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700761 [Define if cmsg_type is not passed correctly])
Darren Tucker3c016542003-05-02 20:48:21 +1000762 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000763 esac
Damien Miller89e03ba2005-12-31 16:42:03 +1100764 # tun(4) forwarding compat code
Tim Rice648f8762011-01-26 12:38:57 -0800765 AC_CHECK_HEADERS([linux/if_tun.h])
Damien Millerbd4e4102006-01-01 21:03:30 +1100766 if test "x$ac_cv_header_linux_if_tun_h" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -0800767 AC_DEFINE([SSH_TUN_LINUX], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100768 [Open tunnel devices the Linux tun/tap way])
Tim Rice648f8762011-01-26 12:38:57 -0800769 AC_DEFINE([SSH_TUN_COMPAT_AF], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100770 [Use tunnel device compatibility to OpenBSD])
Tim Rice648f8762011-01-26 12:38:57 -0800771 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100772 [Prepend the address family to IP tunnel traffic])
773 fi
Darren Tucker60395f92012-07-03 14:31:18 +1000774 AC_CHECK_HEADERS([linux/seccomp.h linux/filter.h linux/audit.h], [],
775 [], [#include <linux/types.h>])
Damien Miller91f40d82013-02-22 11:37:00 +1100776 AC_MSG_CHECKING([for seccomp architecture])
777 seccomp_audit_arch=
Damien Millere0956e32012-04-04 11:27:54 +1000778 case "$host" in
779 x86_64-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100780 seccomp_audit_arch=AUDIT_ARCH_X86_64
Damien Millere0956e32012-04-04 11:27:54 +1000781 ;;
782 i*86-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100783 seccomp_audit_arch=AUDIT_ARCH_I386
Damien Millere0956e32012-04-04 11:27:54 +1000784 ;;
Damien Miller99f33d72015-06-17 10:50:51 +1000785 arm*-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100786 seccomp_audit_arch=AUDIT_ARCH_ARM
Damien Miller99f33d72015-06-17 10:50:51 +1000787 ;;
788 aarch64*-*)
789 seccomp_audit_arch=AUDIT_ARCH_AARCH64
Damien Miller5c15e222015-06-18 15:07:56 +1000790 ;;
Damien Millerb9c50612016-07-08 13:59:13 +1000791 s390x-*)
792 seccomp_audit_arch=AUDIT_ARCH_S390X
793 ;;
794 s390-*)
795 seccomp_audit_arch=AUDIT_ARCH_S390
796 ;;
797 powerpc64-*)
798 seccomp_audit_arch=AUDIT_ARCH_PPC64
799 ;;
800 powerpc64le-*)
801 seccomp_audit_arch=AUDIT_ARCH_PPC64LE
802 ;;
803 mips-*)
804 seccomp_audit_arch=AUDIT_ARCH_MIPS
805 ;;
806 mipsel-*)
807 seccomp_audit_arch=AUDIT_ARCH_MIPSEL
808 ;;
809 mips64-*)
810 seccomp_audit_arch=AUDIT_ARCH_MIPS64
811 ;;
812 mips64el-*)
813 seccomp_audit_arch=AUDIT_ARCH_MIPSEL64
814 ;;
Damien Millere0956e32012-04-04 11:27:54 +1000815 esac
Damien Miller91f40d82013-02-22 11:37:00 +1100816 if test "x$seccomp_audit_arch" != "x" ; then
817 AC_MSG_RESULT(["$seccomp_audit_arch"])
Damien Miller99f33d72015-06-17 10:50:51 +1000818 AC_DEFINE_UNQUOTED([SECCOMP_AUDIT_ARCH], [$seccomp_audit_arch],
819 [Specify the system call convention in use])
Damien Miller91f40d82013-02-22 11:37:00 +1100820 else
821 AC_MSG_RESULT([architecture not supported])
822 fi
Damien Millerb29ea912000-01-15 14:12:03 +1100823 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000824mips-sony-bsd|mips-sony-newsos4)
Tim Rice648f8762011-01-26 12:38:57 -0800825 AC_DEFINE([NEED_SETPGRP], [1], [Need setpgrp to acquire controlling tty])
Ben Lindstromb5628642000-10-18 00:02:25 +0000826 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000827 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100828*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000829 check_for_libcrypt_before=1
Tim Riceeae17cc2005-03-17 16:52:20 -0800830 if test "x$withval" != "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800831 need_dash_r=1
832 fi
Damien Miller99522ba2016-07-28 08:54:27 +1000833 CPPFLAGS="$CPPFLAGS -D_OPENBSD_SOURCE"
Tim Rice648f8762011-01-26 12:38:57 -0800834 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100835 AC_CHECK_HEADER([net/if_tap.h], ,
Tim Rice648f8762011-01-26 12:38:57 -0800836 AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support]))
837 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Damien Miller2dcddbf2006-01-01 19:47:05 +1100838 [Prepend the address family to IP tunnel traffic])
Darren Tucker882abfd2013-11-09 00:17:41 +1100839 TEST_MALLOC_OPTIONS="AJRX"
Damien Millerf5bbd3b2014-01-30 11:26:46 +1100840 AC_DEFINE([BROKEN_READ_COMPARISON], [1],
841 [NetBSD read function is sometimes redirected, breaking atomicio comparisons against it])
Damien Milleree1c0b32000-01-21 00:18:15 +1100842 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100843*-*-freebsd*)
844 check_for_libcrypt_later=1
Tim Rice648f8762011-01-26 12:38:57 -0800845 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["*LOCKED*"], [Account locked with pw(1)])
846 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100847 AC_CHECK_HEADER([net/if_tap.h], ,
Tim Rice648f8762011-01-26 12:38:57 -0800848 AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support]))
849 AC_DEFINE([BROKEN_GLOB], [1], [FreeBSD glob does not do what we need])
Darren Tucker882abfd2013-11-09 00:17:41 +1100850 TEST_MALLOC_OPTIONS="AJRX"
Damien Miller2035b222014-01-26 09:39:53 +1100851 # Preauth crypto occasionally uses file descriptors for crypto offload
852 # and will crash if they cannot be opened.
Damien Miller5b447c02014-01-26 09:46:53 +1100853 AC_DEFINE([SANDBOX_SKIP_RLIMIT_NOFILE], [1],
Tim Rice03ae0812014-02-21 09:09:34 -0800854 [define if setrlimit RLIMIT_NOFILE breaks things])
Damien Millerfbd884a2001-02-27 08:39:07 +1100855 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000856*-*-bsdi*)
Tim Rice648f8762011-01-26 12:38:57 -0800857 AC_DEFINE([SETEUID_BREAKS_SETUID])
858 AC_DEFINE([BROKEN_SETREUID])
859 AC_DEFINE([BROKEN_SETREGID])
Darren Tuckered9eb022003-09-22 11:18:47 +1000860 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000861*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000862 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100863 conf_utmp_location=/etc/utmp
864 conf_wtmp_location=/usr/adm/wtmp
Tim Rice90f42b02011-06-02 18:17:49 -0700865 maildir=/usr/spool/mail
Tim Rice648f8762011-01-26 12:38:57 -0800866 AC_DEFINE([HAVE_NEXT], [1], [Define if you are on NeXT])
867 AC_DEFINE([BROKEN_REALPATH])
868 AC_DEFINE([USE_PIPES])
869 AC_DEFINE([BROKEN_SAVED_UIDS], [1], [Needed for NeXT])
Damien Miller0f91b4e2000-06-18 15:43:25 +1000870 ;;
Darren Tucker4a422572005-07-14 17:22:11 +1000871*-*-openbsd*)
Damien Miller852472a2014-01-22 16:31:18 +1100872 use_pie=auto
Tim Rice648f8762011-01-26 12:38:57 -0800873 AC_DEFINE([HAVE_ATTRIBUTE__SENTINEL__], [1], [OpenBSD's gcc has sentinel])
874 AC_DEFINE([HAVE_ATTRIBUTE__BOUNDED__], [1], [OpenBSD's gcc has bounded])
875 AC_DEFINE([SSH_TUN_OPENBSD], [1], [Open tunnel devices the OpenBSD way])
876 AC_DEFINE([SYSLOG_R_SAFE_IN_SIGHAND], [1],
Damien Millerbb598142006-08-19 08:38:23 +1000877 [syslog_r function is safe to use in in a signal handler])
Darren Tucker882abfd2013-11-09 00:17:41 +1100878 TEST_MALLOC_OPTIONS="AFGJPRX"
Darren Tucker4a422572005-07-14 17:22:11 +1000879 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100880*-*-solaris*)
Tim Riceeae17cc2005-03-17 16:52:20 -0800881 if test "x$withval" != "xno" ; then
Tim Ricead4a1882004-02-29 15:53:37 -0800882 need_dash_r=1
883 fi
Tim Rice648f8762011-01-26 12:38:57 -0800884 AC_DEFINE([PAM_SUN_CODEBASE])
885 AC_DEFINE([LOGIN_NEEDS_UTMPX])
Tim Rice648f8762011-01-26 12:38:57 -0800886 AC_DEFINE([PAM_TTY_KLUDGE])
887 AC_DEFINE([SSHPAM_CHAUTHTOK_NEEDS_RUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700888 [Define if pam_chauthtok wants real uid set
889 to the unpriv'ed user])
Tim Rice648f8762011-01-26 12:38:57 -0800890 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Darren Tuckerc437cda2003-05-10 17:05:46 +1000891 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
Tim Rice648f8762011-01-26 12:38:57 -0800892 AC_DEFINE([SSHD_ACQUIRES_CTTY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700893 [Define if sshd somehow reacquires a controlling TTY
894 after setsid()])
Tim Rice648f8762011-01-26 12:38:57 -0800895 AC_DEFINE([PASSWD_NEEDS_USERNAME], [1], [must supply username to passwd
Darren Tucker0249f932006-06-24 12:10:07 +1000896 in case the name is longer than 8 chars])
Tim Rice648f8762011-01-26 12:38:57 -0800897 AC_DEFINE([BROKEN_TCGETATTR_ICANON], [1], [tcgetattr with ICANON may hang])
Darren Tuckere1a790d2003-09-16 11:52:19 +1000898 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000899 # hardwire lastlog location (can't detect it on some versions)
900 conf_lastlog_location="/var/adm/lastlog"
Tim Rice648f8762011-01-26 12:38:57 -0800901 AC_MSG_CHECKING([for obsolete utmp and wtmp in solaris2.x])
Damien Millera1cb6442000-06-09 11:58:35 +1000902 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
903 if test "$sol2ver" -ge 8; then
Tim Rice648f8762011-01-26 12:38:57 -0800904 AC_MSG_RESULT([yes])
905 AC_DEFINE([DISABLE_UTMP])
906 AC_DEFINE([DISABLE_WTMP], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700907 [Define if you don't want to use wtmp])
Damien Millera1cb6442000-06-09 11:58:35 +1000908 else
Tim Rice648f8762011-01-26 12:38:57 -0800909 AC_MSG_RESULT([no])
Damien Millera1cb6442000-06-09 11:58:35 +1000910 fi
Darren Tuckera86ec4d2016-06-14 10:48:27 +1000911 AC_CHECK_FUNCS([setpflags])
Darren Tucker907091a2016-02-19 09:05:39 +1100912 AC_CHECK_FUNCS([setppriv])
913 AC_CHECK_FUNCS([priv_basicset])
914 AC_CHECK_HEADERS([priv.h])
Tim Rice648f8762011-01-26 12:38:57 -0800915 AC_ARG_WITH([solaris-contracts],
Damien Miller1b06dc32006-08-31 03:24:41 +1000916 [ --with-solaris-contracts Enable Solaris process contracts (experimental)],
917 [
Tim Rice648f8762011-01-26 12:38:57 -0800918 AC_CHECK_LIB([contract], [ct_tmpl_activate],
919 [ AC_DEFINE([USE_SOLARIS_PROCESS_CONTRACTS], [1],
Damien Miller1b06dc32006-08-31 03:24:41 +1000920 [Define if you have Solaris process contracts])
Damien Miller4626cba2016-01-08 14:24:56 +1100921 LIBS="$LIBS -lcontract"
Damien Miller1b06dc32006-08-31 03:24:41 +1000922 SPC_MSG="yes" ], )
923 ],
924 )
Tim Rice648f8762011-01-26 12:38:57 -0800925 AC_ARG_WITH([solaris-projects],
Darren Tucker97528352010-11-05 12:03:05 +1100926 [ --with-solaris-projects Enable Solaris projects (experimental)],
927 [
Tim Rice648f8762011-01-26 12:38:57 -0800928 AC_CHECK_LIB([project], [setproject],
929 [ AC_DEFINE([USE_SOLARIS_PROJECTS], [1],
Darren Tucker97528352010-11-05 12:03:05 +1100930 [Define if you have Solaris projects])
Damien Miller4626cba2016-01-08 14:24:56 +1100931 LIBS="$LIBS -lproject"
Darren Tucker97528352010-11-05 12:03:05 +1100932 SP_MSG="yes" ], )
933 ],
934 )
Damien Miller4626cba2016-01-08 14:24:56 +1100935 AC_ARG_WITH([solaris-privs],
936 [ --with-solaris-privs Enable Solaris/Illumos privileges (experimental)],
937 [
938 AC_MSG_CHECKING([for Solaris/Illumos privilege support])
Darren Tucker907091a2016-02-19 09:05:39 +1100939 if test "x$ac_cv_func_setppriv" = "xyes" -a \
940 "x$ac_cv_header_priv_h" = "xyes" ; then
941 SOLARIS_PRIVS=yes
Damien Miller4626cba2016-01-08 14:24:56 +1100942 AC_MSG_RESULT([found])
943 AC_DEFINE([NO_UID_RESTORATION_TEST], [1],
944 [Define to disable UID restoration test])
945 AC_DEFINE([USE_SOLARIS_PRIVS], [1],
946 [Define if you have Solaris privileges])
947 SPP_MSG="yes"
948 else
949 AC_MSG_RESULT([not found])
950 AC_MSG_ERROR([*** must have support for Solaris privileges to use --with-solaris-privs])
951 fi
952 ],
953 )
Tim Rice5ab9b632013-06-02 14:05:48 -0700954 TEST_SHELL=$SHELL # let configure find us a capable shell
Damien Miller75b1d102000-01-07 14:01:41 +1100955 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +1000956*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +0000957 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Tim Rice648f8762011-01-26 12:38:57 -0800958 AC_CHECK_FUNCS([getpwanam])
959 AC_DEFINE([PAM_SUN_CODEBASE])
Damien Miller36ccb5c2000-08-09 16:34:27 +1000960 conf_utmp_location=/etc/utmp
961 conf_wtmp_location=/var/adm/wtmp
962 conf_lastlog_location=/var/adm/lastlog
Tim Rice648f8762011-01-26 12:38:57 -0800963 AC_DEFINE([USE_PIPES])
Damien Millerdfc83f42000-05-20 15:02:59 +1000964 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000965*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -0700966 LIBS="$LIBS -lc89"
Tim Rice648f8762011-01-26 12:38:57 -0800967 AC_DEFINE([USE_PIPES])
968 AC_DEFINE([SSHD_ACQUIRES_CTTY])
969 AC_DEFINE([SETEUID_BREAKS_SETUID])
970 AC_DEFINE([BROKEN_SETREUID])
971 AC_DEFINE([BROKEN_SETREGID])
Ben Lindstrom603bdfd2001-02-12 07:29:45 +0000972 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +1000973*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -0700974 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Tim Rice648f8762011-01-26 12:38:57 -0800975 AC_CHECK_LIB([dl], [dlsym], ,)
Darren Tucker79d09fa2005-11-24 22:34:54 +1100976 # -lresolv needs to be at the end of LIBS or DNS lookups break
Tim Rice648f8762011-01-26 12:38:57 -0800977 AC_CHECK_LIB([resolv], [res_query], [ LIBS="$LIBS -lresolv" ])
Damien Millerfd9885e2001-01-10 08:16:53 +1100978 IPADDR_IN_DISPLAY=yes
Tim Rice648f8762011-01-26 12:38:57 -0800979 AC_DEFINE([USE_PIPES])
980 AC_DEFINE([IP_TOS_IS_BROKEN])
981 AC_DEFINE([SETEUID_BREAKS_SETUID])
982 AC_DEFINE([BROKEN_SETREUID])
983 AC_DEFINE([BROKEN_SETREGID])
984 AC_DEFINE([SSHD_ACQUIRES_CTTY])
Darren Tuckere1a790d2003-09-16 11:52:19 +1000985 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -0700986 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
987 # Attention: always take care to bind libsocket and libnsl before libc,
988 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +1000989 ;;
Tim Rice0f83d292004-12-08 18:29:58 -0800990# UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
Damien Miller78315eb2000-09-29 23:01:36 +1100991*-*-sysv4.2*)
Tim Rice648f8762011-01-26 12:38:57 -0800992 AC_DEFINE([USE_PIPES])
993 AC_DEFINE([SETEUID_BREAKS_SETUID])
994 AC_DEFINE([BROKEN_SETREUID])
995 AC_DEFINE([BROKEN_SETREGID])
996 AC_DEFINE([PASSWD_NEEDS_USERNAME], [1], [must supply username to passwd])
997 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Tim Rice5ab9b632013-06-02 14:05:48 -0700998 TEST_SHELL=$SHELL # let configure find us a capable shell
Damien Miller78315eb2000-09-29 23:01:36 +1100999 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001000# UnixWare 7.x, OpenUNIX 8
Damien Miller78315eb2000-09-29 23:01:36 +11001001*-*-sysv5*)
Tim Rice641ebf12010-01-17 17:05:39 -08001002 CPPFLAGS="$CPPFLAGS -Dvsnprintf=_xvsnprintf -Dsnprintf=_xsnprintf"
Tim Rice648f8762011-01-26 12:38:57 -08001003 AC_DEFINE([UNIXWARE_LONG_PASSWORDS], [1], [Support passwords > 8 chars])
1004 AC_DEFINE([USE_PIPES])
1005 AC_DEFINE([SETEUID_BREAKS_SETUID])
1006 AC_DEFINE([BROKEN_GETADDRINFO])
1007 AC_DEFINE([BROKEN_SETREUID])
1008 AC_DEFINE([BROKEN_SETREGID])
1009 AC_DEFINE([PASSWD_NEEDS_USERNAME])
Tim Rice5ab9b632013-06-02 14:05:48 -07001010 TEST_SHELL=$SHELL # let configure find us a capable shell
Tim Rice4dbacff2005-06-01 20:09:28 -07001011 case "$host" in
1012 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
Tim Rice90f42b02011-06-02 18:17:49 -07001013 maildir=/var/spool/mail
Tim Rice648f8762011-01-26 12:38:57 -08001014 AC_DEFINE([BROKEN_LIBIAF], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001015 [ia_uinfo routines not supported by OS yet])
Tim Rice648f8762011-01-26 12:38:57 -08001016 AC_DEFINE([BROKEN_UPDWTMPX])
1017 AC_CHECK_LIB([prot], [getluid], [ LIBS="$LIBS -lprot"
1018 AC_CHECK_FUNCS([getluid setluid], , , [-lprot])
1019 AC_DEFINE([HAVE_SECUREWARE])
1020 AC_DEFINE([DISABLE_SHADOW])
1021 ], , )
Tim Rice4dbacff2005-06-01 20:09:28 -07001022 ;;
Tim Rice648f8762011-01-26 12:38:57 -08001023 *) AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Tim Rice26767912009-01-07 20:50:08 -08001024 check_for_libcrypt_later=1
Tim Rice46259d82005-11-28 18:40:34 -08001025 ;;
Tim Rice4dbacff2005-06-01 20:09:28 -07001026 esac
Damien Miller78315eb2000-09-29 23:01:36 +11001027 ;;
Damien Miller75b1d102000-01-07 14:01:41 +11001028*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +11001029 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001030# SCO UNIX and OEM versions of SCO UNIX
Damien Miller78315eb2000-09-29 23:01:36 +11001031*-*-sco3.2v4*)
Tim Ricec390c8d2005-03-07 01:21:37 -08001032 AC_MSG_ERROR("This Platform is no longer supported.")
Damien Miller78315eb2000-09-29 23:01:36 +11001033 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001034# SCO OpenServer 5.x
Damien Miller78315eb2000-09-29 23:01:36 +11001035*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -08001036 if test -z "$GCC"; then
1037 CFLAGS="$CFLAGS -belf"
1038 fi
Damien Miller5dfe9762001-02-16 12:05:39 +11001039 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +10001040 no_dev_ptmx=1
Tim Rice648f8762011-01-26 12:38:57 -08001041 AC_DEFINE([USE_PIPES])
1042 AC_DEFINE([HAVE_SECUREWARE])
1043 AC_DEFINE([DISABLE_SHADOW])
1044 AC_DEFINE([DISABLE_FD_PASSING])
1045 AC_DEFINE([SETEUID_BREAKS_SETUID])
1046 AC_DEFINE([BROKEN_GETADDRINFO])
1047 AC_DEFINE([BROKEN_SETREUID])
1048 AC_DEFINE([BROKEN_SETREGID])
1049 AC_DEFINE([WITH_ABBREV_NO_TTY])
1050 AC_DEFINE([BROKEN_UPDWTMPX])
1051 AC_DEFINE([PASSWD_NEEDS_USERNAME])
1052 AC_CHECK_FUNCS([getluid setluid])
Tim Rice07183b82001-04-25 21:40:28 -07001053 MANTYPE=man
Tim Rice5ab9b632013-06-02 14:05:48 -07001054 TEST_SHELL=$SHELL # let configure find us a capable shell
Tim Riceaa86c392013-03-16 20:55:46 -07001055 SKIP_DISABLE_LASTLOG_DEFINE=yes
Damien Millera66626b2000-06-13 18:57:53 +10001056 ;;
Ben Lindstrom232ccf72002-07-22 23:34:25 +00001057*-*-unicosmk*)
Tim Rice648f8762011-01-26 12:38:57 -08001058 AC_DEFINE([NO_SSH_LASTLOG], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001059 [Define if you don't want to use lastlog in session.c])
Tim Rice648f8762011-01-26 12:38:57 -08001060 AC_DEFINE([SETEUID_BREAKS_SETUID])
1061 AC_DEFINE([BROKEN_SETREUID])
1062 AC_DEFINE([BROKEN_SETREGID])
1063 AC_DEFINE([USE_PIPES])
1064 AC_DEFINE([DISABLE_FD_PASSING])
Ben Lindstrom232ccf72002-07-22 23:34:25 +00001065 LDFLAGS="$LDFLAGS"
1066 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
1067 MANTYPE=cat
Ben Lindstrom762104e2002-07-23 00:00:05 +00001068 ;;
Darren Tucker9f7ffc52003-09-10 11:39:05 +10001069*-*-unicosmp*)
Tim Rice648f8762011-01-26 12:38:57 -08001070 AC_DEFINE([SETEUID_BREAKS_SETUID])
1071 AC_DEFINE([BROKEN_SETREUID])
1072 AC_DEFINE([BROKEN_SETREGID])
1073 AC_DEFINE([WITH_ABBREV_NO_TTY])
1074 AC_DEFINE([USE_PIPES])
1075 AC_DEFINE([DISABLE_FD_PASSING])
Darren Tucker9f7ffc52003-09-10 11:39:05 +10001076 LDFLAGS="$LDFLAGS"
Darren Tucker2df33432004-01-30 14:34:21 +11001077 LIBS="$LIBS -lgen -lacid -ldb"
Darren Tucker9f7ffc52003-09-10 11:39:05 +10001078 MANTYPE=cat
1079 ;;
Ben Lindstromd9e08242001-07-22 19:32:00 +00001080*-*-unicos*)
Tim Rice648f8762011-01-26 12:38:57 -08001081 AC_DEFINE([SETEUID_BREAKS_SETUID])
1082 AC_DEFINE([BROKEN_SETREUID])
1083 AC_DEFINE([BROKEN_SETREGID])
1084 AC_DEFINE([USE_PIPES])
1085 AC_DEFINE([DISABLE_FD_PASSING])
1086 AC_DEFINE([NO_SSH_LASTLOG])
Ben Lindstrom232ccf72002-07-22 23:34:25 +00001087 LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal"
1088 LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm"
1089 MANTYPE=cat
Tim Ricee991e3c2001-08-07 15:29:07 -07001090 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +10001091*-dec-osf*)
Tim Rice648f8762011-01-26 12:38:57 -08001092 AC_MSG_CHECKING([for Digital Unix SIA])
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001093 no_osfsia=""
Tim Rice648f8762011-01-26 12:38:57 -08001094 AC_ARG_WITH([osfsia],
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001095 [ --with-osfsia Enable Digital Unix SIA],
1096 [
1097 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08001098 AC_MSG_RESULT([disabled])
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001099 no_osfsia=1
1100 fi
1101 ],
1102 )
1103 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +10001104 if test -f /etc/sia/matrix.conf; then
Tim Rice648f8762011-01-26 12:38:57 -08001105 AC_MSG_RESULT([yes])
1106 AC_DEFINE([HAVE_OSF_SIA], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001107 [Define if you have Digital Unix Security
1108 Integration Architecture])
Tim Rice648f8762011-01-26 12:38:57 -08001109 AC_DEFINE([DISABLE_LOGIN], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001110 [Define if you don't want to use your
1111 system's login() call])
Tim Rice648f8762011-01-26 12:38:57 -08001112 AC_DEFINE([DISABLE_FD_PASSING])
Damien Millerb8c656e2000-06-28 15:22:41 +10001113 LIBS="$LIBS -lsecurity -ldb -lm -laud"
Damien Miller1b06dc32006-08-31 03:24:41 +10001114 SIA_MSG="yes"
Damien Millerb8c656e2000-06-28 15:22:41 +10001115 else
Tim Rice648f8762011-01-26 12:38:57 -08001116 AC_MSG_RESULT([no])
1117 AC_DEFINE([LOCKED_PASSWD_SUBSTR], ["Nologin"],
Tim Rice7df8d392005-09-19 09:33:39 -07001118 [String used in /etc/passwd to denote locked account])
Damien Millerb8c656e2000-06-28 15:22:41 +10001119 fi
1120 fi
Tim Rice648f8762011-01-26 12:38:57 -08001121 AC_DEFINE([BROKEN_GETADDRINFO])
1122 AC_DEFINE([SETEUID_BREAKS_SETUID])
1123 AC_DEFINE([BROKEN_SETREUID])
1124 AC_DEFINE([BROKEN_SETREGID])
1125 AC_DEFINE([BROKEN_READV_COMPARISON], [1], [Can't do comparisons on readv])
Damien Millerb8c656e2000-06-28 15:22:41 +10001126 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001127
Tim Rice70335a62006-02-04 17:42:58 -08001128*-*-nto-qnx*)
Tim Rice648f8762011-01-26 12:38:57 -08001129 AC_DEFINE([USE_PIPES])
1130 AC_DEFINE([NO_X11_UNIX_SOCKETS])
Tim Rice648f8762011-01-26 12:38:57 -08001131 AC_DEFINE([DISABLE_LASTLOG])
1132 AC_DEFINE([SSHD_ACQUIRES_CTTY])
1133 AC_DEFINE([BROKEN_SHADOW_EXPIRE], [1], [QNX shadow support is broken])
Tim Rice2f993462006-02-11 18:37:48 -08001134 enable_etc_default_login=no # has incompatible /etc/default/login
Darren Tucker8acb3b62007-08-10 14:36:12 +10001135 case "$host" in
1136 *-*-nto-qnx6*)
Tim Rice648f8762011-01-26 12:38:57 -08001137 AC_DEFINE([DISABLE_FD_PASSING])
Darren Tucker8acb3b62007-08-10 14:36:12 +10001138 ;;
1139 esac
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001140 ;;
Darren Tucker2be1cbb2005-05-27 21:13:40 +10001141
1142*-*-ultrix*)
Tim Rice648f8762011-01-26 12:38:57 -08001143 AC_DEFINE([BROKEN_GETGROUPS], [1], [getgroups(0,NULL) will return -1])
Tim Rice648f8762011-01-26 12:38:57 -08001144 AC_DEFINE([NEED_SETPGRP])
1145 AC_DEFINE([HAVE_SYS_SYSLOG_H], [1], [Force use of sys/syslog.h on Ultrix])
Tim Ricefcc7ff12005-06-02 20:28:29 -07001146 ;;
Darren Tucker93e7e8f2005-08-23 08:06:55 +10001147
1148*-*-lynxos)
Darren Tucker5faa52d2016-08-02 15:22:40 +10001149 CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
1150 AC_DEFINE([BROKEN_SETVBUF], [1],
1151 [LynxOS has broken setvbuf() implementation])
1152 ;;
Damien Miller76112de1999-12-21 11:18:08 +11001153esac
1154
Tim Rice648f8762011-01-26 12:38:57 -08001155AC_MSG_CHECKING([compiler and flags for sanity])
1156AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]], [[ exit(0); ]])],
1157 [ AC_MSG_RESULT([yes]) ],
Darren Tucker6eb93042003-06-29 21:30:41 +10001158 [
Tim Rice648f8762011-01-26 12:38:57 -08001159 AC_MSG_RESULT([no])
Darren Tucker6eb93042003-06-29 21:30:41 +10001160 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001161 ],
1162 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
Darren Tucker6eb93042003-06-29 21:30:41 +10001163)
1164
Darren Tucker0c9653f2005-05-28 15:58:14 +10001165dnl Checks for header files.
Damien Millera22ba012000-03-02 23:09:20 +11001166# Checks for libraries.
Tim Rice648f8762011-01-26 12:38:57 -08001167AC_CHECK_FUNC([setsockopt], , [AC_CHECK_LIB([socket], [setsockopt])])
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001168
Tim Rice1e1ef642003-09-11 22:19:31 -07001169dnl IRIX and Solaris 2.5.1 have dirname() in libgen
Tim Rice648f8762011-01-26 12:38:57 -08001170AC_CHECK_FUNCS([dirname], [AC_CHECK_HEADERS([libgen.h])] , [
1171 AC_CHECK_LIB([gen], [dirname], [
Tim Rice1e1ef642003-09-11 22:19:31 -07001172 AC_CACHE_CHECK([for broken dirname],
1173 ac_cv_have_broken_dirname, [
1174 save_LIBS="$LIBS"
1175 LIBS="$LIBS -lgen"
Darren Tucker314d89e2005-10-17 23:29:23 +10001176 AC_RUN_IFELSE(
1177 [AC_LANG_SOURCE([[
Tim Rice1e1ef642003-09-11 22:19:31 -07001178#include <libgen.h>
1179#include <string.h>
1180
1181int main(int argc, char **argv) {
1182 char *s, buf[32];
1183
1184 strncpy(buf,"/etc", 32);
1185 s = dirname(buf);
1186 if (!s || strncmp(s, "/", 32) != 0) {
1187 exit(1);
1188 } else {
1189 exit(0);
1190 }
1191}
Darren Tucker314d89e2005-10-17 23:29:23 +10001192 ]])],
Tim Rice1e1ef642003-09-11 22:19:31 -07001193 [ ac_cv_have_broken_dirname="no" ],
Darren Tucker314d89e2005-10-17 23:29:23 +10001194 [ ac_cv_have_broken_dirname="yes" ],
1195 [ ac_cv_have_broken_dirname="no" ],
Tim Rice1e1ef642003-09-11 22:19:31 -07001196 )
1197 LIBS="$save_LIBS"
1198 ])
1199 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
1200 LIBS="$LIBS -lgen"
Tim Rice648f8762011-01-26 12:38:57 -08001201 AC_DEFINE([HAVE_DIRNAME])
1202 AC_CHECK_HEADERS([libgen.h])
Tim Rice1e1ef642003-09-11 22:19:31 -07001203 fi
1204 ])
1205])
1206
Tim Rice648f8762011-01-26 12:38:57 -08001207AC_CHECK_FUNC([getspnam], ,
1208 [AC_CHECK_LIB([gen], [getspnam], [LIBS="$LIBS -lgen"])])
1209AC_SEARCH_LIBS([basename], [gen], [AC_DEFINE([HAVE_BASENAME], [1],
1210 [Define if you have the basename function.])])
Tim Rice1e1ef642003-09-11 22:19:31 -07001211
Tim Rice13aae5e2001-10-21 17:53:58 -07001212dnl zlib is required
Tim Rice648f8762011-01-26 12:38:57 -08001213AC_ARG_WITH([zlib],
Tim Rice13aae5e2001-10-21 17:53:58 -07001214 [ --with-zlib=PATH Use zlib in PATH],
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001215 [ if test "x$withval" = "xno" ; then
1216 AC_MSG_ERROR([*** zlib is required ***])
1217 elif test "x$withval" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001218 if test -d "$withval/lib"; then
1219 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001220 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001221 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001222 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001223 fi
1224 else
1225 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001226 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001227 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001228 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001229 fi
1230 fi
1231 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001232 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001233 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001234 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001235 fi
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001236 fi ]
Tim Rice13aae5e2001-10-21 17:53:58 -07001237)
1238
Tim Rice648f8762011-01-26 12:38:57 -08001239AC_CHECK_HEADER([zlib.h], ,[AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***])])
1240AC_CHECK_LIB([z], [deflate], ,
Tim Ricefcb62202004-01-23 18:35:16 -08001241 [
1242 saved_CPPFLAGS="$CPPFLAGS"
1243 saved_LDFLAGS="$LDFLAGS"
1244 save_LIBS="$LIBS"
1245 dnl Check default zlib install dir
1246 if test -n "${need_dash_r}"; then
1247 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
1248 else
1249 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
1250 fi
1251 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
1252 LIBS="$LIBS -lz"
Tim Rice648f8762011-01-26 12:38:57 -08001253 AC_TRY_LINK_FUNC([deflate], [AC_DEFINE([HAVE_LIBZ])],
Tim Ricefcb62202004-01-23 18:35:16 -08001254 [
1255 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
1256 ]
1257 )
1258 ]
1259)
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001260
Tim Rice648f8762011-01-26 12:38:57 -08001261AC_ARG_WITH([zlib-version-check],
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001262 [ --without-zlib-version-check Disable zlib version check],
1263 [ if test "x$withval" = "xno" ; then
1264 zlib_check_nonfatal=1
1265 fi
1266 ]
1267)
1268
Tim Rice648f8762011-01-26 12:38:57 -08001269AC_MSG_CHECKING([for possibly buggy zlib])
1270AC_RUN_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001271#include <stdio.h>
Darren Tuckerc8a0f272013-03-22 12:49:14 +11001272#include <stdlib.h>
Darren Tucker2dcd2392004-01-23 17:13:33 +11001273#include <zlib.h>
Tim Rice648f8762011-01-26 12:38:57 -08001274 ]],
1275 [[
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001276 int a=0, b=0, c=0, d=0, n, v;
1277 n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
1278 if (n != 3 && n != 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001279 exit(1);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001280 v = a*1000000 + b*10000 + c*100 + d;
1281 fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
1282
1283 /* 1.1.4 is OK */
1284 if (a == 1 && b == 1 && c >= 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001285 exit(0);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001286
Darren Tucker41097ed2005-07-25 15:24:21 +10001287 /* 1.2.3 and up are OK */
1288 if (v >= 1020300)
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001289 exit(0);
1290
Darren Tucker2dcd2392004-01-23 17:13:33 +11001291 exit(2);
Darren Tucker623d92f2004-09-12 22:36:15 +10001292 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001293 AC_MSG_RESULT([no]),
1294 [ AC_MSG_RESULT([yes])
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001295 if test -z "$zlib_check_nonfatal" ; then
1296 AC_MSG_ERROR([*** zlib too old - check config.log ***
1297Your reported zlib version has known security problems. It's possible your
1298vendor has fixed these problems without changing the version number. If you
1299are sure this is the case, you can disable the check by running
1300"./configure --without-zlib-version-check".
Darren Tuckerac1910f2005-07-26 12:00:42 +10001301If you are in doubt, upgrade zlib to version 1.2.3 or greater.
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001302See http://www.gzip.org/zlib/ for details.])
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001303 else
1304 AC_MSG_WARN([zlib version may have security problems])
1305 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10001306 ],
1307 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
Darren Tucker2dcd2392004-01-23 17:13:33 +11001308)
Damien Miller6f9c3372000-10-25 10:06:04 +11001309
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001310dnl UnixWare 2.x
Tim Rice648f8762011-01-26 12:38:57 -08001311AC_CHECK_FUNC([strcasecmp],
1312 [], [ AC_CHECK_LIB([resolv], [strcasecmp], [LIBS="$LIBS -lresolv"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001313)
Tim Rice648f8762011-01-26 12:38:57 -08001314AC_CHECK_FUNCS([utimes],
1315 [], [ AC_CHECK_LIB([c89], [utimes], [AC_DEFINE([HAVE_UTIMES])
Tim Ricecbb90662002-07-08 19:17:10 -07001316 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001317)
Damien Millerab18c411999-11-11 10:40:23 +11001318
Tim Ricee589a292001-11-03 11:09:32 -08001319dnl Checks for libutil functions
Damien Millerb87f6b72013-02-23 09:12:23 +11001320AC_CHECK_HEADERS([bsd/libutil.h libutil.h])
Damien Miller398c0ff2012-04-19 21:46:35 +10001321AC_SEARCH_LIBS([fmt_scaled], [util bsd])
Darren Tuckere194ba42013-05-16 20:47:31 +10001322AC_SEARCH_LIBS([scan_scaled], [util bsd])
Damien Miller398c0ff2012-04-19 21:46:35 +10001323AC_SEARCH_LIBS([login], [util bsd])
1324AC_SEARCH_LIBS([logout], [util bsd])
1325AC_SEARCH_LIBS([logwtmp], [util bsd])
1326AC_SEARCH_LIBS([openpty], [util bsd])
1327AC_SEARCH_LIBS([updwtmp], [util bsd])
Darren Tuckere194ba42013-05-16 20:47:31 +10001328AC_CHECK_FUNCS([fmt_scaled scan_scaled login logout openpty updwtmp logwtmp])
Tim Ricee589a292001-11-03 11:09:32 -08001329
Darren Tucker2fee9092016-02-17 09:48:15 +11001330# On some platforms, inet_ntop and gethostbyname may be found in libresolv
1331# or libnsl.
Damien Millerab039492014-01-28 15:07:10 +11001332AC_SEARCH_LIBS([inet_ntop], [resolv nsl])
Darren Tucker2fee9092016-02-17 09:48:15 +11001333AC_SEARCH_LIBS([gethostbyname], [resolv nsl])
Damien Millerab039492014-01-28 15:07:10 +11001334
Ben Lindstrom8697e082001-02-24 21:41:10 +00001335AC_FUNC_STRFTIME
1336
Damien Miller3c027682001-03-14 11:39:45 +11001337# Check for ALTDIRFUNC glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001338AC_MSG_CHECKING([for GLOB_ALTDIRFUNC support])
1339AC_EGREP_CPP([FOUNDIT],
Damien Miller3c027682001-03-14 11:39:45 +11001340 [
1341 #include <glob.h>
1342 #ifdef GLOB_ALTDIRFUNC
1343 FOUNDIT
1344 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001345 ],
Damien Miller3c027682001-03-14 11:39:45 +11001346 [
Tim Rice648f8762011-01-26 12:38:57 -08001347 AC_DEFINE([GLOB_HAS_ALTDIRFUNC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001348 [Define if your system glob() function has
1349 the GLOB_ALTDIRFUNC extension])
Tim Rice648f8762011-01-26 12:38:57 -08001350 AC_MSG_RESULT([yes])
Damien Miller3c027682001-03-14 11:39:45 +11001351 ],
1352 [
Tim Rice648f8762011-01-26 12:38:57 -08001353 AC_MSG_RESULT([no])
Damien Miller3c027682001-03-14 11:39:45 +11001354 ]
1355)
Damien Millerab18c411999-11-11 10:40:23 +11001356
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001357# Check for g.gl_matchc glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001358AC_MSG_CHECKING([for gl_matchc field in glob_t])
1359AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <glob.h> ]],
1360 [[ glob_t g; g.gl_matchc = 1; ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001361 [
Tim Rice648f8762011-01-26 12:38:57 -08001362 AC_DEFINE([GLOB_HAS_GL_MATCHC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001363 [Define if your system glob() function has
1364 gl_matchc options in glob_t])
Tim Rice648f8762011-01-26 12:38:57 -08001365 AC_MSG_RESULT([yes])
1366 ], [
1367 AC_MSG_RESULT([no])
1368])
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001369
Damien Millera6e121a2010-10-07 21:39:17 +11001370# Check for g.gl_statv glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001371AC_MSG_CHECKING([for gl_statv and GLOB_KEEPSTAT extensions for glob])
1372AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <glob.h> ]], [[
Damien Millera6e121a2010-10-07 21:39:17 +11001373#ifndef GLOB_KEEPSTAT
1374#error "glob does not support GLOB_KEEPSTAT extension"
1375#endif
1376glob_t g;
1377g.gl_statv = NULL;
Tim Rice648f8762011-01-26 12:38:57 -08001378]])],
Damien Millera6e121a2010-10-07 21:39:17 +11001379 [
Tim Rice648f8762011-01-26 12:38:57 -08001380 AC_DEFINE([GLOB_HAS_GL_STATV], [1],
Damien Millera6e121a2010-10-07 21:39:17 +11001381 [Define if your system glob() function has
1382 gl_statv options in glob_t])
Tim Rice648f8762011-01-26 12:38:57 -08001383 AC_MSG_RESULT([yes])
1384 ], [
1385 AC_MSG_RESULT([no])
Damien Miller72ef7c12015-01-15 02:21:31 +11001386
Tim Rice648f8762011-01-26 12:38:57 -08001387])
Damien Millera6e121a2010-10-07 21:39:17 +11001388
Tim Rice648f8762011-01-26 12:38:57 -08001389AC_CHECK_DECLS([GLOB_NOMATCH], , , [#include <glob.h>])
Darren Tucker096faec2006-09-01 20:29:10 +10001390
Darren Tucker7df91b02016-07-14 12:25:24 +10001391AC_CHECK_DECL([VIS_ALL], ,
1392 AC_DEFINE(BROKEN_STRNVIS, 1, [missing VIS_ALL]), [#include <vis.h>])
1393
Damien Miller18bb4732001-03-28 14:35:30 +10001394AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001395AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001396 [AC_LANG_PROGRAM([[
Damien Miller18bb4732001-03-28 14:35:30 +10001397#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08001398#include <dirent.h>]],
1399 [[
1400 struct dirent d;
1401 exit(sizeof(d.d_name)<=sizeof(char));
Darren Tucker623d92f2004-09-12 22:36:15 +10001402 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001403 [AC_MSG_RESULT([yes])],
Damien Miller18bb4732001-03-28 14:35:30 +10001404 [
Tim Rice648f8762011-01-26 12:38:57 -08001405 AC_MSG_RESULT([no])
1406 AC_DEFINE([BROKEN_ONE_BYTE_DIRENT_D_NAME], [1],
Darren Tucker79d09fa2005-11-24 22:34:54 +11001407 [Define if your struct dirent expects you to
Tim Rice7df8d392005-09-19 09:33:39 -07001408 allocate extra space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001409 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08001410 [
Darren Tuckera0c2b392004-09-11 23:26:37 +10001411 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
Tim Rice648f8762011-01-26 12:38:57 -08001412 AC_DEFINE([BROKEN_ONE_BYTE_DIRENT_D_NAME])
Damien Miller18bb4732001-03-28 14:35:30 +10001413 ]
1414)
1415
Damien Miller36f49652004-08-15 18:40:59 +10001416AC_MSG_CHECKING([for /proc/pid/fd directory])
1417if test -d "/proc/$$/fd" ; then
Tim Rice648f8762011-01-26 12:38:57 -08001418 AC_DEFINE([HAVE_PROC_PID], [1], [Define if you have /proc/$pid/fd])
1419 AC_MSG_RESULT([yes])
Damien Miller36f49652004-08-15 18:40:59 +10001420else
Tim Rice648f8762011-01-26 12:38:57 -08001421 AC_MSG_RESULT([no])
Damien Miller36f49652004-08-15 18:40:59 +10001422fi
1423
Damien Millerc547bf12001-02-16 10:18:12 +11001424# Check whether user wants S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +11001425SKEY_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08001426AC_ARG_WITH([skey],
Darren Tucker1b6f2292005-02-11 16:11:49 +11001427 [ --with-skey[[=PATH]] Enable S/Key support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +11001428 [
1429 if test "x$withval" != "xno" ; then
1430
1431 if test "x$withval" != "xyes" ; then
1432 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1433 LDFLAGS="$LDFLAGS -L${withval}/lib"
1434 fi
1435
Tim Rice648f8762011-01-26 12:38:57 -08001436 AC_DEFINE([SKEY], [1], [Define if you want S/Key support])
Damien Millerc547bf12001-02-16 10:18:12 +11001437 LIBS="-lskey $LIBS"
Damien Millera8e06ce2003-11-21 23:48:55 +11001438 SKEY_MSG="yes"
Tim Riceeae17cc2005-03-17 16:52:20 -08001439
Tim Rice4cec93f2002-02-26 08:40:48 -08001440 AC_MSG_CHECKING([for s/key support])
Darren Tucker314d89e2005-10-17 23:29:23 +10001441 AC_LINK_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001442 [AC_LANG_PROGRAM([[
Tim Rice4cec93f2002-02-26 08:40:48 -08001443#include <stdio.h>
1444#include <skey.h>
Tim Rice648f8762011-01-26 12:38:57 -08001445 ]], [[
1446 char *ff = skey_keyinfo(""); ff="";
1447 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10001448 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001449 [AC_MSG_RESULT([yes])],
Tim Rice4cec93f2002-02-26 08:40:48 -08001450 [
Tim Rice648f8762011-01-26 12:38:57 -08001451 AC_MSG_RESULT([no])
Damien Millerc547bf12001-02-16 10:18:12 +11001452 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
1453 ])
Tim Ricee1d93702016-05-31 11:13:22 -07001454 AC_MSG_CHECKING([if skeychallenge takes 4 arguments])
Tim Rice648f8762011-01-26 12:38:57 -08001455 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1456#include <stdio.h>
1457#include <skey.h>
1458 ]], [[
1459 (void)skeychallenge(NULL,"name","",0);
1460 ]])],
1461 [
1462 AC_MSG_RESULT([yes])
1463 AC_DEFINE([SKEYCHALLENGE_4ARG], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001464 [Define if your skeychallenge()
1465 function takes 4 arguments (NetBSD)])],
Tim Rice648f8762011-01-26 12:38:57 -08001466 [
1467 AC_MSG_RESULT([no])
1468 ])
Damien Millerc547bf12001-02-16 10:18:12 +11001469 fi
1470 ]
1471)
1472
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001473# Check whether user wants to use ldns
1474LDNS_MSG="no"
1475AC_ARG_WITH(ldns,
1476 [ --with-ldns[[=PATH]] Use ldns for DNSSEC support (optionally in PATH)],
Damien Miller523db852017-02-03 16:01:22 +11001477 [
1478 ldns=""
1479 if test "x$withval" = "xyes" ; then
1480 AC_PATH_TOOL([LDNSCONFIG], [ldns-config], [no])
1481 if test "x$PKGCONFIG" = "xno"; then
1482 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1483 LDFLAGS="$LDFLAGS -L${withval}/lib"
1484 LIBS="-lldns $LIBS"
1485 ldns=yes
1486 else
1487 LIBS="$LIBS `$LDNSCONFIG --libs`"
1488 CPPFLAGS="$CPPFLAGS `$LDNSCONFIG --cflags`"
1489 fi
1490 elif test "x$withval" != "xno" ; then
1491 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1492 LDFLAGS="$LDFLAGS -L${withval}/lib"
1493 LIBS="-lldns $LIBS"
1494 ldns=yes
1495 fi
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001496
Damien Miller523db852017-02-03 16:01:22 +11001497 # Verify that it works.
1498 if test "x$ldns" = "xyes" ; then
1499 AC_DEFINE(HAVE_LDNS, 1, [Define if you want ldns support])
1500 LDNS_MSG="yes"
1501 AC_MSG_CHECKING([for ldns support])
1502 AC_LINK_IFELSE(
1503 [AC_LANG_SOURCE([[
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001504#include <stdio.h>
1505#include <stdlib.h>
1506#include <stdint.h>
1507#include <ldns/ldns.h>
1508int main() { ldns_status status = ldns_verify_trusted(NULL, NULL, NULL, NULL); status=LDNS_STATUS_OK; exit(0); }
Damien Miller523db852017-02-03 16:01:22 +11001509 ]])
1510 ],
1511 [AC_MSG_RESULT(yes)],
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001512 [
1513 AC_MSG_RESULT(no)
1514 AC_MSG_ERROR([** Incomplete or missing ldns libraries.])
1515 ])
Damien Miller523db852017-02-03 16:01:22 +11001516 fi
1517])
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001518
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001519# Check whether user wants libedit support
1520LIBEDIT_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08001521AC_ARG_WITH([libedit],
Darren Tucker1b6f2292005-02-11 16:11:49 +11001522 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001523 [ if test "x$withval" != "xno" ; then
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001524 if test "x$withval" = "xyes" ; then
Darren Tucker59353892012-05-19 15:24:37 +10001525 AC_PATH_TOOL([PKGCONFIG], [pkg-config], [no])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001526 if test "x$PKGCONFIG" != "xno"; then
Tim Rice648f8762011-01-26 12:38:57 -08001527 AC_MSG_CHECKING([if $PKGCONFIG knows about libedit])
Tim Ricee1d93702016-05-31 11:13:22 -07001528 if "$PKGCONFIG" libedit; then
Tim Rice648f8762011-01-26 12:38:57 -08001529 AC_MSG_RESULT([yes])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001530 use_pkgconfig_for_libedit=yes
1531 else
Tim Rice648f8762011-01-26 12:38:57 -08001532 AC_MSG_RESULT([no])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001533 fi
1534 fi
1535 else
Darren Tuckerc373a562005-09-22 20:15:08 +10001536 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1537 if test -n "${need_dash_r}"; then
1538 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1539 else
1540 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1541 fi
Darren Tucker1df61452005-03-21 09:58:07 +11001542 fi
Damien Miller1f789802010-10-11 22:35:22 +11001543 if test "x$use_pkgconfig_for_libedit" = "xyes"; then
Darren Tucker8369c8e2013-12-05 11:00:16 +11001544 LIBEDIT=`$PKGCONFIG --libs libedit`
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001545 CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`"
1546 else
1547 LIBEDIT="-ledit -lcurses"
1548 fi
1549 OTHERLIBS=`echo $LIBEDIT | sed 's/-ledit//'`
Tim Rice648f8762011-01-26 12:38:57 -08001550 AC_CHECK_LIB([edit], [el_init],
1551 [ AC_DEFINE([USE_LIBEDIT], [1], [Use libedit for sftp])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001552 LIBEDIT_MSG="yes"
Tim Rice648f8762011-01-26 12:38:57 -08001553 AC_SUBST([LIBEDIT])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001554 ],
Tim Rice648f8762011-01-26 12:38:57 -08001555 [ AC_MSG_ERROR([libedit not found]) ],
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001556 [ $OTHERLIBS ]
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001557 )
Tim Rice648f8762011-01-26 12:38:57 -08001558 AC_MSG_CHECKING([if libedit version is compatible])
Tim Ricec1819c82005-08-15 17:48:40 -07001559 AC_COMPILE_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001560 [AC_LANG_PROGRAM([[ #include <histedit.h> ]],
1561 [[
Darren Tuckerc7572b22005-08-10 20:34:15 +10001562 int i = H_SETSIZE;
1563 el_init("", NULL, NULL, NULL);
1564 exit(0);
Tim Ricec1819c82005-08-15 17:48:40 -07001565 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001566 [ AC_MSG_RESULT([yes]) ],
1567 [ AC_MSG_RESULT([no])
1568 AC_MSG_ERROR([libedit version is not compatible]) ]
Darren Tuckerc7572b22005-08-10 20:34:15 +10001569 )
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001570 fi ]
1571)
1572
Darren Tuckerd9f88912005-02-20 21:01:48 +11001573AUDIT_MODULE=none
Tim Rice648f8762011-01-26 12:38:57 -08001574AC_ARG_WITH([audit],
Darren Tuckerea52a822011-01-17 21:15:27 +11001575 [ --with-audit=module Enable audit support (modules=debug,bsm,linux)],
Darren Tuckerd9f88912005-02-20 21:01:48 +11001576 [
Tim Rice648f8762011-01-26 12:38:57 -08001577 AC_MSG_CHECKING([for supported audit module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001578 case "$withval" in
1579 bsm)
Tim Rice648f8762011-01-26 12:38:57 -08001580 AC_MSG_RESULT([bsm])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001581 AUDIT_MODULE=bsm
1582 dnl Checks for headers, libs and functions
Tim Rice648f8762011-01-26 12:38:57 -08001583 AC_CHECK_HEADERS([bsm/audit.h], [],
1584 [AC_MSG_ERROR([BSM enabled and bsm/audit.h not found])],
Darren Tucker6d0d6fb2006-09-09 01:05:21 +10001585 [
1586#ifdef HAVE_TIME_H
1587# include <time.h>
1588#endif
1589 ]
1590)
Tim Rice648f8762011-01-26 12:38:57 -08001591 AC_CHECK_LIB([bsm], [getaudit], [],
1592 [AC_MSG_ERROR([BSM enabled and required library not found])])
1593 AC_CHECK_FUNCS([getaudit], [],
1594 [AC_MSG_ERROR([BSM enabled and required function not found])])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001595 # These are optional
Tim Rice648f8762011-01-26 12:38:57 -08001596 AC_CHECK_FUNCS([getaudit_addr aug_get_machine])
1597 AC_DEFINE([USE_BSM_AUDIT], [1], [Use BSM audit module])
Darren Tucker1fcec9d2013-12-19 11:00:12 +11001598 if test "$sol2ver" -ge 11; then
Tim Ricee1d93702016-05-31 11:13:22 -07001599 SSHDLIBS="$SSHDLIBS -lscf"
1600 AC_DEFINE([BROKEN_BSM_API], [1],
1601 [The system has incomplete BSM API])
Darren Tucker93a2d412012-02-24 10:40:41 +11001602 fi
Darren Tuckerd9f88912005-02-20 21:01:48 +11001603 ;;
Darren Tuckerea52a822011-01-17 21:15:27 +11001604 linux)
Tim Rice648f8762011-01-26 12:38:57 -08001605 AC_MSG_RESULT([linux])
Darren Tuckerea52a822011-01-17 21:15:27 +11001606 AUDIT_MODULE=linux
1607 dnl Checks for headers, libs and functions
Tim Rice648f8762011-01-26 12:38:57 -08001608 AC_CHECK_HEADERS([libaudit.h])
Darren Tuckerea52a822011-01-17 21:15:27 +11001609 SSHDLIBS="$SSHDLIBS -laudit"
Tim Rice648f8762011-01-26 12:38:57 -08001610 AC_DEFINE([USE_LINUX_AUDIT], [1], [Use Linux audit module])
Darren Tuckerea52a822011-01-17 21:15:27 +11001611 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001612 debug)
1613 AUDIT_MODULE=debug
Tim Rice648f8762011-01-26 12:38:57 -08001614 AC_MSG_RESULT([debug])
1615 AC_DEFINE([SSH_AUDIT_EVENTS], [1], [Use audit debugging module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001616 ;;
Tim Rice8bc6b902005-08-09 10:09:53 -07001617 no)
Tim Rice648f8762011-01-26 12:38:57 -08001618 AC_MSG_RESULT([no])
Tim Rice8bc6b902005-08-09 10:09:53 -07001619 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001620 *)
1621 AC_MSG_ERROR([Unknown audit module $withval])
1622 ;;
1623 esac ]
1624)
1625
Darren Tucker096118d2014-01-21 12:48:51 +11001626AC_ARG_WITH([pie],
Damien Miller76c04802015-01-13 19:38:18 +11001627 [ --with-pie Build Position Independent Executables if possible], [
Darren Tucker096118d2014-01-21 12:48:51 +11001628 if test "x$withval" = "xno"; then
Damien Miller852472a2014-01-22 16:31:18 +11001629 use_pie=no
Darren Tucker096118d2014-01-21 12:48:51 +11001630 fi
1631 if test "x$withval" = "xyes"; then
Damien Miller852472a2014-01-22 16:31:18 +11001632 use_pie=yes
Darren Tucker096118d2014-01-21 12:48:51 +11001633 fi
1634 ]
1635)
Damien Miller852472a2014-01-22 16:31:18 +11001636if test "x$use_pie" = "x"; then
1637 use_pie=no
1638fi
1639if test "x$use_toolchain_hardening" != "x1" && test "x$use_pie" = "xauto"; then
1640 # Turn off automatic PIE when toolchain hardening is off.
1641 use_pie=no
1642fi
Damien Millerc161fc92014-01-29 21:01:33 +11001643if test "x$use_pie" = "xauto"; then
Damien Miller852472a2014-01-22 16:31:18 +11001644 # Automatic PIE requires gcc >= 4.x
1645 AC_MSG_CHECKING([for gcc >= 4.x])
1646 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
1647#if !defined(__GNUC__) || __GNUC__ < 4
1648#error gcc is too old
1649#endif
1650]])],
1651 [ AC_MSG_RESULT([yes]) ],
1652 [ AC_MSG_RESULT([no])
1653 use_pie=no ]
1654)
1655fi
1656if test "x$use_pie" != "xno"; then
Damien Miller5c2ff5e2014-01-22 21:30:12 +11001657 SAVED_CFLAGS="$CFLAGS"
1658 SAVED_LDFLAGS="$LDFLAGS"
Darren Tucker096118d2014-01-21 12:48:51 +11001659 OSSH_CHECK_CFLAG_COMPILE([-fPIE])
1660 OSSH_CHECK_LDFLAG_LINK([-pie])
Damien Miller5c2ff5e2014-01-22 21:30:12 +11001661 # We use both -fPIE and -pie or neither.
1662 AC_MSG_CHECKING([whether both -fPIE and -pie are supported])
1663 if echo "x $CFLAGS" | grep ' -fPIE' >/dev/null 2>&1 && \
1664 echo "x $LDFLAGS" | grep ' -pie' >/dev/null 2>&1 ; then
1665 AC_MSG_RESULT([yes])
1666 else
1667 AC_MSG_RESULT([no])
1668 CFLAGS="$SAVED_CFLAGS"
1669 LDFLAGS="$SAVED_LDFLAGS"
1670 fi
Darren Tucker096118d2014-01-21 12:48:51 +11001671fi
1672
Damien Millerfe1f1432003-02-24 15:45:42 +11001673dnl Checks for library functions. Please keep in alphabetical order
Tim Rice648f8762011-01-26 12:38:57 -08001674AC_CHECK_FUNCS([ \
Damien Miller1ff130d2013-12-07 11:51:51 +11001675 Blowfish_initstate \
1676 Blowfish_expandstate \
1677 Blowfish_expand0state \
1678 Blowfish_stream2word \
Damien Miller57f39152005-11-24 19:58:19 +11001679 asprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001680 b64_ntop \
1681 __b64_ntop \
1682 b64_pton \
1683 __b64_pton \
1684 bcopy \
Damien Millera9134422013-12-07 11:35:36 +11001685 bcrypt_pbkdf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001686 bindresvport_sa \
Damien Miller1ff130d2013-12-07 11:51:51 +11001687 blf_enc \
Damien Millerc96d8532014-01-25 13:12:28 +11001688 cap_rights_limit \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001689 clock \
1690 closefrom \
1691 dirfd \
Darren Tuckerefdf5342013-05-30 08:29:08 +10001692 endgrent \
Darren Tucker6310ef22016-07-13 14:42:35 +10001693 err \
1694 errx \
Damien Miller1d2c4562014-02-04 11:18:20 +11001695 explicit_bzero \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001696 fchmod \
1697 fchown \
1698 freeaddrinfo \
Darren Tuckera5cf1e22014-01-17 18:10:58 +11001699 fstatfs \
Darren Tucker598eaa62008-06-09 03:32:29 +10001700 fstatvfs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001701 futimes \
1702 getaddrinfo \
1703 getcwd \
1704 getgrouplist \
1705 getnameinfo \
1706 getopt \
1707 getpeereid \
Darren Tucker164aa302007-03-21 21:39:57 +11001708 getpeerucred \
Darren Tucker3c4a24c2013-02-15 11:41:35 +11001709 getpgid \
1710 getpgrp \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001711 _getpty \
1712 getrlimit \
1713 getttyent \
1714 glob \
Darren Tucker909a3902010-01-15 12:38:30 +11001715 group_from_gid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001716 inet_aton \
1717 inet_ntoa \
1718 inet_ntop \
1719 innetgr \
Darren Tuckerd38f05d2017-03-20 13:38:27 +11001720 llabs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001721 login_getcapbool \
1722 md5_crypt \
1723 memmove \
Damien Miller3d673d12014-08-27 06:32:01 +10001724 memset_s \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001725 mkdtemp \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001726 ngetaddrinfo \
1727 nsleep \
1728 ogetaddrinfo \
1729 openlog_r \
Darren Tucker3ddd15e2015-11-30 07:23:53 +11001730 pledge \
Darren Tuckerfebf0f52007-06-25 22:15:12 +10001731 poll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001732 prctl \
1733 pstat \
1734 readpassphrase \
Darren Tucker642652d2014-12-10 01:32:23 +11001735 reallocarray \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001736 recvmsg \
1737 rresvport_af \
1738 sendmsg \
1739 setdtablesize \
1740 setegid \
1741 setenv \
1742 seteuid \
Darren Tucker909a3902010-01-15 12:38:30 +11001743 setgroupent \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001744 setgroups \
Darren Tucker34f702a2012-07-04 08:50:09 +10001745 setlinebuf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001746 setlogin \
Darren Tucker909a3902010-01-15 12:38:30 +11001747 setpassent\
Darren Tucker0c9653f2005-05-28 15:58:14 +10001748 setpcred \
1749 setproctitle \
1750 setregid \
1751 setreuid \
1752 setrlimit \
1753 setsid \
1754 setvbuf \
1755 sigaction \
1756 sigvec \
1757 snprintf \
1758 socketpair \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +10001759 statfs \
1760 statvfs \
Darren Tuckerafec0772016-12-13 10:23:03 +11001761 strcasestr \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001762 strdup \
1763 strerror \
1764 strlcat \
1765 strlcpy \
1766 strmode \
Darren Tuckerb54f50e2011-09-29 23:17:18 +10001767 strnlen \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001768 strnvis \
Darren Tuckeraa74f672010-08-16 13:15:23 +10001769 strptime \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001770 strtonum \
Darren Tucker81eb5d52005-06-01 21:39:33 +10001771 strtoll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001772 strtoul \
Darren Tucker8e6fb782013-02-15 12:13:01 +11001773 strtoull \
Damien Miller34a17692007-06-11 14:15:42 +10001774 swap32 \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001775 sysconf \
1776 tcgetpgrp \
Damien Milleraa180632010-10-07 21:25:27 +11001777 timingsafe_bcmp \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001778 truncate \
1779 unsetenv \
1780 updwtmpx \
Darren Tucker909a3902010-01-15 12:38:30 +11001781 user_from_uid \
Damien Millerf4db77d2013-03-15 10:34:25 +11001782 usleep \
Damien Miller57f39152005-11-24 19:58:19 +11001783 vasprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001784 vsnprintf \
1785 waitpid \
Darren Tucker6310ef22016-07-13 14:42:35 +10001786 warn \
Tim Rice648f8762011-01-26 12:38:57 -08001787])
Tim Rice13aae5e2001-10-21 17:53:58 -07001788
Darren Tuckerc61d5ec2017-02-03 14:10:34 +11001789dnl Wide character support.
Darren Tuckera2333582016-07-14 10:59:09 +10001790AC_CHECK_FUNCS([mblen mbtowc nl_langinfo wcwidth])
Darren Tuckera2333582016-07-14 10:59:09 +10001791
Darren Tucker10e290e2016-12-13 13:51:32 +11001792TEST_SSH_UTF8=${TEST_SSH_UTF8:=yes}
Darren Tucker47b8c992016-12-08 15:48:34 +11001793AC_MSG_CHECKING([for utf8 locale support])
1794AC_RUN_IFELSE(
1795 [AC_LANG_PROGRAM([[
1796#include <locale.h>
Darren Tuckerc3599502016-12-09 12:52:02 +11001797#include <stdlib.h>
Darren Tucker47b8c992016-12-08 15:48:34 +11001798 ]], [[
1799 char *loc = setlocale(LC_CTYPE, "en_US.UTF-8");
1800 if (loc != NULL)
1801 exit(0);
1802 exit(1);
1803 ]])],
1804 AC_MSG_RESULT(yes),
1805 [AC_MSG_RESULT(no)
1806 TEST_SSH_UTF8=no],
1807 AC_MSG_WARN([cross compiling: assuming yes])
1808)
1809
Tim Ricec7a8af02010-11-08 14:26:23 -08001810AC_LINK_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001811 [AC_LANG_PROGRAM(
1812 [[ #include <ctype.h> ]],
1813 [[ return (isblank('a')); ]])],
1814 [AC_DEFINE([HAVE_ISBLANK], [1], [Define if you have isblank(3C).])
Tim Ricec7a8af02010-11-08 14:26:23 -08001815])
1816
Damien Miller5fbe93f2016-07-15 13:54:31 +10001817disable_pkcs11=
1818AC_ARG_ENABLE([pkcs11],
1819 [ --disable-pkcs11 disable PKCS#11 support code [no]],
1820 [
1821 if test "x$enableval" = "xno" ; then
1822 disable_pkcs11=1
1823 fi
1824 ]
1825)
1826
Damien Miller72ef7c12015-01-15 02:21:31 +11001827# PKCS11 depends on OpenSSL.
Damien Miller5fbe93f2016-07-15 13:54:31 +10001828if test "x$openssl" = "xyes" && test "x$disable_pkcs11" = "x"; then
Damien Miller72ef7c12015-01-15 02:21:31 +11001829 # PKCS#11 support requires dlopen() and co
1830 AC_SEARCH_LIBS([dlopen], [dl],
1831 [AC_DEFINE([ENABLE_PKCS11], [], [Enable for PKCS#11 support])]
1832 )
1833fi
Damien Millerb3c9f782010-02-12 10:11:34 +11001834
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001835# IRIX has a const char return value for gai_strerror()
Tim Rice648f8762011-01-26 12:38:57 -08001836AC_CHECK_FUNCS([gai_strerror], [
1837 AC_DEFINE([HAVE_GAI_STRERROR])
1838 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001839#include <sys/types.h>
1840#include <sys/socket.h>
1841#include <netdb.h>
1842
Tim Rice648f8762011-01-26 12:38:57 -08001843const char *gai_strerror(int);
1844 ]], [[
1845 char *str;
1846 str = gai_strerror(0);
1847 ]])], [
1848 AC_DEFINE([HAVE_CONST_GAI_STRERROR_PROTO], [1],
1849 [Define if gai_strerror() returns const char *])], [])])
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001850
Tim Rice648f8762011-01-26 12:38:57 -08001851AC_SEARCH_LIBS([nanosleep], [rt posix4], [AC_DEFINE([HAVE_NANOSLEEP], [1],
1852 [Some systems put nanosleep outside of libc])])
Damien Millercd6853c2003-01-28 11:33:42 +11001853
Darren Tuckera7108912013-06-02 08:18:31 +10001854AC_SEARCH_LIBS([clock_gettime], [rt],
1855 [AC_DEFINE([HAVE_CLOCK_GETTIME], [1], [Have clock_gettime])])
1856
Darren Tuckerf1159b52003-07-07 19:44:01 +10001857dnl Make sure prototypes are defined for these before using them.
Tim Rice648f8762011-01-26 12:38:57 -08001858AC_CHECK_DECL([getrusage], [AC_CHECK_FUNCS([getrusage])])
1859AC_CHECK_DECL([strsep],
1860 [AC_CHECK_FUNCS([strsep])],
Darren Tucker390b6d52005-05-28 16:54:36 +10001861 [],
1862 [
1863#ifdef HAVE_STRING_H
1864# include <string.h>
1865#endif
1866 ])
Ben Lindstrom3e006472002-10-16 00:24:03 +00001867
Darren Tuckerb2427c82003-09-10 15:22:44 +10001868dnl tcsendbreak might be a macro
Tim Rice648f8762011-01-26 12:38:57 -08001869AC_CHECK_DECL([tcsendbreak],
1870 [AC_DEFINE([HAVE_TCSENDBREAK])],
1871 [AC_CHECK_FUNCS([tcsendbreak])],
Darren Tuckerb2427c82003-09-10 15:22:44 +10001872 [#include <termios.h>]
1873)
1874
Tim Rice648f8762011-01-26 12:38:57 -08001875AC_CHECK_DECLS([h_errno], , ,[#include <netdb.h>])
Darren Tucker5bb14002004-04-23 18:53:10 +10001876
Tim Rice648f8762011-01-26 12:38:57 -08001877AC_CHECK_DECLS([SHUT_RD], , ,
Darren Tucker128a0892006-07-12 19:02:56 +10001878 [
1879#include <sys/types.h>
1880#include <sys/socket.h>
1881 ])
Darren Tucker248469b2006-07-12 14:14:31 +10001882
Tim Rice648f8762011-01-26 12:38:57 -08001883AC_CHECK_DECLS([O_NONBLOCK], , ,
Darren Tucker248469b2006-07-12 14:14:31 +10001884 [
1885#include <sys/types.h>
1886#ifdef HAVE_SYS_STAT_H
1887# include <sys/stat.h>
1888#endif
1889#ifdef HAVE_FCNTL_H
1890# include <fcntl.h>
1891#endif
1892 ])
1893
Tim Rice648f8762011-01-26 12:38:57 -08001894AC_CHECK_DECLS([writev], , , [
Darren Tuckered0b5922006-09-03 22:44:49 +10001895#include <sys/types.h>
1896#include <sys/uio.h>
1897#include <unistd.h>
1898 ])
1899
Tim Rice648f8762011-01-26 12:38:57 -08001900AC_CHECK_DECLS([MAXSYMLINKS], , , [
Darren Tucker6d862a52007-04-29 14:39:02 +10001901#include <sys/param.h>
1902 ])
1903
Tim Rice648f8762011-01-26 12:38:57 -08001904AC_CHECK_DECLS([offsetof], , , [
Darren Tuckerdca0edf2007-04-29 15:06:44 +10001905#include <stddef.h>
1906 ])
1907
Darren Tuckerc7aad002013-06-02 07:18:47 +10001908# extra bits for select(2)
1909AC_CHECK_DECLS([howmany, NFDBITS], [], [], [[
1910#include <sys/param.h>
1911#include <sys/types.h>
1912#ifdef HAVE_SYS_SYSMACROS_H
1913#include <sys/sysmacros.h>
1914#endif
1915#ifdef HAVE_SYS_SELECT_H
1916#include <sys/select.h>
1917#endif
1918#ifdef HAVE_SYS_TIME_H
1919#include <sys/time.h>
1920#endif
1921#ifdef HAVE_UNISTD_H
1922#include <unistd.h>
1923#endif
1924 ]])
1925AC_CHECK_TYPES([fd_mask], [], [], [[
1926#include <sys/param.h>
1927#include <sys/types.h>
1928#ifdef HAVE_SYS_SELECT_H
1929#include <sys/select.h>
1930#endif
1931#ifdef HAVE_SYS_TIME_H
1932#include <sys/time.h>
1933#endif
1934#ifdef HAVE_UNISTD_H
1935#include <unistd.h>
1936#endif
1937 ]])
1938
Tim Rice648f8762011-01-26 12:38:57 -08001939AC_CHECK_FUNCS([setresuid], [
Darren Tucker2a6b0292003-12-31 14:59:17 +11001940 dnl Some platorms have setresuid that isn't implemented, test for this
Tim Rice648f8762011-01-26 12:38:57 -08001941 AC_MSG_CHECKING([if setresuid seems to work])
Darren Tucker623d92f2004-09-12 22:36:15 +10001942 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001943 [AC_LANG_PROGRAM([[
Darren Tuckere937be32003-12-17 18:53:26 +11001944#include <stdlib.h>
1945#include <errno.h>
Tim Rice648f8762011-01-26 12:38:57 -08001946 ]], [[
1947 errno=0;
1948 setresuid(0,0,0);
1949 if (errno==ENOSYS)
1950 exit(1);
1951 else
1952 exit(0);
Darren Tucker623d92f2004-09-12 22:36:15 +10001953 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001954 [AC_MSG_RESULT([yes])],
1955 [AC_DEFINE([BROKEN_SETRESUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001956 [Define if your setresuid() is broken])
Tim Rice648f8762011-01-26 12:38:57 -08001957 AC_MSG_RESULT([not implemented])],
Darren Tuckera0c2b392004-09-11 23:26:37 +10001958 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001959 )
1960])
Darren Tuckere937be32003-12-17 18:53:26 +11001961
Tim Rice648f8762011-01-26 12:38:57 -08001962AC_CHECK_FUNCS([setresgid], [
Darren Tucker2a6b0292003-12-31 14:59:17 +11001963 dnl Some platorms have setresgid that isn't implemented, test for this
Tim Rice648f8762011-01-26 12:38:57 -08001964 AC_MSG_CHECKING([if setresgid seems to work])
Darren Tucker623d92f2004-09-12 22:36:15 +10001965 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001966 [AC_LANG_PROGRAM([[
Darren Tuckere937be32003-12-17 18:53:26 +11001967#include <stdlib.h>
1968#include <errno.h>
Tim Rice648f8762011-01-26 12:38:57 -08001969 ]], [[
1970 errno=0;
1971 setresgid(0,0,0);
1972 if (errno==ENOSYS)
1973 exit(1);
1974 else
1975 exit(0);
Darren Tucker623d92f2004-09-12 22:36:15 +10001976 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001977 [AC_MSG_RESULT([yes])],
1978 [AC_DEFINE([BROKEN_SETRESGID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001979 [Define if your setresgid() is broken])
Tim Rice648f8762011-01-26 12:38:57 -08001980 AC_MSG_RESULT([not implemented])],
Darren Tuckera0c2b392004-09-11 23:26:37 +10001981 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11001982 )
1983])
Darren Tuckere937be32003-12-17 18:53:26 +11001984
Darren Tuckerd3e2aee2015-07-17 12:52:34 +10001985AC_CHECK_FUNCS([realpath], [
1986 dnl the sftp v3 spec says SSH_FXP_REALPATH will "canonicalize any given
1987 dnl path name", however some implementations of realpath (and some
1988 dnl versions of the POSIX spec) do not work on non-existent files,
1989 dnl so we use the OpenBSD implementation on those platforms.
1990 AC_MSG_CHECKING([if realpath works with non-existent files])
1991 AC_RUN_IFELSE(
1992 [AC_LANG_PROGRAM([[
1993#include <limits.h>
1994#include <stdlib.h>
1995#include <errno.h>
1996 ]], [[
1997 char buf[PATH_MAX];
1998 if (realpath("/opensshnonexistentfilename1234", buf) == NULL)
1999 if (errno == ENOENT)
2000 exit(1);
2001 exit(0);
2002 ]])],
2003 [AC_MSG_RESULT([yes])],
2004 [AC_DEFINE([BROKEN_REALPATH], [1],
2005 [realpath does not work with nonexistent files])
2006 AC_MSG_RESULT([no])],
2007 [AC_MSG_WARN([cross compiling: assuming working])]
2008 )
2009])
2010
Damien Millerad833b32000-08-23 10:46:23 +10002011dnl Checks for time functions
Tim Rice648f8762011-01-26 12:38:57 -08002012AC_CHECK_FUNCS([gettimeofday time])
Damien Millerad833b32000-08-23 10:46:23 +10002013dnl Checks for utmp functions
Tim Rice648f8762011-01-26 12:38:57 -08002014AC_CHECK_FUNCS([endutent getutent getutid getutline pututline setutent])
2015AC_CHECK_FUNCS([utmpname])
Damien Millerad833b32000-08-23 10:46:23 +10002016dnl Checks for utmpx functions
Tim Rice648f8762011-01-26 12:38:57 -08002017AC_CHECK_FUNCS([endutxent getutxent getutxid getutxline getutxuser pututxline])
2018AC_CHECK_FUNCS([setutxdb setutxent utmpxname])
Damien Miller20e231f2009-02-12 13:12:21 +11002019dnl Checks for lastlog functions
Tim Rice648f8762011-01-26 12:38:57 -08002020AC_CHECK_FUNCS([getlastlogxbyname])
Damien Millercedfecc1999-11-15 14:36:53 +11002021
Tim Rice648f8762011-01-26 12:38:57 -08002022AC_CHECK_FUNC([daemon],
2023 [AC_DEFINE([HAVE_DAEMON], [1], [Define if your libraries define daemon()])],
2024 [AC_CHECK_LIB([bsd], [daemon],
2025 [LIBS="$LIBS -lbsd"; AC_DEFINE([HAVE_DAEMON])])]
Damien Miller04f80141999-11-19 15:32:34 +11002026)
2027
Tim Rice648f8762011-01-26 12:38:57 -08002028AC_CHECK_FUNC([getpagesize],
2029 [AC_DEFINE([HAVE_GETPAGESIZE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002030 [Define if your libraries define getpagesize()])],
Tim Rice648f8762011-01-26 12:38:57 -08002031 [AC_CHECK_LIB([ucb], [getpagesize],
2032 [LIBS="$LIBS -lucb"; AC_DEFINE([HAVE_GETPAGESIZE])])]
Damien Miller9fb07e42000-03-05 16:22:59 +11002033)
2034
Damien Millercb170cb2000-07-01 16:52:55 +10002035# Check for broken snprintf
2036if test "x$ac_cv_func_snprintf" = "xyes" ; then
2037 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002038 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002039 [AC_LANG_PROGRAM([[ #include <stdio.h> ]],
2040 [[
2041 char b[5];
2042 snprintf(b,5,"123456789");
Tim Ricee1d93702016-05-31 11:13:22 -07002043 exit(b[4]!='\0');
Darren Tucker623d92f2004-09-12 22:36:15 +10002044 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08002045 [AC_MSG_RESULT([yes])],
Damien Millercb170cb2000-07-01 16:52:55 +10002046 [
Tim Rice648f8762011-01-26 12:38:57 -08002047 AC_MSG_RESULT([no])
2048 AC_DEFINE([BROKEN_SNPRINTF], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002049 [Define if your snprintf is busted])
Damien Millercb170cb2000-07-01 16:52:55 +10002050 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002051 ],
2052 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
Damien Millercb170cb2000-07-01 16:52:55 +10002053 )
2054fi
2055
Damien Millerd244a582014-08-23 17:06:49 +10002056# We depend on vsnprintf returning the right thing on overflow: the
2057# number of characters it tried to create (as per SUSv3)
2058if test "x$ac_cv_func_vsnprintf" = "xyes" ; then
Damien Miller57f39152005-11-24 19:58:19 +11002059 AC_MSG_CHECKING([whether vsnprintf returns correct values on overflow])
2060 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002061 [AC_LANG_PROGRAM([[
Damien Miller57f39152005-11-24 19:58:19 +11002062#include <sys/types.h>
2063#include <stdio.h>
2064#include <stdarg.h>
2065
Damien Millerd244a582014-08-23 17:06:49 +10002066int x_snprintf(char *str, size_t count, const char *fmt, ...)
Damien Miller57f39152005-11-24 19:58:19 +11002067{
Damien Millerd244a582014-08-23 17:06:49 +10002068 size_t ret;
2069 va_list ap;
2070
2071 va_start(ap, fmt);
2072 ret = vsnprintf(str, count, fmt, ap);
2073 va_end(ap);
Damien Miller57f39152005-11-24 19:58:19 +11002074 return ret;
2075}
Tim Rice648f8762011-01-26 12:38:57 -08002076 ]], [[
Damien Millerd244a582014-08-23 17:06:49 +10002077char x[1];
2078if (x_snprintf(x, 1, "%s %d", "hello", 12345) != 11)
2079 return 1;
2080if (x_snprintf(NULL, 0, "%s %d", "hello", 12345) != 11)
2081 return 1;
2082return 0;
Tim Rice648f8762011-01-26 12:38:57 -08002083 ]])],
2084 [AC_MSG_RESULT([yes])],
Damien Miller57f39152005-11-24 19:58:19 +11002085 [
Tim Rice648f8762011-01-26 12:38:57 -08002086 AC_MSG_RESULT([no])
2087 AC_DEFINE([BROKEN_SNPRINTF], [1],
Damien Miller57f39152005-11-24 19:58:19 +11002088 [Define if your snprintf is busted])
2089 AC_MSG_WARN([****** Your vsnprintf() function is broken, complain to your vendor])
2090 ],
2091 [ AC_MSG_WARN([cross compiling: Assuming working vsnprintf()]) ]
2092 )
2093fi
2094
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002095# On systems where [v]snprintf is broken, but is declared in stdio,
2096# check that the fmt argument is const char * or just char *.
2097# This is only useful for when BROKEN_SNPRINTF
2098AC_MSG_CHECKING([whether snprintf can declare const char *fmt])
Tim Rice648f8762011-01-26 12:38:57 -08002099AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2100#include <stdio.h>
2101int snprintf(char *a, size_t b, const char *c, ...) { return 0; }
2102 ]], [[
2103 snprintf(0, 0, 0);
2104 ]])],
2105 [AC_MSG_RESULT([yes])
2106 AC_DEFINE([SNPRINTF_CONST], [const],
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002107 [Define as const if snprintf() can declare const char *fmt])],
Tim Rice648f8762011-01-26 12:38:57 -08002108 [AC_MSG_RESULT([no])
2109 AC_DEFINE([SNPRINTF_CONST], [/* not const */])])
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002110
Damien Millerb4097182004-05-23 14:09:40 +10002111# Check for missing getpeereid (or equiv) support
2112NO_PEERCHECK=""
Darren Tucker164aa302007-03-21 21:39:57 +11002113if test "x$ac_cv_func_getpeereid" != "xyes" -a "x$ac_cv_func_getpeerucred" != "xyes"; then
Damien Millerb4097182004-05-23 14:09:40 +10002114 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
Tim Rice648f8762011-01-26 12:38:57 -08002115 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2116#include <sys/types.h>
2117#include <sys/socket.h>]], [[int i = SO_PEERCRED;]])],
2118 [ AC_MSG_RESULT([yes])
2119 AC_DEFINE([HAVE_SO_PEERCRED], [1], [Have PEERCRED socket option])
2120 ], [AC_MSG_RESULT([no])
2121 NO_PEERCHECK=1
2122 ])
Damien Millerb4097182004-05-23 14:09:40 +10002123fi
2124
Damien Millere8328192003-01-07 15:18:32 +11002125dnl see whether mkstemp() requires XXXXXX
2126if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
2127AC_MSG_CHECKING([for (overly) strict mkstemp])
Darren Tucker314d89e2005-10-17 23:29:23 +10002128AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002129 [AC_LANG_PROGRAM([[
Damien Millere8328192003-01-07 15:18:32 +11002130#include <stdlib.h>
Tim Rice648f8762011-01-26 12:38:57 -08002131 ]], [[
2132 char template[]="conftest.mkstemp-test";
2133 if (mkstemp(template) == -1)
2134 exit(1);
2135 unlink(template);
2136 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002137 ]])],
Damien Millere8328192003-01-07 15:18:32 +11002138 [
Tim Rice648f8762011-01-26 12:38:57 -08002139 AC_MSG_RESULT([no])
Damien Millere8328192003-01-07 15:18:32 +11002140 ],
Damien Millera8e06ce2003-11-21 23:48:55 +11002141 [
Tim Rice648f8762011-01-26 12:38:57 -08002142 AC_MSG_RESULT([yes])
2143 AC_DEFINE([HAVE_STRICT_MKSTEMP], [1], [Silly mkstemp()])
Damien Millere8328192003-01-07 15:18:32 +11002144 ],
2145 [
Tim Rice648f8762011-01-26 12:38:57 -08002146 AC_MSG_RESULT([yes])
2147 AC_DEFINE([HAVE_STRICT_MKSTEMP])
Damien Millera8e06ce2003-11-21 23:48:55 +11002148 ]
Damien Millere8328192003-01-07 15:18:32 +11002149)
2150fi
2151
Darren Tucker70a3d552003-08-21 17:58:29 +10002152dnl make sure that openpty does not reacquire controlling terminal
2153if test ! -z "$check_for_openpty_ctty_bug"; then
Tim Rice648f8762011-01-26 12:38:57 -08002154 AC_MSG_CHECKING([if openpty correctly handles controlling tty])
Darren Tucker314d89e2005-10-17 23:29:23 +10002155 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002156 [AC_LANG_PROGRAM([[
Darren Tucker70a3d552003-08-21 17:58:29 +10002157#include <stdio.h>
2158#include <sys/fcntl.h>
2159#include <sys/types.h>
2160#include <sys/wait.h>
Tim Rice648f8762011-01-26 12:38:57 -08002161 ]], [[
Darren Tucker70a3d552003-08-21 17:58:29 +10002162 pid_t pid;
2163 int fd, ptyfd, ttyfd, status;
2164
2165 pid = fork();
2166 if (pid < 0) { /* failed */
2167 exit(1);
2168 } else if (pid > 0) { /* parent */
2169 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +11002170 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +10002171 exit(WEXITSTATUS(status));
2172 else
2173 exit(2);
2174 } else { /* child */
2175 close(0); close(1); close(2);
2176 setsid();
2177 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
2178 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
2179 if (fd >= 0)
2180 exit(3); /* Acquired ctty: broken */
2181 else
2182 exit(0); /* Did not acquire ctty: OK */
2183 }
Darren Tucker314d89e2005-10-17 23:29:23 +10002184 ]])],
Darren Tucker70a3d552003-08-21 17:58:29 +10002185 [
Tim Rice648f8762011-01-26 12:38:57 -08002186 AC_MSG_RESULT([yes])
Darren Tucker70a3d552003-08-21 17:58:29 +10002187 ],
2188 [
Tim Rice648f8762011-01-26 12:38:57 -08002189 AC_MSG_RESULT([no])
2190 AC_DEFINE([SSHD_ACQUIRES_CTTY])
Darren Tucker314d89e2005-10-17 23:29:23 +10002191 ],
2192 [
Tim Rice648f8762011-01-26 12:38:57 -08002193 AC_MSG_RESULT([cross-compiling, assuming yes])
Darren Tucker70a3d552003-08-21 17:58:29 +10002194 ]
2195 )
2196fi
2197
Tim Rice8bb561b2005-03-17 16:23:19 -08002198if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
2199 test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002200 AC_MSG_CHECKING([if getaddrinfo seems to work])
Darren Tucker314d89e2005-10-17 23:29:23 +10002201 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002202 [AC_LANG_PROGRAM([[
Darren Tucker4398cf52004-04-06 21:39:02 +10002203#include <stdio.h>
2204#include <sys/socket.h>
2205#include <netdb.h>
2206#include <errno.h>
2207#include <netinet/in.h>
2208
2209#define TEST_PORT "2222"
Tim Rice648f8762011-01-26 12:38:57 -08002210 ]], [[
Darren Tucker4398cf52004-04-06 21:39:02 +10002211 int err, sock;
2212 struct addrinfo *gai_ai, *ai, hints;
2213 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
2214
2215 memset(&hints, 0, sizeof(hints));
2216 hints.ai_family = PF_UNSPEC;
2217 hints.ai_socktype = SOCK_STREAM;
2218 hints.ai_flags = AI_PASSIVE;
2219
2220 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
2221 if (err != 0) {
2222 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
2223 exit(1);
2224 }
2225
2226 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
2227 if (ai->ai_family != AF_INET6)
2228 continue;
2229
2230 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
2231 sizeof(ntop), strport, sizeof(strport),
2232 NI_NUMERICHOST|NI_NUMERICSERV);
2233
2234 if (err != 0) {
2235 if (err == EAI_SYSTEM)
2236 perror("getnameinfo EAI_SYSTEM");
2237 else
2238 fprintf(stderr, "getnameinfo failed: %s\n",
2239 gai_strerror(err));
2240 exit(2);
2241 }
2242
2243 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
2244 if (sock < 0)
2245 perror("socket");
2246 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2247 if (errno == EBADF)
2248 exit(3);
2249 }
2250 }
2251 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002252 ]])],
Darren Tucker4398cf52004-04-06 21:39:02 +10002253 [
Tim Rice648f8762011-01-26 12:38:57 -08002254 AC_MSG_RESULT([yes])
Darren Tucker4398cf52004-04-06 21:39:02 +10002255 ],
2256 [
Tim Rice648f8762011-01-26 12:38:57 -08002257 AC_MSG_RESULT([no])
2258 AC_DEFINE([BROKEN_GETADDRINFO])
Darren Tucker314d89e2005-10-17 23:29:23 +10002259 ],
2260 [
Tim Rice648f8762011-01-26 12:38:57 -08002261 AC_MSG_RESULT([cross-compiling, assuming yes])
Darren Tucker4398cf52004-04-06 21:39:02 +10002262 ]
2263 )
2264fi
2265
Tim Rice8bb561b2005-03-17 16:23:19 -08002266if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
2267 test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002268 AC_MSG_CHECKING([if getaddrinfo seems to work])
Darren Tucker314d89e2005-10-17 23:29:23 +10002269 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002270 [AC_LANG_PROGRAM([[
Darren Tucker691d5232005-02-15 21:45:57 +11002271#include <stdio.h>
2272#include <sys/socket.h>
2273#include <netdb.h>
2274#include <errno.h>
2275#include <netinet/in.h>
2276
2277#define TEST_PORT "2222"
Tim Rice648f8762011-01-26 12:38:57 -08002278 ]], [[
Darren Tucker691d5232005-02-15 21:45:57 +11002279 int err, sock;
2280 struct addrinfo *gai_ai, *ai, hints;
2281 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
2282
2283 memset(&hints, 0, sizeof(hints));
2284 hints.ai_family = PF_UNSPEC;
2285 hints.ai_socktype = SOCK_STREAM;
2286 hints.ai_flags = AI_PASSIVE;
2287
2288 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
2289 if (err != 0) {
2290 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
2291 exit(1);
2292 }
2293
2294 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
2295 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2296 continue;
2297
2298 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
2299 sizeof(ntop), strport, sizeof(strport),
2300 NI_NUMERICHOST|NI_NUMERICSERV);
2301
2302 if (ai->ai_family == AF_INET && err != 0) {
2303 perror("getnameinfo");
2304 exit(2);
2305 }
2306 }
2307 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002308 ]])],
Darren Tucker691d5232005-02-15 21:45:57 +11002309 [
Tim Rice648f8762011-01-26 12:38:57 -08002310 AC_MSG_RESULT([yes])
2311 AC_DEFINE([AIX_GETNAMEINFO_HACK], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002312 [Define if you have a getaddrinfo that fails
2313 for the all-zeros IPv6 address])
Darren Tucker691d5232005-02-15 21:45:57 +11002314 ],
2315 [
Tim Rice648f8762011-01-26 12:38:57 -08002316 AC_MSG_RESULT([no])
2317 AC_DEFINE([BROKEN_GETADDRINFO])
Darren Tucker314d89e2005-10-17 23:29:23 +10002318 ],
Darren Tucker8b272ab2006-06-27 11:20:28 +10002319 [
Tim Rice648f8762011-01-26 12:38:57 -08002320 AC_MSG_RESULT([cross-compiling, assuming no])
Darren Tucker691d5232005-02-15 21:45:57 +11002321 ]
2322 )
2323fi
2324
Darren Tuckere50e8c92015-02-21 15:10:33 +11002325if test "x$ac_cv_func_getaddrinfo" = "xyes"; then
2326 AC_CHECK_DECLS(AI_NUMERICSERV, , ,
2327 [#include <sys/types.h>
2328 #include <sys/socket.h>
2329 #include <netdb.h>])
2330fi
2331
Darren Tuckera56f1912004-11-02 20:30:54 +11002332if test "x$check_for_conflicting_getspnam" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002333 AC_MSG_CHECKING([for conflicting getspnam in shadow.h])
2334 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <shadow.h> ]],
2335 [[ exit(0); ]])],
Darren Tuckera56f1912004-11-02 20:30:54 +11002336 [
Tim Rice648f8762011-01-26 12:38:57 -08002337 AC_MSG_RESULT([no])
Darren Tuckera56f1912004-11-02 20:30:54 +11002338 ],
2339 [
Tim Rice648f8762011-01-26 12:38:57 -08002340 AC_MSG_RESULT([yes])
2341 AC_DEFINE([GETSPNAM_CONFLICTING_DEFS], [1],
Darren Tuckera56f1912004-11-02 20:30:54 +11002342 [Conflicting defs for getspnam])
2343 ]
2344 )
2345fi
2346
Darren Tucker20e5e8b2016-08-02 12:16:34 +10002347dnl NetBSD added an strnvis and unfortunately made it incompatible with the
2348dnl existing one in OpenBSD and Linux's libbsd (the former having existed
2349dnl for over ten years). Despite this incompatibility being reported during
2350dnl development (see http://gnats.netbsd.org/44977) they still shipped it.
2351dnl Even more unfortunately FreeBSD and later MacOS picked up this incompatible
2352dnl implementation. Try to detect this mess, and assume the only safe option
2353dnl if we're cross compiling.
2354dnl
2355dnl OpenBSD, 2001: strnvis(char *dst, const char *src, size_t dlen, int flag);
2356dnl NetBSD: 2012, strnvis(char *dst, size_t dlen, const char *src, int flag);
2357if test "x$ac_cv_func_strnvis" = "xyes"; then
2358 AC_MSG_CHECKING([for working strnvis])
2359 AC_RUN_IFELSE(
2360 [AC_LANG_PROGRAM([[
2361#include <signal.h>
2362#include <stdlib.h>
2363#include <string.h>
2364#include <vis.h>
2365static void sighandler(int sig) { _exit(1); }
2366 ]], [[
2367 char dst[16];
2368
2369 signal(SIGSEGV, sighandler);
2370 if (strnvis(dst, "src", 4, 0) && strcmp(dst, "src") == 0)
2371 exit(0);
2372 exit(1)
2373 ]])],
2374 [AC_MSG_RESULT([yes])],
2375 [AC_MSG_RESULT([no])
2376 AC_DEFINE([BROKEN_STRNVIS], [1], [strnvis detected broken])],
2377 [AC_MSG_WARN([cross compiling: assuming broken])
2378 AC_DEFINE([BROKEN_STRNVIS], [1], [strnvis assumed broken])]
2379 )
2380fi
2381
Damien Miller606f8802000-09-16 15:39:56 +11002382AC_FUNC_GETPGRP
2383
Tim Riceaef73712002-05-11 13:17:42 -07002384# Search for OpenSSL
2385saved_CPPFLAGS="$CPPFLAGS"
2386saved_LDFLAGS="$LDFLAGS"
Tim Rice648f8762011-01-26 12:38:57 -08002387AC_ARG_WITH([ssl-dir],
Damien Millera22ba012000-03-02 23:09:20 +11002388 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
2389 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002390 if test "x$openssl" = "xno" ; then
2391 AC_MSG_ERROR([cannot use --with-ssl-dir when OpenSSL disabled])
2392 fi
Ben Lindstrom23e13712000-10-29 22:49:19 +00002393 if test "x$withval" != "xno" ; then
Darren Tuckerc7e38d52005-02-09 22:12:30 +11002394 case "$withval" in
2395 # Relative paths
2396 ./*|../*) withval="`pwd`/$withval"
2397 esac
Tim Riceaef73712002-05-11 13:17:42 -07002398 if test -d "$withval/lib"; then
2399 if test -n "${need_dash_r}"; then
2400 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
2401 else
2402 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
2403 fi
Darren Tucker9f8703b2010-04-23 11:12:06 +10002404 elif test -d "$withval/lib64"; then
2405 if test -n "${need_dash_r}"; then
2406 LDFLAGS="-L${withval}/lib64 -R${withval}/lib64 ${LDFLAGS}"
2407 else
2408 LDFLAGS="-L${withval}/lib64 ${LDFLAGS}"
2409 fi
Tim Riceaef73712002-05-11 13:17:42 -07002410 else
2411 if test -n "${need_dash_r}"; then
2412 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
2413 else
2414 LDFLAGS="-L${withval} ${LDFLAGS}"
2415 fi
2416 fi
2417 if test -d "$withval/include"; then
2418 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
2419 else
2420 CPPFLAGS="-I${withval} ${CPPFLAGS}"
2421 fi
Damien Millera22ba012000-03-02 23:09:20 +11002422 fi
2423 ]
2424)
Damien Millerb9c56672014-05-15 14:43:37 +10002425
Tim Rice648f8762011-01-26 12:38:57 -08002426AC_ARG_WITH([openssl-header-check],
Damien Miller9975e482007-03-05 11:51:27 +11002427 [ --without-openssl-header-check Disable OpenSSL version consistency check],
Damien Millerec932372002-01-22 22:16:03 +11002428 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002429 if test "x$withval" = "xno" ; then
2430 openssl_check_nonfatal=1
Damien Miller9975e482007-03-05 11:51:27 +11002431 fi
Damien Millerec932372002-01-22 22:16:03 +11002432 ]
2433)
2434
Damien Miller72ef7c12015-01-15 02:21:31 +11002435openssl_engine=no
Tim Rice648f8762011-01-26 12:38:57 -08002436AC_ARG_WITH([ssl-engine],
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002437 [ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
Damien Miller72ef7c12015-01-15 02:21:31 +11002438 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002439 if test "x$withval" != "xno" ; then
Darren Tuckerb5fa0cd2015-12-15 15:10:32 +11002440 if test "x$openssl" = "xno" ; then
2441 AC_MSG_ERROR([cannot use --with-ssl-engine when OpenSSL disabled])
2442 fi
Damien Miller72ef7c12015-01-15 02:21:31 +11002443 openssl_engine=yes
2444 fi
2445 ]
2446)
2447
2448if test "x$openssl" = "xyes" ; then
2449 LIBS="-lcrypto $LIBS"
2450 AC_TRY_LINK_FUNC([RAND_add], [AC_DEFINE([HAVE_OPENSSL], [1],
2451 [Define if your ssl headers are included
2452 with #include <openssl/header.h>])],
2453 [
2454 dnl Check default openssl install dir
2455 if test -n "${need_dash_r}"; then
2456 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
2457 else
2458 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
2459 fi
2460 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
2461 AC_CHECK_HEADER([openssl/opensslv.h], ,
2462 [AC_MSG_ERROR([*** OpenSSL headers missing - please install first or check config.log ***])])
2463 AC_TRY_LINK_FUNC([RAND_add], [AC_DEFINE([HAVE_OPENSSL])],
2464 [
2465 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
2466 ]
2467 )
2468 ]
2469 )
2470
2471 # Determine OpenSSL header version
2472 AC_MSG_CHECKING([OpenSSL header version])
2473 AC_RUN_IFELSE(
2474 [AC_LANG_PROGRAM([[
Darren Tucker15605962015-11-10 11:14:47 +11002475 #include <stdlib.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002476 #include <stdio.h>
2477 #include <string.h>
2478 #include <openssl/opensslv.h>
2479 #define DATA "conftest.sslincver"
2480 ]], [[
2481 FILE *fd;
2482 int rc;
2483
2484 fd = fopen(DATA,"w");
2485 if(fd == NULL)
2486 exit(1);
2487
Darren Tuckerb3413532016-04-04 11:09:21 +10002488 if ((rc = fprintf(fd, "%08lx (%s)\n",
2489 (unsigned long)OPENSSL_VERSION_NUMBER,
2490 OPENSSL_VERSION_TEXT)) < 0)
Damien Miller72ef7c12015-01-15 02:21:31 +11002491 exit(1);
2492
2493 exit(0);
2494 ]])],
2495 [
2496 ssl_header_ver=`cat conftest.sslincver`
2497 AC_MSG_RESULT([$ssl_header_ver])
2498 ],
2499 [
2500 AC_MSG_RESULT([not found])
2501 AC_MSG_ERROR([OpenSSL version header not found.])
2502 ],
2503 [
2504 AC_MSG_WARN([cross compiling: not checking])
2505 ]
2506 )
2507
2508 # Determine OpenSSL library version
2509 AC_MSG_CHECKING([OpenSSL library version])
2510 AC_RUN_IFELSE(
2511 [AC_LANG_PROGRAM([[
2512 #include <stdio.h>
2513 #include <string.h>
2514 #include <openssl/opensslv.h>
2515 #include <openssl/crypto.h>
2516 #define DATA "conftest.ssllibver"
2517 ]], [[
2518 FILE *fd;
2519 int rc;
2520
2521 fd = fopen(DATA,"w");
2522 if(fd == NULL)
2523 exit(1);
2524
Darren Tucker815bcac2016-04-04 11:07:59 +10002525 if ((rc = fprintf(fd, "%08lx (%s)\n", (unsigned long)SSLeay(),
2526 SSLeay_version(SSLEAY_VERSION))) < 0)
Damien Miller72ef7c12015-01-15 02:21:31 +11002527 exit(1);
2528
2529 exit(0);
2530 ]])],
2531 [
2532 ssl_library_ver=`cat conftest.ssllibver`
2533 # Check version is supported.
2534 case "$ssl_library_ver" in
Damien Miller2429cf72017-03-14 18:01:52 +11002535 10000*|0*)
2536 AC_MSG_ERROR([OpenSSL >= 1.0.1 required (have "$ssl_library_ver")])
Damien Miller72ef7c12015-01-15 02:21:31 +11002537 ;;
2538 *) ;;
2539 esac
2540 AC_MSG_RESULT([$ssl_library_ver])
2541 ],
2542 [
2543 AC_MSG_RESULT([not found])
2544 AC_MSG_ERROR([OpenSSL library not found.])
2545 ],
2546 [
2547 AC_MSG_WARN([cross compiling: not checking])
2548 ]
2549 )
2550
2551 # Sanity check OpenSSL headers
2552 AC_MSG_CHECKING([whether OpenSSL's headers match the library])
2553 AC_RUN_IFELSE(
2554 [AC_LANG_PROGRAM([[
2555 #include <string.h>
2556 #include <openssl/opensslv.h>
Darren Tuckerc1d7e542015-12-15 14:27:09 +11002557 #include <openssl/crypto.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002558 ]], [[
2559 exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1);
2560 ]])],
2561 [
2562 AC_MSG_RESULT([yes])
2563 ],
2564 [
2565 AC_MSG_RESULT([no])
2566 if test "x$openssl_check_nonfatal" = "x"; then
2567 AC_MSG_ERROR([Your OpenSSL headers do not match your
2568 library. Check config.log for details.
2569 If you are sure your installation is consistent, you can disable the check
2570 by running "./configure --without-openssl-header-check".
2571 Also see contrib/findssl.sh for help identifying header/library mismatches.
2572 ])
2573 else
2574 AC_MSG_WARN([Your OpenSSL headers do not match your
2575 library. Check config.log for details.
2576 Also see contrib/findssl.sh for help identifying header/library mismatches.])
2577 fi
2578 ],
2579 [
2580 AC_MSG_WARN([cross compiling: not checking])
2581 ]
2582 )
2583
2584 AC_MSG_CHECKING([if programs using OpenSSL functions will link])
2585 AC_LINK_IFELSE(
2586 [AC_LANG_PROGRAM([[ #include <openssl/evp.h> ]],
2587 [[ SSLeay_add_all_algorithms(); ]])],
2588 [
2589 AC_MSG_RESULT([yes])
2590 ],
2591 [
2592 AC_MSG_RESULT([no])
2593 saved_LIBS="$LIBS"
2594 LIBS="$LIBS -ldl"
2595 AC_MSG_CHECKING([if programs using OpenSSL need -ldl])
2596 AC_LINK_IFELSE(
2597 [AC_LANG_PROGRAM([[ #include <openssl/evp.h> ]],
2598 [[ SSLeay_add_all_algorithms(); ]])],
2599 [
2600 AC_MSG_RESULT([yes])
2601 ],
2602 [
2603 AC_MSG_RESULT([no])
2604 LIBS="$saved_LIBS"
2605 ]
2606 )
2607 ]
2608 )
2609
2610 AC_CHECK_FUNCS([ \
2611 BN_is_prime_ex \
2612 DSA_generate_parameters_ex \
2613 EVP_DigestInit_ex \
2614 EVP_DigestFinal_ex \
2615 EVP_MD_CTX_init \
2616 EVP_MD_CTX_cleanup \
2617 EVP_MD_CTX_copy_ex \
2618 HMAC_CTX_init \
2619 RSA_generate_key_ex \
2620 RSA_get_default_method \
2621 ])
2622
2623 if test "x$openssl_engine" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08002624 AC_MSG_CHECKING([for OpenSSL ENGINE support])
2625 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller72ef7c12015-01-15 02:21:31 +11002626 #include <openssl/engine.h>
Tim Rice648f8762011-01-26 12:38:57 -08002627 ]], [[
Damien Miller72ef7c12015-01-15 02:21:31 +11002628 ENGINE_load_builtin_engines();
2629 ENGINE_register_all_complete();
Tim Rice648f8762011-01-26 12:38:57 -08002630 ]])],
2631 [ AC_MSG_RESULT([yes])
2632 AC_DEFINE([USE_OPENSSL_ENGINE], [1],
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002633 [Enable OpenSSL engine support])
Tim Rice648f8762011-01-26 12:38:57 -08002634 ], [ AC_MSG_ERROR([OpenSSL ENGINE support not found])
2635 ])
Damien Miller72ef7c12015-01-15 02:21:31 +11002636 fi
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002637
Damien Miller72ef7c12015-01-15 02:21:31 +11002638 # Check for OpenSSL without EVP_aes_{192,256}_cbc
2639 AC_MSG_CHECKING([whether OpenSSL has crippled AES support])
2640 AC_LINK_IFELSE(
Darren Tucker37bcef52013-11-09 18:39:25 +11002641 [AC_LANG_PROGRAM([[
Damien Miller72ef7c12015-01-15 02:21:31 +11002642 #include <string.h>
2643 #include <openssl/evp.h>
2644 ]], [[
2645 exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);
2646 ]])],
2647 [
2648 AC_MSG_RESULT([no])
2649 ],
2650 [
2651 AC_MSG_RESULT([yes])
2652 AC_DEFINE([OPENSSL_LOBOTOMISED_AES], [1],
2653 [libcrypto is missing AES 192 and 256 bit functions])
2654 ]
2655 )
2656
2657 # Check for OpenSSL with EVP_aes_*ctr
2658 AC_MSG_CHECKING([whether OpenSSL has AES CTR via EVP])
2659 AC_LINK_IFELSE(
2660 [AC_LANG_PROGRAM([[
2661 #include <string.h>
2662 #include <openssl/evp.h>
2663 ]], [[
2664 exit(EVP_aes_128_ctr() == NULL ||
2665 EVP_aes_192_cbc() == NULL ||
2666 EVP_aes_256_cbc() == NULL);
2667 ]])],
2668 [
2669 AC_MSG_RESULT([yes])
2670 AC_DEFINE([OPENSSL_HAVE_EVPCTR], [1],
2671 [libcrypto has EVP AES CTR])
2672 ],
2673 [
2674 AC_MSG_RESULT([no])
2675 ]
2676 )
2677
2678 # Check for OpenSSL with EVP_aes_*gcm
2679 AC_MSG_CHECKING([whether OpenSSL has AES GCM via EVP])
2680 AC_LINK_IFELSE(
2681 [AC_LANG_PROGRAM([[
2682 #include <string.h>
2683 #include <openssl/evp.h>
2684 ]], [[
2685 exit(EVP_aes_128_gcm() == NULL ||
2686 EVP_aes_256_gcm() == NULL ||
2687 EVP_CTRL_GCM_SET_IV_FIXED == 0 ||
2688 EVP_CTRL_GCM_IV_GEN == 0 ||
2689 EVP_CTRL_GCM_SET_TAG == 0 ||
2690 EVP_CTRL_GCM_GET_TAG == 0 ||
2691 EVP_CIPHER_CTX_ctrl(NULL, 0, 0, NULL) == 0);
2692 ]])],
2693 [
2694 AC_MSG_RESULT([yes])
2695 AC_DEFINE([OPENSSL_HAVE_EVPGCM], [1],
2696 [libcrypto has EVP AES GCM])
2697 ],
2698 [
2699 AC_MSG_RESULT([no])
2700 unsupported_algorithms="$unsupported_cipers \
Damien Miller679ce882016-07-15 13:44:38 +10002701 aes128-gcm@openssh.com \
2702 aes256-gcm@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002703 ]
2704 )
2705
2706 AC_SEARCH_LIBS([EVP_CIPHER_CTX_ctrl], [crypto],
2707 [AC_DEFINE([HAVE_EVP_CIPHER_CTX_CTRL], [1],
2708 [Define if libcrypto has EVP_CIPHER_CTX_ctrl])])
2709
2710 AC_MSG_CHECKING([if EVP_DigestUpdate returns an int])
2711 AC_LINK_IFELSE(
2712 [AC_LANG_PROGRAM([[
2713 #include <string.h>
2714 #include <openssl/evp.h>
2715 ]], [[
2716 if(EVP_DigestUpdate(NULL, NULL,0))
2717 exit(0);
2718 ]])],
2719 [
2720 AC_MSG_RESULT([yes])
2721 ],
2722 [
2723 AC_MSG_RESULT([no])
2724 AC_DEFINE([OPENSSL_EVP_DIGESTUPDATE_VOID], [1],
2725 [Define if EVP_DigestUpdate returns void])
2726 ]
2727 )
2728
2729 # Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
2730 # because the system crypt() is more featureful.
2731 if test "x$check_for_libcrypt_before" = "x1"; then
2732 AC_CHECK_LIB([crypt], [crypt])
2733 fi
2734
2735 # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
2736 # version in OpenSSL.
2737 if test "x$check_for_libcrypt_later" = "x1"; then
2738 AC_CHECK_LIB([crypt], [crypt], [LIBS="$LIBS -lcrypt"])
2739 fi
Damien Miller00797e82015-03-04 05:02:45 +11002740 AC_CHECK_FUNCS([crypt DES_crypt])
Damien Miller72ef7c12015-01-15 02:21:31 +11002741
2742 # Search for SHA256 support in libc and/or OpenSSL
2743 AC_CHECK_FUNCS([SHA256_Update EVP_sha256], ,
2744 [unsupported_algorithms="$unsupported_algorithms \
Damien Miller679ce882016-07-15 13:44:38 +10002745 hmac-sha2-256 \
2746 hmac-sha2-512 \
Damien Miller72ef7c12015-01-15 02:21:31 +11002747 diffie-hellman-group-exchange-sha256 \
Damien Miller679ce882016-07-15 13:44:38 +10002748 hmac-sha2-256-etm@openssh.com \
2749 hmac-sha2-512-etm@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002750 ]
2751 )
2752 # Search for RIPE-MD support in OpenSSL
2753 AC_CHECK_FUNCS([EVP_ripemd160], ,
2754 [unsupported_algorithms="$unsupported_algorithms \
Damien Miller679ce882016-07-15 13:44:38 +10002755 hmac-ripemd160 \
2756 hmac-ripemd160@openssh.com \
Damien Miller72ef7c12015-01-15 02:21:31 +11002757 hmac-ripemd160-etm@openssh.com"
2758 ]
2759 )
2760
2761 # Check complete ECC support in OpenSSL
2762 AC_MSG_CHECKING([whether OpenSSL has NID_X9_62_prime256v1])
2763 AC_LINK_IFELSE(
2764 [AC_LANG_PROGRAM([[
2765 #include <openssl/ec.h>
2766 #include <openssl/ecdh.h>
2767 #include <openssl/ecdsa.h>
2768 #include <openssl/evp.h>
2769 #include <openssl/objects.h>
2770 #include <openssl/opensslv.h>
2771 #if OPENSSL_VERSION_NUMBER < 0x0090807f /* 0.9.8g */
2772 # error "OpenSSL < 0.9.8g has unreliable ECC code"
2773 #endif
2774 ]], [[
2775 EC_KEY *e = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
2776 const EVP_MD *m = EVP_sha256(); /* We need this too */
Darren Tucker37bcef52013-11-09 18:39:25 +11002777 ]])],
2778 [ AC_MSG_RESULT([yes])
Damien Miller72ef7c12015-01-15 02:21:31 +11002779 enable_nistp256=1 ],
2780 [ AC_MSG_RESULT([no]) ]
2781 )
Darren Tucker37bcef52013-11-09 18:39:25 +11002782
Damien Miller72ef7c12015-01-15 02:21:31 +11002783 AC_MSG_CHECKING([whether OpenSSL has NID_secp384r1])
2784 AC_LINK_IFELSE(
2785 [AC_LANG_PROGRAM([[
2786 #include <openssl/ec.h>
2787 #include <openssl/ecdh.h>
2788 #include <openssl/ecdsa.h>
2789 #include <openssl/evp.h>
2790 #include <openssl/objects.h>
2791 #include <openssl/opensslv.h>
2792 #if OPENSSL_VERSION_NUMBER < 0x0090807f /* 0.9.8g */
2793 # error "OpenSSL < 0.9.8g has unreliable ECC code"
2794 #endif
2795 ]], [[
2796 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp384r1);
2797 const EVP_MD *m = EVP_sha384(); /* We need this too */
2798 ]])],
2799 [ AC_MSG_RESULT([yes])
2800 enable_nistp384=1 ],
2801 [ AC_MSG_RESULT([no]) ]
2802 )
Darren Tucker37bcef52013-11-09 18:39:25 +11002803
Damien Miller72ef7c12015-01-15 02:21:31 +11002804 AC_MSG_CHECKING([whether OpenSSL has NID_secp521r1])
2805 AC_LINK_IFELSE(
2806 [AC_LANG_PROGRAM([[
2807 #include <openssl/ec.h>
2808 #include <openssl/ecdh.h>
2809 #include <openssl/ecdsa.h>
2810 #include <openssl/evp.h>
2811 #include <openssl/objects.h>
2812 #include <openssl/opensslv.h>
2813 #if OPENSSL_VERSION_NUMBER < 0x0090807f /* 0.9.8g */
2814 # error "OpenSSL < 0.9.8g has unreliable ECC code"
2815 #endif
2816 ]], [[
2817 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1);
2818 const EVP_MD *m = EVP_sha512(); /* We need this too */
2819 ]])],
2820 [ AC_MSG_RESULT([yes])
2821 AC_MSG_CHECKING([if OpenSSL's NID_secp521r1 is functional])
2822 AC_RUN_IFELSE(
2823 [AC_LANG_PROGRAM([[
2824 #include <openssl/ec.h>
2825 #include <openssl/ecdh.h>
2826 #include <openssl/ecdsa.h>
2827 #include <openssl/evp.h>
2828 #include <openssl/objects.h>
2829 #include <openssl/opensslv.h>
2830 ]],[[
2831 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1);
2832 const EVP_MD *m = EVP_sha512(); /* We need this too */
2833 exit(e == NULL || m == NULL);
2834 ]])],
2835 [ AC_MSG_RESULT([yes])
2836 enable_nistp521=1 ],
2837 [ AC_MSG_RESULT([no]) ],
2838 [ AC_MSG_WARN([cross-compiling: assuming yes])
2839 enable_nistp521=1 ]
2840 )],
2841 AC_MSG_RESULT([no])
2842 )
Darren Tucker37bcef52013-11-09 18:39:25 +11002843
Damien Miller72ef7c12015-01-15 02:21:31 +11002844 COMMENT_OUT_ECC="#no ecc#"
2845 TEST_SSH_ECC=no
2846
2847 if test x$enable_nistp256 = x1 || test x$enable_nistp384 = x1 || \
2848 test x$enable_nistp521 = x1; then
2849 AC_DEFINE(OPENSSL_HAS_ECC, [1], [OpenSSL has ECC])
2850 fi
2851 if test x$enable_nistp256 = x1; then
2852 AC_DEFINE([OPENSSL_HAS_NISTP256], [1],
2853 [libcrypto has NID_X9_62_prime256v1])
2854 TEST_SSH_ECC=yes
2855 COMMENT_OUT_ECC=""
2856 else
Damien Miller679ce882016-07-15 13:44:38 +10002857 unsupported_algorithms="$unsupported_algorithms \
2858 ecdsa-sha2-nistp256 \
2859 ecdh-sha2-nistp256 \
2860 ecdsa-sha2-nistp256-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002861 fi
2862 if test x$enable_nistp384 = x1; then
2863 AC_DEFINE([OPENSSL_HAS_NISTP384], [1], [libcrypto has NID_secp384r1])
2864 TEST_SSH_ECC=yes
2865 COMMENT_OUT_ECC=""
2866 else
Damien Miller679ce882016-07-15 13:44:38 +10002867 unsupported_algorithms="$unsupported_algorithms \
2868 ecdsa-sha2-nistp384 \
2869 ecdh-sha2-nistp384 \
2870 ecdsa-sha2-nistp384-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002871 fi
2872 if test x$enable_nistp521 = x1; then
2873 AC_DEFINE([OPENSSL_HAS_NISTP521], [1], [libcrypto has NID_secp521r1])
2874 TEST_SSH_ECC=yes
2875 COMMENT_OUT_ECC=""
2876 else
Damien Miller679ce882016-07-15 13:44:38 +10002877 unsupported_algorithms="$unsupported_algorithms \
2878 ecdh-sha2-nistp521 \
2879 ecdsa-sha2-nistp521 \
2880 ecdsa-sha2-nistp521-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002881 fi
2882
2883 AC_SUBST([TEST_SSH_ECC])
2884 AC_SUBST([COMMENT_OUT_ECC])
2885else
2886 AC_CHECK_LIB([crypt], [crypt], [LIBS="$LIBS -lcrypt"])
Damien Miller00797e82015-03-04 05:02:45 +11002887 AC_CHECK_FUNCS([crypt])
Damien Miller72ef7c12015-01-15 02:21:31 +11002888fi
Damien Miller6af914a2010-09-10 11:39:26 +10002889
Damien Miller00f9cd22014-07-15 10:41:38 +10002890AC_CHECK_FUNCS([ \
2891 arc4random \
2892 arc4random_buf \
2893 arc4random_stir \
2894 arc4random_uniform \
2895])
2896
Tim Rice99203ec2007-03-26 09:35:28 -07002897saved_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08002898AC_CHECK_LIB([iaf], [ia_openinfo], [
Tim Rice99203ec2007-03-26 09:35:28 -07002899 LIBS="$LIBS -liaf"
Tim Rice648f8762011-01-26 12:38:57 -08002900 AC_CHECK_FUNCS([set_id], [SSHDLIBS="$SSHDLIBS -liaf"
2901 AC_DEFINE([HAVE_LIBIAF], [1],
Tim Ricee1d93702016-05-31 11:13:22 -07002902 [Define if system has libiaf that supports set_id])
Tim Rice0eeaf122007-09-10 16:24:17 -07002903 ])
Tim Rice99203ec2007-03-26 09:35:28 -07002904])
2905LIBS="$saved_LIBS"
Damien Miller6c21c512002-01-22 21:57:53 +11002906
2907### Configure cryptographic random number support
2908
2909# Check wheter OpenSSL seeds itself
Damien Miller72ef7c12015-01-15 02:21:31 +11002910if test "x$openssl" = "xyes" ; then
2911 AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
2912 AC_RUN_IFELSE(
2913 [AC_LANG_PROGRAM([[
2914 #include <string.h>
2915 #include <openssl/rand.h>
2916 ]], [[
2917 exit(RAND_status() == 1 ? 0 : 1);
2918 ]])],
2919 [
2920 OPENSSL_SEEDS_ITSELF=yes
2921 AC_MSG_RESULT([yes])
2922 ],
2923 [
2924 AC_MSG_RESULT([no])
2925 ],
2926 [
2927 AC_MSG_WARN([cross compiling: assuming yes])
2928 # This is safe, since we will fatal() at runtime if
2929 # OpenSSL is not seeded correctly.
2930 OPENSSL_SEEDS_ITSELF=yes
2931 ]
2932 )
2933fi
Damien Miller6c21c512002-01-22 21:57:53 +11002934
Damien Millerf22019b2011-05-05 13:48:37 +10002935# PRNGD TCP socket
2936AC_ARG_WITH([prngd-port],
2937 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
2938 [
2939 case "$withval" in
2940 no)
2941 withval=""
2942 ;;
2943 [[0-9]]*)
2944 ;;
2945 *)
2946 AC_MSG_ERROR([You must specify a numeric port number for --with-prngd-port])
2947 ;;
2948 esac
2949 if test ! -z "$withval" ; then
2950 PRNGD_PORT="$withval"
2951 AC_DEFINE_UNQUOTED([PRNGD_PORT], [$PRNGD_PORT],
2952 [Port number of PRNGD/EGD random number socket])
2953 fi
2954 ]
2955)
2956
2957# PRNGD Unix domain socket
2958AC_ARG_WITH([prngd-socket],
2959 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
2960 [
2961 case "$withval" in
2962 yes)
2963 withval="/var/run/egd-pool"
2964 ;;
2965 no)
2966 withval=""
2967 ;;
2968 /*)
2969 ;;
2970 *)
2971 AC_MSG_ERROR([You must specify an absolute path to the entropy socket])
2972 ;;
2973 esac
2974
2975 if test ! -z "$withval" ; then
2976 if test ! -z "$PRNGD_PORT" ; then
2977 AC_MSG_ERROR([You may not specify both a PRNGD/EGD port and socket])
2978 fi
2979 if test ! -r "$withval" ; then
2980 AC_MSG_WARN([Entropy socket is not readable])
2981 fi
2982 PRNGD_SOCKET="$withval"
2983 AC_DEFINE_UNQUOTED([PRNGD_SOCKET], ["$PRNGD_SOCKET"],
2984 [Location of PRNGD/EGD random number socket])
2985 fi
2986 ],
2987 [
2988 # Check for existing socket only if we don't have a random device already
2989 if test "x$OPENSSL_SEEDS_ITSELF" != "xyes" ; then
2990 AC_MSG_CHECKING([for PRNGD/EGD socket])
2991 # Insert other locations here
2992 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
2993 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
2994 PRNGD_SOCKET="$sock"
2995 AC_DEFINE_UNQUOTED([PRNGD_SOCKET], ["$PRNGD_SOCKET"])
2996 break;
2997 fi
2998 done
2999 if test ! -z "$PRNGD_SOCKET" ; then
3000 AC_MSG_RESULT([$PRNGD_SOCKET])
3001 else
3002 AC_MSG_RESULT([not found])
3003 fi
3004 fi
3005 ]
3006)
3007
3008# Which randomness source do we use?
3009if test ! -z "$PRNGD_PORT" ; then
3010 RAND_MSG="PRNGd port $PRNGD_PORT"
3011elif test ! -z "$PRNGD_SOCKET" ; then
3012 RAND_MSG="PRNGd socket $PRNGD_SOCKET"
3013elif test ! -z "$OPENSSL_SEEDS_ITSELF" ; then
3014 AC_DEFINE([OPENSSL_PRNG_ONLY], [1],
Damien Miller72ef7c12015-01-15 02:21:31 +11003015 [Define if you want the OpenSSL internally seeded PRNG only])
Damien Millerf22019b2011-05-05 13:48:37 +10003016 RAND_MSG="OpenSSL internal ONLY"
Damien Miller72ef7c12015-01-15 02:21:31 +11003017elif test "x$openssl" = "xno" ; then
3018 AC_MSG_WARN([OpenSSH will use /dev/urandom as a source of random numbers. It will fail if this device is not supported or accessible])
Damien Millerf22019b2011-05-05 13:48:37 +10003019else
3020 AC_MSG_ERROR([OpenSSH has no source of random numbers. Please configure OpenSSL with an entropy source or re-run configure using one of the --with-prngd-port or --with-prngd-socket options])
3021fi
3022
Darren Tucker3e6bde42006-08-20 20:03:50 +10003023# Check for PAM libs
3024PAM_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08003025AC_ARG_WITH([pam],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003026 [ --with-pam Enable PAM support ],
3027 [
3028 if test "x$withval" != "xno" ; then
3029 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
3030 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
3031 AC_MSG_ERROR([PAM headers not found])
3032 fi
3033
3034 saved_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08003035 AC_CHECK_LIB([dl], [dlopen], , )
3036 AC_CHECK_LIB([pam], [pam_set_item], , [AC_MSG_ERROR([*** libpam missing])])
3037 AC_CHECK_FUNCS([pam_getenvlist])
3038 AC_CHECK_FUNCS([pam_putenv])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003039 LIBS="$saved_LIBS"
3040
3041 PAM_MSG="yes"
3042
Darren Tucker20e9f972007-03-25 18:26:01 +10003043 SSHDLIBS="$SSHDLIBS -lpam"
Tim Rice648f8762011-01-26 12:38:57 -08003044 AC_DEFINE([USE_PAM], [1],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003045 [Define if you want to enable PAM support])
Darren Tucker639bbe82006-08-20 20:17:53 +10003046
Darren Tucker3e6bde42006-08-20 20:03:50 +10003047 if test $ac_cv_lib_dl_dlopen = yes; then
Darren Tucker639bbe82006-08-20 20:17:53 +10003048 case "$LIBS" in
3049 *-ldl*)
3050 # libdl already in LIBS
3051 ;;
3052 *)
Darren Tucker20e9f972007-03-25 18:26:01 +10003053 SSHDLIBS="$SSHDLIBS -ldl"
Darren Tucker639bbe82006-08-20 20:17:53 +10003054 ;;
3055 esac
Darren Tucker3e6bde42006-08-20 20:03:50 +10003056 fi
Darren Tucker3e6bde42006-08-20 20:03:50 +10003057 fi
3058 ]
3059)
3060
Damien Miller8bd81e12016-08-16 13:30:56 +10003061AC_ARG_WITH([pam-service],
3062 [ --with-pam-service=name Specify PAM service name ],
3063 [
3064 if test "x$withval" != "xno" && \
3065 test "x$withval" != "xyes" ; then
3066 AC_DEFINE_UNQUOTED([SSHD_PAM_SERVICE],
3067 ["$withval"], [sshd PAM service name])
3068 fi
3069 ]
3070)
3071
Darren Tucker3e6bde42006-08-20 20:03:50 +10003072# Check for older PAM
3073if test "x$PAM_MSG" = "xyes" ; then
3074 # Check PAM strerror arguments (old PAM)
3075 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
Tim Rice648f8762011-01-26 12:38:57 -08003076 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker3e6bde42006-08-20 20:03:50 +10003077#include <stdlib.h>
3078#if defined(HAVE_SECURITY_PAM_APPL_H)
3079#include <security/pam_appl.h>
3080#elif defined (HAVE_PAM_PAM_APPL_H)
3081#include <pam/pam_appl.h>
3082#endif
Tim Rice648f8762011-01-26 12:38:57 -08003083 ]], [[
3084(void)pam_strerror((pam_handle_t *)NULL, -1);
3085 ]])], [AC_MSG_RESULT([no])], [
3086 AC_DEFINE([HAVE_OLD_PAM], [1],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003087 [Define if you have an old version of PAM
3088 which takes only one argument to pam_strerror])
Tim Rice648f8762011-01-26 12:38:57 -08003089 AC_MSG_RESULT([yes])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003090 PAM_MSG="yes (old library)"
Damien Miller72ef7c12015-01-15 02:21:31 +11003091
Tim Rice648f8762011-01-26 12:38:57 -08003092 ])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003093fi
Damien Miller6c21c512002-01-22 21:57:53 +11003094
Damien Miller6482d902014-05-27 14:34:42 +10003095case "$host" in
3096*-*-cygwin*)
3097 SSH_PRIVSEP_USER=CYGWIN_SSH_PRIVSEP_USER
3098 ;;
3099*)
3100 SSH_PRIVSEP_USER=sshd
3101 ;;
3102esac
Tim Rice648f8762011-01-26 12:38:57 -08003103AC_ARG_WITH([privsep-user],
Kevin Stevesc81e1292002-05-13 03:51:40 +00003104 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00003105 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003106 if test -n "$withval" && test "x$withval" != "xno" && \
3107 test "x${withval}" != "xyes"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10003108 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00003109 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08003110 ]
Kevin Steves7ff91122002-04-07 19:22:54 +00003111)
Damien Miller6482d902014-05-27 14:34:42 +10003112if test "x$SSH_PRIVSEP_USER" = "xCYGWIN_SSH_PRIVSEP_USER" ; then
3113 AC_DEFINE_UNQUOTED([SSH_PRIVSEP_USER], [CYGWIN_SSH_PRIVSEP_USER],
3114 [Cygwin function to fetch non-privileged user for privilege separation])
3115else
3116 AC_DEFINE_UNQUOTED([SSH_PRIVSEP_USER], ["$SSH_PRIVSEP_USER"],
3117 [non-privileged user for privilege separation])
3118fi
Tim Rice648f8762011-01-26 12:38:57 -08003119AC_SUBST([SSH_PRIVSEP_USER])
Kevin Steves7ff91122002-04-07 19:22:54 +00003120
Damien Miller91f40d82013-02-22 11:37:00 +11003121if test "x$have_linux_no_new_privs" = "x1" ; then
3122AC_CHECK_DECL([SECCOMP_MODE_FILTER], [have_seccomp_filter=1], , [
3123 #include <sys/types.h>
3124 #include <linux/seccomp.h>
3125])
3126fi
3127if test "x$have_seccomp_filter" = "x1" ; then
3128AC_MSG_CHECKING([kernel for seccomp_filter support])
3129AC_LINK_IFELSE([AC_LANG_PROGRAM([[
3130 #include <errno.h>
3131 #include <elf.h>
3132 #include <linux/audit.h>
3133 #include <linux/seccomp.h>
3134 #include <stdlib.h>
3135 #include <sys/prctl.h>
3136 ]],
3137 [[ int i = $seccomp_audit_arch;
3138 errno = 0;
3139 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, NULL, 0, 0);
3140 exit(errno == EFAULT ? 0 : 1); ]])],
3141 [ AC_MSG_RESULT([yes]) ], [
3142 AC_MSG_RESULT([no])
3143 # Disable seccomp filter as a target
3144 have_seccomp_filter=0
3145 ]
3146)
3147fi
3148
Damien Miller69ff1df2011-06-23 08:30:03 +10003149# Decide which sandbox style to use
3150sandbox_arg=""
3151AC_ARG_WITH([sandbox],
deraadt@openbsd.org2539dce2015-10-09 01:37:08 +00003152 [ --with-sandbox=style Specify privilege separation sandbox (no, capsicum, darwin, rlimit, seccomp_filter, systrace, pledge)],
Damien Miller69ff1df2011-06-23 08:30:03 +10003153 [
3154 if test "x$withval" = "xyes" ; then
3155 sandbox_arg=""
3156 else
3157 sandbox_arg="$withval"
3158 fi
3159 ]
3160)
Darren Tucker60395f92012-07-03 14:31:18 +10003161
3162# Some platforms (seems to be the ones that have a kernel poll(2)-type
3163# function with which they implement select(2)) use an extra file descriptor
3164# when calling select(2), which means we can't use the rlimit sandbox.
3165AC_MSG_CHECKING([if select works with descriptor rlimit])
3166AC_RUN_IFELSE(
3167 [AC_LANG_PROGRAM([[
3168#include <sys/types.h>
3169#ifdef HAVE_SYS_TIME_H
3170# include <sys/time.h>
3171#endif
3172#include <sys/resource.h>
3173#ifdef HAVE_SYS_SELECT_H
3174# include <sys/select.h>
3175#endif
3176#include <errno.h>
3177#include <fcntl.h>
3178#include <stdlib.h>
3179 ]],[[
3180 struct rlimit rl_zero;
3181 int fd, r;
3182 fd_set fds;
Damien Millere4f43472013-03-08 12:14:22 +11003183 struct timeval tv;
Darren Tucker60395f92012-07-03 14:31:18 +10003184
3185 fd = open("/dev/null", O_RDONLY);
3186 FD_ZERO(&fds);
3187 FD_SET(fd, &fds);
3188 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3189 setrlimit(RLIMIT_FSIZE, &rl_zero);
3190 setrlimit(RLIMIT_NOFILE, &rl_zero);
Damien Millere4f43472013-03-08 12:14:22 +11003191 tv.tv_sec = 1;
3192 tv.tv_usec = 0;
3193 r = select(fd+1, &fds, NULL, NULL, &tv);
Darren Tucker60395f92012-07-03 14:31:18 +10003194 exit (r == -1 ? 1 : 0);
3195 ]])],
3196 [AC_MSG_RESULT([yes])
3197 select_works_with_rlimit=yes],
3198 [AC_MSG_RESULT([no])
3199 select_works_with_rlimit=no],
3200 [AC_MSG_WARN([cross compiling: assuming yes])]
3201)
3202
Darren Tuckerff008de2013-03-06 17:48:48 +11003203AC_MSG_CHECKING([if setrlimit(RLIMIT_NOFILE,{0,0}) works])
3204AC_RUN_IFELSE(
3205 [AC_LANG_PROGRAM([[
3206#include <sys/types.h>
3207#ifdef HAVE_SYS_TIME_H
3208# include <sys/time.h>
3209#endif
3210#include <sys/resource.h>
3211#include <errno.h>
3212#include <stdlib.h>
3213 ]],[[
3214 struct rlimit rl_zero;
3215 int fd, r;
3216 fd_set fds;
3217
3218 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3219 r = setrlimit(RLIMIT_NOFILE, &rl_zero);
3220 exit (r == -1 ? 1 : 0);
3221 ]])],
3222 [AC_MSG_RESULT([yes])
3223 rlimit_nofile_zero_works=yes],
3224 [AC_MSG_RESULT([no])
3225 rlimit_nofile_zero_works=no],
3226 [AC_MSG_WARN([cross compiling: assuming yes])]
3227)
3228
Darren Tuckerd545a4b2012-07-03 22:48:31 +10003229AC_MSG_CHECKING([if setrlimit RLIMIT_FSIZE works])
3230AC_RUN_IFELSE(
3231 [AC_LANG_PROGRAM([[
3232#include <sys/types.h>
3233#include <sys/resource.h>
3234#include <stdlib.h>
3235 ]],[[
3236 struct rlimit rl_zero;
3237
3238 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3239 exit(setrlimit(RLIMIT_FSIZE, &rl_zero) != 0);
3240 ]])],
3241 [AC_MSG_RESULT([yes])],
3242 [AC_MSG_RESULT([no])
3243 AC_DEFINE(SANDBOX_SKIP_RLIMIT_FSIZE, 1,
3244 [setrlimit RLIMIT_FSIZE works])],
3245 [AC_MSG_WARN([cross compiling: assuming yes])]
3246)
3247
deraadt@openbsd.org2539dce2015-10-09 01:37:08 +00003248if test "x$sandbox_arg" = "xpledge" || \
3249 ( test -z "$sandbox_arg" && test "x$ac_cv_func_pledge" = "xyes" ) ; then
3250 test "x$ac_cv_func_pledge" != "xyes" && \
3251 AC_MSG_ERROR([pledge sandbox requires pledge(2) support])
3252 SANDBOX_STYLE="pledge"
Damien Millerfafe1d82015-10-14 09:22:15 -07003253 AC_DEFINE([SANDBOX_PLEDGE], [1], [Sandbox using pledge(2)])
Damien Miller9846a2f2015-10-08 04:30:48 +11003254elif test "x$sandbox_arg" = "xsystrace" || \
Damien Miller69ff1df2011-06-23 08:30:03 +10003255 ( test -z "$sandbox_arg" && test "x$have_systr_policy_kill" = "x1" ) ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003256 test "x$have_systr_policy_kill" != "x1" && \
3257 AC_MSG_ERROR([systrace sandbox requires systrace headers and SYSTR_POLICY_KILL support])
Damien Miller69ff1df2011-06-23 08:30:03 +10003258 SANDBOX_STYLE="systrace"
3259 AC_DEFINE([SANDBOX_SYSTRACE], [1], [Sandbox using systrace(4)])
Damien Millercd5e52e2011-06-27 07:18:18 +10003260elif test "x$sandbox_arg" = "xdarwin" || \
3261 ( test -z "$sandbox_arg" && test "x$ac_cv_func_sandbox_init" = "xyes" && \
3262 test "x$ac_cv_header_sandbox_h" = "xyes") ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003263 test "x$ac_cv_func_sandbox_init" != "xyes" -o \
3264 "x$ac_cv_header_sandbox_h" != "xyes" && \
3265 AC_MSG_ERROR([Darwin seatbelt sandbox requires sandbox.h and sandbox_init function])
Damien Millercd5e52e2011-06-27 07:18:18 +10003266 SANDBOX_STYLE="darwin"
3267 AC_DEFINE([SANDBOX_DARWIN], [1], [Sandbox using Darwin sandbox_init(3)])
Damien Millere0956e32012-04-04 11:27:54 +10003268elif test "x$sandbox_arg" = "xseccomp_filter" || \
3269 ( test -z "$sandbox_arg" && \
Darren Tuckerd0494fd2012-05-19 14:25:39 +10003270 test "x$have_seccomp_filter" = "x1" && \
Damien Miller91f40d82013-02-22 11:37:00 +11003271 test "x$ac_cv_header_elf_h" = "xyes" && \
Damien Millere0956e32012-04-04 11:27:54 +10003272 test "x$ac_cv_header_linux_audit_h" = "xyes" && \
Damien Miller91f40d82013-02-22 11:37:00 +11003273 test "x$ac_cv_header_linux_filter_h" = "xyes" && \
3274 test "x$seccomp_audit_arch" != "x" && \
Damien Millere0956e32012-04-04 11:27:54 +10003275 test "x$have_linux_no_new_privs" = "x1" && \
3276 test "x$ac_cv_func_prctl" = "xyes" ) ; then
Damien Miller91f40d82013-02-22 11:37:00 +11003277 test "x$seccomp_audit_arch" = "x" && \
Damien Millere0956e32012-04-04 11:27:54 +10003278 AC_MSG_ERROR([seccomp_filter sandbox not supported on $host])
3279 test "x$have_linux_no_new_privs" != "x1" && \
3280 AC_MSG_ERROR([seccomp_filter sandbox requires PR_SET_NO_NEW_PRIVS])
3281 test "x$have_seccomp_filter" != "x1" && \
3282 AC_MSG_ERROR([seccomp_filter sandbox requires seccomp headers])
3283 test "x$ac_cv_func_prctl" != "xyes" && \
3284 AC_MSG_ERROR([seccomp_filter sandbox requires prctl function])
3285 SANDBOX_STYLE="seccomp_filter"
3286 AC_DEFINE([SANDBOX_SECCOMP_FILTER], [1], [Sandbox using seccomp filter])
Damien Millerf62ecef2014-01-25 12:34:38 +11003287elif test "x$sandbox_arg" = "xcapsicum" || \
3288 ( test -z "$sandbox_arg" && \
Damien Miller603b8f42014-01-25 13:16:59 +11003289 test "x$ac_cv_header_sys_capability_h" = "xyes" && \
3290 test "x$ac_cv_func_cap_rights_limit" = "xyes") ; then
3291 test "x$ac_cv_header_sys_capability_h" != "xyes" && \
Damien Millerc96d8532014-01-25 13:12:28 +11003292 AC_MSG_ERROR([capsicum sandbox requires sys/capability.h header])
Damien Miller603b8f42014-01-25 13:16:59 +11003293 test "x$ac_cv_func_cap_rights_limit" != "xyes" && \
Damien Millerc96d8532014-01-25 13:12:28 +11003294 AC_MSG_ERROR([capsicum sandbox requires cap_rights_limit function])
Damien Millerf62ecef2014-01-25 12:34:38 +11003295 SANDBOX_STYLE="capsicum"
3296 AC_DEFINE([SANDBOX_CAPSICUM], [1], [Sandbox using capsicum])
Damien Miller69ff1df2011-06-23 08:30:03 +10003297elif test "x$sandbox_arg" = "xrlimit" || \
Darren Tucker60395f92012-07-03 14:31:18 +10003298 ( test -z "$sandbox_arg" && test "x$ac_cv_func_setrlimit" = "xyes" && \
Darren Tuckerff008de2013-03-06 17:48:48 +11003299 test "x$select_works_with_rlimit" = "xyes" && \
3300 test "x$rlimit_nofile_zero_works" = "xyes" ) ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003301 test "x$ac_cv_func_setrlimit" != "xyes" && \
3302 AC_MSG_ERROR([rlimit sandbox requires setrlimit function])
Darren Tucker60395f92012-07-03 14:31:18 +10003303 test "x$select_works_with_rlimit" != "xyes" && \
3304 AC_MSG_ERROR([rlimit sandbox requires select to work with rlimit])
Damien Miller69ff1df2011-06-23 08:30:03 +10003305 SANDBOX_STYLE="rlimit"
3306 AC_DEFINE([SANDBOX_RLIMIT], [1], [Sandbox using setrlimit(2)])
Damien Miller4626cba2016-01-08 14:24:56 +11003307elif test "x$sandbox_arg" = "xsolaris" || \
3308 ( test -z "$sandbox_arg" && test "x$SOLARIS_PRIVS" = "xyes" ) ; then
3309 SANDBOX_STYLE="solaris"
3310 AC_DEFINE([SANDBOX_SOLARIS], [1], [Sandbox using Solaris/Illumos privileges])
Damien Miller69ff1df2011-06-23 08:30:03 +10003311elif test -z "$sandbox_arg" || test "x$sandbox_arg" = "xno" || \
3312 test "x$sandbox_arg" = "xnone" || test "x$sandbox_arg" = "xnull" ; then
3313 SANDBOX_STYLE="none"
3314 AC_DEFINE([SANDBOX_NULL], [1], [no privsep sandboxing])
3315else
Tim Ricea6e60612011-08-17 21:48:22 -07003316 AC_MSG_ERROR([unsupported --with-sandbox])
Damien Miller69ff1df2011-06-23 08:30:03 +10003317fi
3318
Ben Lindstromb5628642000-10-18 00:02:25 +00003319# Cheap hack to ensure NEWS-OS libraries are arranged right.
3320if test ! -z "$SONY" ; then
3321 LIBS="$LIBS -liberty";
3322fi
3323
Damien Miller57f39152005-11-24 19:58:19 +11003324# Check for long long datatypes
3325AC_CHECK_TYPES([long long, unsigned long long, long double])
3326
3327# Check datatype sizes
Tim Rice648f8762011-01-26 12:38:57 -08003328AC_CHECK_SIZEOF([short int], [2])
3329AC_CHECK_SIZEOF([int], [4])
3330AC_CHECK_SIZEOF([long int], [4])
3331AC_CHECK_SIZEOF([long long int], [8])
Damien Millerc6398ef1999-11-20 12:18:40 +11003332
Damien Millerfa2bb692002-04-23 23:22:25 +10003333# Sanity check long long for some platforms (AIX)
3334if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
3335 ac_cv_sizeof_long_long_int=0
3336fi
3337
Darren Tucker537f1ed2005-10-25 18:38:33 +10003338# compute LLONG_MIN and LLONG_MAX if we don't know them.
3339if test -z "$have_llong_max"; then
3340 AC_MSG_CHECKING([for max value of long long])
3341 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08003342 [AC_LANG_PROGRAM([[
Darren Tucker537f1ed2005-10-25 18:38:33 +10003343#include <stdio.h>
3344/* Why is this so damn hard? */
3345#ifdef __GNUC__
3346# undef __GNUC__
3347#endif
3348#define __USE_ISOC99
3349#include <limits.h>
3350#define DATA "conftest.llminmax"
Darren Tuckerd1450db2006-03-13 19:06:51 +11003351#define my_abs(a) ((a) < 0 ? ((a) * -1) : (a))
3352
3353/*
3354 * printf in libc on some platforms (eg old Tru64) does not understand %lld so
3355 * we do this the hard way.
3356 */
3357static int
3358fprint_ll(FILE *f, long long n)
3359{
3360 unsigned int i;
3361 int l[sizeof(long long) * 8];
3362
3363 if (n < 0)
3364 if (fprintf(f, "-") < 0)
3365 return -1;
3366 for (i = 0; n != 0; i++) {
3367 l[i] = my_abs(n % 10);
3368 n /= 10;
3369 }
3370 do {
3371 if (fprintf(f, "%d", l[--i]) < 0)
3372 return -1;
3373 } while (i != 0);
3374 if (fprintf(f, " ") < 0)
3375 return -1;
3376 return 0;
3377}
Tim Rice648f8762011-01-26 12:38:57 -08003378 ]], [[
Darren Tucker537f1ed2005-10-25 18:38:33 +10003379 FILE *f;
3380 long long i, llmin, llmax = 0;
3381
3382 if((f = fopen(DATA,"w")) == NULL)
3383 exit(1);
3384
3385#if defined(LLONG_MIN) && defined(LLONG_MAX)
3386 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
3387 llmin = LLONG_MIN;
3388 llmax = LLONG_MAX;
3389#else
3390 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n");
3391 /* This will work on one's complement and two's complement */
3392 for (i = 1; i > llmax; i <<= 1, i++)
3393 llmax = i;
3394 llmin = llmax + 1LL; /* wrap */
3395#endif
3396
3397 /* Sanity check */
3398 if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
Darren Tuckerd1450db2006-03-13 19:06:51 +11003399 || llmax - 1 > llmax || llmin == llmax || llmin == 0
3400 || llmax == 0 || llmax < LONG_MAX || llmin > LONG_MIN) {
Darren Tucker537f1ed2005-10-25 18:38:33 +10003401 fprintf(f, "unknown unknown\n");
3402 exit(2);
3403 }
3404
Darren Tuckerd1450db2006-03-13 19:06:51 +11003405 if (fprint_ll(f, llmin) < 0)
Darren Tucker537f1ed2005-10-25 18:38:33 +10003406 exit(3);
Darren Tuckerd1450db2006-03-13 19:06:51 +11003407 if (fprint_ll(f, llmax) < 0)
3408 exit(4);
3409 if (fclose(f) < 0)
3410 exit(5);
Darren Tucker537f1ed2005-10-25 18:38:33 +10003411 exit(0);
Darren Tucker537f1ed2005-10-25 18:38:33 +10003412 ]])],
3413 [
3414 llong_min=`$AWK '{print $1}' conftest.llminmax`
3415 llong_max=`$AWK '{print $2}' conftest.llminmax`
3416
Tim Rice648f8762011-01-26 12:38:57 -08003417 AC_MSG_RESULT([$llong_max])
3418 AC_DEFINE_UNQUOTED([LLONG_MAX], [${llong_max}LL],
Darren Tucker537f1ed2005-10-25 18:38:33 +10003419 [max value of long long calculated by configure])
3420 AC_MSG_CHECKING([for min value of long long])
Tim Rice648f8762011-01-26 12:38:57 -08003421 AC_MSG_RESULT([$llong_min])
3422 AC_DEFINE_UNQUOTED([LLONG_MIN], [${llong_min}LL],
Darren Tucker537f1ed2005-10-25 18:38:33 +10003423 [min value of long long calculated by configure])
3424 ],
3425 [
Tim Rice648f8762011-01-26 12:38:57 -08003426 AC_MSG_RESULT([not found])
Darren Tucker537f1ed2005-10-25 18:38:33 +10003427 ],
3428 [
3429 AC_MSG_WARN([cross compiling: not checking])
3430 ]
3431 )
3432fi
3433
3434
Damien Millera22ba012000-03-02 23:09:20 +11003435# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11003436AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
Tim Rice648f8762011-01-26 12:38:57 -08003437 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3438 [[ u_int a; a = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003439 [ ac_cv_have_u_int="yes" ], [ ac_cv_have_u_int="no"
Tim Rice648f8762011-01-26 12:38:57 -08003440 ])
Damien Millercaf6dd62000-08-29 11:33:50 +11003441])
3442if test "x$ac_cv_have_u_int" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003443 AC_DEFINE([HAVE_U_INT], [1], [define if you have u_int data type])
Damien Millercaf6dd62000-08-29 11:33:50 +11003444 have_u_int=1
3445fi
3446
Damien Miller61e50f12000-05-08 20:49:37 +10003447AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003448 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3449 [[ int8_t a; int16_t b; int32_t c; a = b = c = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003450 [ ac_cv_have_intxx_t="yes" ], [ ac_cv_have_intxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003451 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003452])
3453if test "x$ac_cv_have_intxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003454 AC_DEFINE([HAVE_INTXX_T], [1], [define if you have intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003455 have_intxx_t=1
3456fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003457
3458if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11003459 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003460then
3461 AC_MSG_CHECKING([for intXX_t types in stdint.h])
Tim Rice648f8762011-01-26 12:38:57 -08003462 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdint.h> ]],
3463 [[ int8_t a; int16_t b; int32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003464 [
Tim Rice648f8762011-01-26 12:38:57 -08003465 AC_DEFINE([HAVE_INTXX_T])
3466 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003467 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003468 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003469fi
3470
Damien Miller578783e2000-09-23 14:12:24 +11003471AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003472 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Rice907881e2002-07-18 11:44:50 -07003473#include <sys/types.h>
3474#ifdef HAVE_STDINT_H
3475# include <stdint.h>
3476#endif
3477#include <sys/socket.h>
3478#ifdef HAVE_SYS_BITYPES_H
3479# include <sys/bitypes.h>
3480#endif
Tim Rice648f8762011-01-26 12:38:57 -08003481 ]], [[
3482int64_t a; a = 1;
3483 ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003484 [ ac_cv_have_int64_t="yes" ], [ ac_cv_have_int64_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003485 ])
Damien Miller578783e2000-09-23 14:12:24 +11003486])
3487if test "x$ac_cv_have_int64_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003488 AC_DEFINE([HAVE_INT64_T], [1], [define if you have int64_t data type])
Tim Rice4cec93f2002-02-26 08:40:48 -08003489fi
3490
Damien Miller61e50f12000-05-08 20:49:37 +10003491AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003492 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3493 [[ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003494 [ ac_cv_have_u_intxx_t="yes" ], [ ac_cv_have_u_intxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003495 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003496])
3497if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003498 AC_DEFINE([HAVE_U_INTXX_T], [1], [define if you have u_intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003499 have_u_intxx_t=1
3500fi
Damien Millerc6398ef1999-11-20 12:18:40 +11003501
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003502if test -z "$have_u_intxx_t" ; then
3503 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
Tim Rice648f8762011-01-26 12:38:57 -08003504 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/socket.h> ]],
3505 [[ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003506 [
Tim Rice648f8762011-01-26 12:38:57 -08003507 AC_DEFINE([HAVE_U_INTXX_T])
3508 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003509 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003510 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003511fi
3512
Damien Miller578783e2000-09-23 14:12:24 +11003513AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003514 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3515 [[ u_int64_t a; a = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003516 [ ac_cv_have_u_int64_t="yes" ], [ ac_cv_have_u_int64_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003517 ])
Damien Miller578783e2000-09-23 14:12:24 +11003518])
3519if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003520 AC_DEFINE([HAVE_U_INT64_T], [1], [define if you have u_int64_t data type])
Damien Miller578783e2000-09-23 14:12:24 +11003521 have_u_int64_t=1
3522fi
3523
Damien Millerc2868192014-01-30 10:21:19 +11003524if (test -z "$have_u_int64_t" && \
3525 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
3526then
Tim Rice4cec93f2002-02-26 08:40:48 -08003527 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
Tim Rice648f8762011-01-26 12:38:57 -08003528 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/bitypes.h> ]],
3529 [[ u_int64_t a; a = 1]])],
Tim Rice4cec93f2002-02-26 08:40:48 -08003530 [
Tim Rice648f8762011-01-26 12:38:57 -08003531 AC_DEFINE([HAVE_U_INT64_T])
3532 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003533 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003534 ])
Tim Rice4cec93f2002-02-26 08:40:48 -08003535fi
3536
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003537if test -z "$have_u_intxx_t" ; then
3538 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003539 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003540#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08003541 ]], [[
3542 uint8_t a;
3543 uint16_t b;
3544 uint32_t c;
3545 a = b = c = 1;
3546 ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003547 [ ac_cv_have_uintxx_t="yes" ], [ ac_cv_have_uintxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003548 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003549 ])
3550 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003551 AC_DEFINE([HAVE_UINTXX_T], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003552 [define if you have uintxx_t data type])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003553 fi
3554fi
3555
Damien Millerc2868192014-01-30 10:21:19 +11003556if (test -z "$have_uintxx_t" && \
3557 test "x$ac_cv_header_stdint_h" = "xyes")
3558then
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003559 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
Tim Rice648f8762011-01-26 12:38:57 -08003560 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdint.h> ]],
3561 [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003562 [
Tim Rice648f8762011-01-26 12:38:57 -08003563 AC_DEFINE([HAVE_UINTXX_T])
3564 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003565 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003566 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003567fi
3568
Damien Millerc2868192014-01-30 10:21:19 +11003569if (test -z "$have_uintxx_t" && \
3570 test "x$ac_cv_header_inttypes_h" = "xyes")
3571then
Darren Tucker6d725682014-01-17 19:17:34 +11003572 AC_MSG_CHECKING([for uintXX_t types in inttypes.h])
3573 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <inttypes.h> ]],
3574 [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])],
3575 [
3576 AC_DEFINE([HAVE_UINTXX_T])
3577 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003578 ], [ AC_MSG_RESULT([no])
Darren Tucker6d725682014-01-17 19:17:34 +11003579 ])
3580fi
3581
Damien Milleredb82922000-06-20 13:25:52 +10003582if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11003583 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11003584then
3585 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
Tim Rice648f8762011-01-26 12:38:57 -08003586 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller61e50f12000-05-08 20:49:37 +10003587#include <sys/bitypes.h>
Tim Rice648f8762011-01-26 12:38:57 -08003588 ]], [[
Damien Miller70494d12000-04-03 15:57:06 +10003589 int8_t a; int16_t b; int32_t c;
3590 u_int8_t e; u_int16_t f; u_int32_t g;
3591 a = b = c = e = f = g = 1;
Tim Rice648f8762011-01-26 12:38:57 -08003592 ]])],
Damien Millerb29ea912000-01-15 14:12:03 +11003593 [
Tim Rice648f8762011-01-26 12:38:57 -08003594 AC_DEFINE([HAVE_U_INTXX_T])
3595 AC_DEFINE([HAVE_INTXX_T])
3596 AC_MSG_RESULT([yes])
3597 ], [AC_MSG_RESULT([no])
3598 ])
Damien Millerb29ea912000-01-15 14:12:03 +11003599fi
3600
Damien Miller58be7382001-09-15 21:31:54 +10003601
3602AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
Tim Rice648f8762011-01-26 12:38:57 -08003603 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3604 [[ u_char foo; foo = 125; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003605 [ ac_cv_have_u_char="yes" ], [ ac_cv_have_u_char="no"
Tim Rice648f8762011-01-26 12:38:57 -08003606 ])
Damien Miller58be7382001-09-15 21:31:54 +10003607])
3608if test "x$ac_cv_have_u_char" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003609 AC_DEFINE([HAVE_U_CHAR], [1], [define if you have u_char data type])
Damien Miller58be7382001-09-15 21:31:54 +10003610fi
3611
Darren Tucker007e3b32013-11-03 18:43:55 +11003612AC_CHECK_TYPES([intmax_t, uintmax_t], , , [
3613#include <sys/types.h>
3614#include <stdint.h>
3615])
3616
Tim Rice13aae5e2001-10-21 17:53:58 -07003617TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11003618
Tim Rice648f8762011-01-26 12:38:57 -08003619AC_CHECK_TYPES([sig_atomic_t], , , [#include <signal.h>])
3620AC_CHECK_TYPES([fsblkcnt_t, fsfilcnt_t], , , [
Darren Tucker598eaa62008-06-09 03:32:29 +10003621#include <sys/types.h>
3622#ifdef HAVE_SYS_BITYPES_H
3623#include <sys/bitypes.h>
3624#endif
3625#ifdef HAVE_SYS_STATFS_H
3626#include <sys/statfs.h>
3627#endif
3628#ifdef HAVE_SYS_STATVFS_H
3629#include <sys/statvfs.h>
3630#endif
3631])
Tim Rice4cec93f2002-02-26 08:40:48 -08003632
Tim Rice648f8762011-01-26 12:38:57 -08003633AC_CHECK_TYPES([in_addr_t, in_port_t], , ,
Damien Miller848b9932005-02-24 12:12:34 +11003634[#include <sys/types.h>
3635#include <netinet/in.h>])
Darren Tuckerd9f88912005-02-20 21:01:48 +11003636
Damien Miller61e50f12000-05-08 20:49:37 +10003637AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003638 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3639 [[ size_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003640 [ ac_cv_have_size_t="yes" ], [ ac_cv_have_size_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003641 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003642])
3643if test "x$ac_cv_have_size_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003644 AC_DEFINE([HAVE_SIZE_T], [1], [define if you have size_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003645fi
Damien Miller95058511999-12-29 10:36:45 +11003646
Damien Miller615f9392000-05-17 22:53:33 +10003647AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003648 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3649 [[ ssize_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003650 [ ac_cv_have_ssize_t="yes" ], [ ac_cv_have_ssize_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003651 ])
Damien Miller615f9392000-05-17 22:53:33 +10003652])
3653if test "x$ac_cv_have_ssize_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003654 AC_DEFINE([HAVE_SSIZE_T], [1], [define if you have ssize_t data type])
Damien Miller615f9392000-05-17 22:53:33 +10003655fi
3656
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003657AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003658 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <time.h> ]],
3659 [[ clock_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003660 [ ac_cv_have_clock_t="yes" ], [ ac_cv_have_clock_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003661 ])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003662])
3663if test "x$ac_cv_have_clock_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003664 AC_DEFINE([HAVE_CLOCK_T], [1], [define if you have clock_t data type])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003665fi
3666
Damien Millerb54b40e2000-06-23 08:23:34 +10003667AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003668 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Millerb54b40e2000-06-23 08:23:34 +10003669#include <sys/types.h>
3670#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08003671 ]], [[ sa_family_t foo; foo = 1235; ]])],
3672 [ ac_cv_have_sa_family_t="yes" ],
3673 [ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller78315eb2000-09-29 23:01:36 +11003674#include <sys/types.h>
3675#include <sys/socket.h>
3676#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08003677 ]], [[ sa_family_t foo; foo = 1235; ]])],
Damien Miller78315eb2000-09-29 23:01:36 +11003678 [ ac_cv_have_sa_family_t="yes" ],
Damien Millerb54b40e2000-06-23 08:23:34 +10003679 [ ac_cv_have_sa_family_t="no" ]
3680 )
Tim Rice648f8762011-01-26 12:38:57 -08003681 ])
Damien Millerb54b40e2000-06-23 08:23:34 +10003682])
3683if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003684 AC_DEFINE([HAVE_SA_FAMILY_T], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003685 [define if you have sa_family_t data type])
Damien Millerb54b40e2000-06-23 08:23:34 +10003686fi
3687
Damien Miller0f91b4e2000-06-18 15:43:25 +10003688AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003689 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3690 [[ pid_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003691 [ ac_cv_have_pid_t="yes" ], [ ac_cv_have_pid_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003692 ])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003693])
3694if test "x$ac_cv_have_pid_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003695 AC_DEFINE([HAVE_PID_T], [1], [define if you have pid_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003696fi
3697
3698AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003699 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3700 [[ mode_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003701 [ ac_cv_have_mode_t="yes" ], [ ac_cv_have_mode_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003702 ])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003703])
3704if test "x$ac_cv_have_mode_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003705 AC_DEFINE([HAVE_MODE_T], [1], [define if you have mode_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003706fi
3707
Damien Miller61e50f12000-05-08 20:49:37 +10003708
3709AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
Tim Rice648f8762011-01-26 12:38:57 -08003710 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10003711#include <sys/types.h>
3712#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08003713 ]], [[ struct sockaddr_storage s; ]])],
3714 [ ac_cv_have_struct_sockaddr_storage="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003715 [ ac_cv_have_struct_sockaddr_storage="no"
Tim Rice648f8762011-01-26 12:38:57 -08003716 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003717])
3718if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003719 AC_DEFINE([HAVE_STRUCT_SOCKADDR_STORAGE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003720 [define if you have struct sockaddr_storage data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003721fi
Damien Miller34132e52000-01-14 15:45:46 +11003722
Damien Miller61e50f12000-05-08 20:49:37 +10003723AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
Tim Rice648f8762011-01-26 12:38:57 -08003724 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller7b22d652000-06-18 14:07:04 +10003725#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003726#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08003727 ]], [[ struct sockaddr_in6 s; s.sin6_family = 0; ]])],
3728 [ ac_cv_have_struct_sockaddr_in6="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003729 [ ac_cv_have_struct_sockaddr_in6="no"
Tim Rice648f8762011-01-26 12:38:57 -08003730 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003731])
3732if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003733 AC_DEFINE([HAVE_STRUCT_SOCKADDR_IN6], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003734 [define if you have struct sockaddr_in6 data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003735fi
Damien Miller34132e52000-01-14 15:45:46 +11003736
Damien Miller61e50f12000-05-08 20:49:37 +10003737AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
Tim Rice648f8762011-01-26 12:38:57 -08003738 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller7b22d652000-06-18 14:07:04 +10003739#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003740#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08003741 ]], [[ struct in6_addr s; s.s6_addr[0] = 0; ]])],
3742 [ ac_cv_have_struct_in6_addr="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003743 [ ac_cv_have_struct_in6_addr="no"
Tim Rice648f8762011-01-26 12:38:57 -08003744 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003745])
3746if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003747 AC_DEFINE([HAVE_STRUCT_IN6_ADDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003748 [define if you have struct in6_addr data type])
Tim Rice0f4d2c02008-11-18 21:26:41 -08003749
3750dnl Now check for sin6_scope_id
Tim Rice648f8762011-01-26 12:38:57 -08003751 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id], , ,
Tim Rice0f4d2c02008-11-18 21:26:41 -08003752 [
3753#ifdef HAVE_SYS_TYPES_H
3754#include <sys/types.h>
3755#endif
3756#include <netinet/in.h>
3757 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003758fi
Damien Miller34132e52000-01-14 15:45:46 +11003759
Damien Miller61e50f12000-05-08 20:49:37 +10003760AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
Tim Rice648f8762011-01-26 12:38:57 -08003761 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10003762#include <sys/types.h>
3763#include <sys/socket.h>
3764#include <netdb.h>
Tim Rice648f8762011-01-26 12:38:57 -08003765 ]], [[ struct addrinfo s; s.ai_flags = AI_PASSIVE; ]])],
3766 [ ac_cv_have_struct_addrinfo="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003767 [ ac_cv_have_struct_addrinfo="no"
Tim Rice648f8762011-01-26 12:38:57 -08003768 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003769])
3770if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003771 AC_DEFINE([HAVE_STRUCT_ADDRINFO], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003772 [define if you have struct addrinfo data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003773fi
3774
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003775AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
Tim Rice648f8762011-01-26 12:38:57 -08003776 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/time.h> ]],
3777 [[ struct timeval tv; tv.tv_sec = 1;]])],
3778 [ ac_cv_have_struct_timeval="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003779 [ ac_cv_have_struct_timeval="no"
Tim Rice648f8762011-01-26 12:38:57 -08003780 ])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003781])
3782if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003783 AC_DEFINE([HAVE_STRUCT_TIMEVAL], [1], [define if you have struct timeval])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003784 have_struct_timeval=1
3785fi
3786
Tim Rice648f8762011-01-26 12:38:57 -08003787AC_CHECK_TYPES([struct timespec])
Tim Rice4e4dc562003-03-18 10:21:40 -08003788
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00003789# We need int64_t or else certian parts of the compile will fail.
Tim Rice8bb561b2005-03-17 16:23:19 -08003790if test "x$ac_cv_have_int64_t" = "xno" && \
3791 test "x$ac_cv_sizeof_long_int" != "x8" && \
3792 test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00003793 echo "OpenSSH requires int64_t support. Contact your vendor or install"
3794 echo "an alternative compiler (I.E., GCC) before continuing."
3795 echo ""
3796 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08003797else
3798dnl test snprintf (broken on SCO w/gcc)
Darren Tuckera0c2b392004-09-11 23:26:37 +10003799 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10003800 [AC_LANG_SOURCE([[
Tim Ricebee3f222001-03-11 17:32:12 -08003801#include <stdio.h>
3802#include <string.h>
3803#ifdef HAVE_SNPRINTF
3804main()
3805{
3806 char buf[50];
3807 char expected_out[50];
3808 int mazsize = 50 ;
3809#if (SIZEOF_LONG_INT == 8)
3810 long int num = 0x7fffffffffffffff;
3811#else
Kevin Steves6482ec82001-07-15 02:09:28 +00003812 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08003813#endif
3814 strcpy(expected_out, "9223372036854775807");
3815 snprintf(buf, mazsize, "%lld", num);
3816 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11003817 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08003818 exit(0);
3819}
3820#else
3821main() { exit(0); }
3822#endif
Tim Rice648f8762011-01-26 12:38:57 -08003823 ]])], [ true ], [ AC_DEFINE([BROKEN_SNPRINTF]) ],
Darren Tuckera0c2b392004-09-11 23:26:37 +10003824 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
Tim Ricebee3f222001-03-11 17:32:12 -08003825 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003826fi
3827
Damien Miller78315eb2000-09-29 23:01:36 +11003828dnl Checks for structure members
Tim Rice648f8762011-01-26 12:38:57 -08003829OSSH_CHECK_HEADER_FOR_FIELD([ut_host], [utmp.h], [HAVE_HOST_IN_UTMP])
3830OSSH_CHECK_HEADER_FOR_FIELD([ut_host], [utmpx.h], [HAVE_HOST_IN_UTMPX])
3831OSSH_CHECK_HEADER_FOR_FIELD([syslen], [utmpx.h], [HAVE_SYSLEN_IN_UTMPX])
3832OSSH_CHECK_HEADER_FOR_FIELD([ut_pid], [utmp.h], [HAVE_PID_IN_UTMP])
3833OSSH_CHECK_HEADER_FOR_FIELD([ut_type], [utmp.h], [HAVE_TYPE_IN_UTMP])
3834OSSH_CHECK_HEADER_FOR_FIELD([ut_type], [utmpx.h], [HAVE_TYPE_IN_UTMPX])
3835OSSH_CHECK_HEADER_FOR_FIELD([ut_tv], [utmp.h], [HAVE_TV_IN_UTMP])
3836OSSH_CHECK_HEADER_FOR_FIELD([ut_id], [utmp.h], [HAVE_ID_IN_UTMP])
3837OSSH_CHECK_HEADER_FOR_FIELD([ut_id], [utmpx.h], [HAVE_ID_IN_UTMPX])
3838OSSH_CHECK_HEADER_FOR_FIELD([ut_addr], [utmp.h], [HAVE_ADDR_IN_UTMP])
3839OSSH_CHECK_HEADER_FOR_FIELD([ut_addr], [utmpx.h], [HAVE_ADDR_IN_UTMPX])
3840OSSH_CHECK_HEADER_FOR_FIELD([ut_addr_v6], [utmp.h], [HAVE_ADDR_V6_IN_UTMP])
3841OSSH_CHECK_HEADER_FOR_FIELD([ut_addr_v6], [utmpx.h], [HAVE_ADDR_V6_IN_UTMPX])
3842OSSH_CHECK_HEADER_FOR_FIELD([ut_exit], [utmp.h], [HAVE_EXIT_IN_UTMP])
3843OSSH_CHECK_HEADER_FOR_FIELD([ut_time], [utmp.h], [HAVE_TIME_IN_UTMP])
3844OSSH_CHECK_HEADER_FOR_FIELD([ut_time], [utmpx.h], [HAVE_TIME_IN_UTMPX])
3845OSSH_CHECK_HEADER_FOR_FIELD([ut_tv], [utmpx.h], [HAVE_TV_IN_UTMPX])
Tim Rice13aae5e2001-10-21 17:53:58 -07003846
3847AC_CHECK_MEMBERS([struct stat.st_blksize])
Damien Miller6332da22013-04-23 14:25:52 +10003848AC_CHECK_MEMBERS([struct passwd.pw_gecos, struct passwd.pw_class,
3849struct passwd.pw_change, struct passwd.pw_expire],
3850[], [], [[
3851#include <sys/types.h>
3852#include <pwd.h>
3853]])
3854
Tim Rice648f8762011-01-26 12:38:57 -08003855AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE([__res_state], [state],
Darren Tucker58e298d2005-11-25 13:14:58 +11003856 [Define if we don't have struct __res_state in resolv.h])],
Damien Miller6332da22013-04-23 14:25:52 +10003857[[
Darren Tucker58e298d2005-11-25 13:14:58 +11003858#include <stdio.h>
3859#if HAVE_SYS_TYPES_H
3860# include <sys/types.h>
3861#endif
3862#include <netinet/in.h>
3863#include <arpa/nameser.h>
3864#include <resolv.h>
Damien Miller6332da22013-04-23 14:25:52 +10003865]])
andre2ff7b5d2000-06-03 14:57:40 +00003866
Damien Miller61e50f12000-05-08 20:49:37 +10003867AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
3868 ac_cv_have_ss_family_in_struct_ss, [
Tim Rice648f8762011-01-26 12:38:57 -08003869 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10003870#include <sys/types.h>
3871#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08003872 ]], [[ struct sockaddr_storage s; s.ss_family = 1; ]])],
3873 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
3874 [ ac_cv_have_ss_family_in_struct_ss="no" ])
Damien Miller61e50f12000-05-08 20:49:37 +10003875])
3876if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003877 AC_DEFINE([HAVE_SS_FAMILY_IN_SS], [1], [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10003878fi
3879
Damien Miller61e50f12000-05-08 20:49:37 +10003880AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
3881 ac_cv_have___ss_family_in_struct_ss, [
Tim Rice648f8762011-01-26 12:38:57 -08003882 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10003883#include <sys/types.h>
3884#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08003885 ]], [[ struct sockaddr_storage s; s.__ss_family = 1; ]])],
3886 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003887 [ ac_cv_have___ss_family_in_struct_ss="no"
Tim Rice648f8762011-01-26 12:38:57 -08003888 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003889])
3890if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003891 AC_DEFINE([HAVE___SS_FAMILY_IN_SS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003892 [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10003893fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11003894
Tim Rice28bbb0c2002-05-27 17:37:32 -07003895dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00003896AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
3897 ac_cv_have_accrights_in_msghdr, [
Tim Rice648f8762011-01-26 12:38:57 -08003898 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Riceae49fe62002-04-12 10:26:21 -07003899#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00003900#include <sys/socket.h>
3901#include <sys/uio.h>
Tim Rice648f8762011-01-26 12:38:57 -08003902 ]], [[
Tim Rice28bbb0c2002-05-27 17:37:32 -07003903#ifdef msg_accrights
Darren Tuckera0c2b392004-09-11 23:26:37 +10003904#error "msg_accrights is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07003905exit(1);
3906#endif
3907struct msghdr m;
3908m.msg_accrights = 0;
3909exit(0);
Tim Rice648f8762011-01-26 12:38:57 -08003910 ]])],
Kevin Steves939c9db2002-03-22 17:23:25 +00003911 [ ac_cv_have_accrights_in_msghdr="yes" ],
3912 [ ac_cv_have_accrights_in_msghdr="no" ]
3913 )
3914])
3915if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003916 AC_DEFINE([HAVE_ACCRIGHTS_IN_MSGHDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003917 [Define if your system uses access rights style
3918 file descriptor passing])
Kevin Steves939c9db2002-03-22 17:23:25 +00003919fi
3920
Tim Rice648f8762011-01-26 12:38:57 -08003921AC_MSG_CHECKING([if struct statvfs.f_fsid is integral type])
3922AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere1a3ddf2012-05-04 11:05:45 +10003923#include <sys/param.h>
Darren Tucker32780622009-06-16 16:11:02 +10003924#include <sys/stat.h>
3925#ifdef HAVE_SYS_TIME_H
3926# include <sys/time.h>
3927#endif
3928#ifdef HAVE_SYS_MOUNT_H
3929#include <sys/mount.h>
3930#endif
3931#ifdef HAVE_SYS_STATVFS_H
3932#include <sys/statvfs.h>
3933#endif
Tim Rice648f8762011-01-26 12:38:57 -08003934 ]], [[ struct statvfs s; s.f_fsid = 0; ]])],
3935 [ AC_MSG_RESULT([yes]) ],
3936 [ AC_MSG_RESULT([no])
Darren Tucker32780622009-06-16 16:11:02 +10003937
Tim Rice648f8762011-01-26 12:38:57 -08003938 AC_MSG_CHECKING([if fsid_t has member val])
3939 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker32780622009-06-16 16:11:02 +10003940#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08003941#include <sys/statvfs.h>
3942 ]], [[ fsid_t t; t.val[0] = 0; ]])],
3943 [ AC_MSG_RESULT([yes])
3944 AC_DEFINE([FSID_HAS_VAL], [1], [fsid_t has member val]) ],
3945 [ AC_MSG_RESULT([no]) ])
Darren Tucker32780622009-06-16 16:11:02 +10003946
Tim Rice648f8762011-01-26 12:38:57 -08003947 AC_MSG_CHECKING([if f_fsid has member __val])
3948 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker32780622009-06-16 16:11:02 +10003949#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08003950#include <sys/statvfs.h>
3951 ]], [[ fsid_t t; t.__val[0] = 0; ]])],
3952 [ AC_MSG_RESULT([yes])
3953 AC_DEFINE([FSID_HAS___VAL], [1], [fsid_t has member __val]) ],
3954 [ AC_MSG_RESULT([no]) ])
Darren Tucker32780622009-06-16 16:11:02 +10003955])
Darren Tucker77001382008-06-09 06:17:53 +10003956
Kevin Stevesa44e0352002-04-07 16:18:03 +00003957AC_CACHE_CHECK([for msg_control field in struct msghdr],
3958 ac_cv_have_control_in_msghdr, [
Tim Rice648f8762011-01-26 12:38:57 -08003959 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Riceae49fe62002-04-12 10:26:21 -07003960#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00003961#include <sys/socket.h>
3962#include <sys/uio.h>
Tim Rice648f8762011-01-26 12:38:57 -08003963 ]], [[
Tim Rice28bbb0c2002-05-27 17:37:32 -07003964#ifdef msg_control
Darren Tuckera0c2b392004-09-11 23:26:37 +10003965#error "msg_control is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07003966exit(1);
3967#endif
3968struct msghdr m;
3969m.msg_control = 0;
3970exit(0);
Tim Rice648f8762011-01-26 12:38:57 -08003971 ]])],
Kevin Stevesa44e0352002-04-07 16:18:03 +00003972 [ ac_cv_have_control_in_msghdr="yes" ],
3973 [ ac_cv_have_control_in_msghdr="no" ]
3974 )
3975])
3976if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003977 AC_DEFINE([HAVE_CONTROL_IN_MSGHDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003978 [Define if your system uses ancillary data style
3979 file descriptor passing])
Kevin Stevesa44e0352002-04-07 16:18:03 +00003980fi
3981
Damien Miller61e50f12000-05-08 20:49:37 +10003982AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Tim Rice648f8762011-01-26 12:38:57 -08003983 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
3984 [[ extern char *__progname; printf("%s", __progname); ]])],
3985 [ ac_cv_libc_defines___progname="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003986 [ ac_cv_libc_defines___progname="no"
Tim Rice648f8762011-01-26 12:38:57 -08003987 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003988])
3989if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003990 AC_DEFINE([HAVE___PROGNAME], [1], [Define if libc defines __progname])
Damien Miller61e50f12000-05-08 20:49:37 +10003991fi
3992
Kevin Steves4846f4a2002-03-22 18:19:53 +00003993AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
Tim Rice648f8762011-01-26 12:38:57 -08003994 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]],
3995 [[ printf("%s", __FUNCTION__); ]])],
3996 [ ac_cv_cc_implements___FUNCTION__="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003997 [ ac_cv_cc_implements___FUNCTION__="no"
Tim Rice648f8762011-01-26 12:38:57 -08003998 ])
Kevin Steves4846f4a2002-03-22 18:19:53 +00003999])
4000if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004001 AC_DEFINE([HAVE___FUNCTION__], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004002 [Define if compiler implements __FUNCTION__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004003fi
4004
4005AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
Tim Rice648f8762011-01-26 12:38:57 -08004006 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]],
4007 [[ printf("%s", __func__); ]])],
4008 [ ac_cv_cc_implements___func__="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004009 [ ac_cv_cc_implements___func__="no"
Tim Rice648f8762011-01-26 12:38:57 -08004010 ])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004011])
4012if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004013 AC_DEFINE([HAVE___func__], [1], [Define if compiler implements __func__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004014fi
4015
Damien Miller57f39152005-11-24 19:58:19 +11004016AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [
Tim Rice648f8762011-01-26 12:38:57 -08004017 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
4018#include <stdarg.h>
4019va_list x,y;
4020 ]], [[ va_copy(x,y); ]])],
4021 [ ac_cv_have_va_copy="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004022 [ ac_cv_have_va_copy="no"
Tim Rice648f8762011-01-26 12:38:57 -08004023 ])
Damien Miller57f39152005-11-24 19:58:19 +11004024])
4025if test "x$ac_cv_have_va_copy" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004026 AC_DEFINE([HAVE_VA_COPY], [1], [Define if va_copy exists])
Damien Miller57f39152005-11-24 19:58:19 +11004027fi
4028
4029AC_CACHE_CHECK([whether __va_copy exists], ac_cv_have___va_copy, [
Tim Rice648f8762011-01-26 12:38:57 -08004030 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
4031#include <stdarg.h>
4032va_list x,y;
4033 ]], [[ __va_copy(x,y); ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07004034 [ ac_cv_have___va_copy="yes" ], [ ac_cv_have___va_copy="no"
Tim Rice648f8762011-01-26 12:38:57 -08004035 ])
Damien Miller57f39152005-11-24 19:58:19 +11004036])
4037if test "x$ac_cv_have___va_copy" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004038 AC_DEFINE([HAVE___VA_COPY], [1], [Define if __va_copy exists])
Damien Miller57f39152005-11-24 19:58:19 +11004039fi
4040
Damien Miller4f8e6692001-07-14 13:22:53 +10004041AC_CACHE_CHECK([whether getopt has optreset support],
4042 ac_cv_have_getopt_optreset, [
Tim Rice648f8762011-01-26 12:38:57 -08004043 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <getopt.h> ]],
4044 [[ extern int optreset; optreset = 0; ]])],
4045 [ ac_cv_have_getopt_optreset="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004046 [ ac_cv_have_getopt_optreset="no"
Tim Rice648f8762011-01-26 12:38:57 -08004047 ])
Damien Miller4f8e6692001-07-14 13:22:53 +10004048])
4049if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004050 AC_DEFINE([HAVE_GETOPT_OPTRESET], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004051 [Define if your getopt(3) defines and uses optreset])
Damien Miller4f8e6692001-07-14 13:22:53 +10004052fi
Damien Millera22ba012000-03-02 23:09:20 +11004053
Damien Millerecbb26d2000-07-15 14:59:14 +10004054AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Tim Rice648f8762011-01-26 12:38:57 -08004055 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
4056[[ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);]])],
4057 [ ac_cv_libc_defines_sys_errlist="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004058 [ ac_cv_libc_defines_sys_errlist="no"
Tim Rice648f8762011-01-26 12:38:57 -08004059 ])
Damien Millerecbb26d2000-07-15 14:59:14 +10004060])
4061if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004062 AC_DEFINE([HAVE_SYS_ERRLIST], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004063 [Define if your system defines sys_errlist[]])
Damien Millerecbb26d2000-07-15 14:59:14 +10004064fi
4065
4066
Damien Miller11fa2cc2000-08-16 10:35:58 +10004067AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Tim Rice648f8762011-01-26 12:38:57 -08004068 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
4069[[ extern int sys_nerr; printf("%i", sys_nerr);]])],
4070 [ ac_cv_libc_defines_sys_nerr="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004071 [ ac_cv_libc_defines_sys_nerr="no"
Tim Rice648f8762011-01-26 12:38:57 -08004072 ])
Damien Miller11fa2cc2000-08-16 10:35:58 +10004073])
4074if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004075 AC_DEFINE([HAVE_SYS_NERR], [1], [Define if your system defines sys_nerr])
Damien Miller11fa2cc2000-08-16 10:35:58 +10004076fi
4077
Darren Tucker5f88d342003-10-15 16:57:57 +10004078# Check libraries needed by DNS fingerprint support
Tim Rice648f8762011-01-26 12:38:57 -08004079AC_SEARCH_LIBS([getrrsetbyname], [resolv],
4080 [AC_DEFINE([HAVE_GETRRSETBYNAME], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004081 [Define if getrrsetbyname() exists])],
Damien Miller7abe09b2003-05-15 10:53:49 +10004082 [
Darren Tucker5f88d342003-10-15 16:57:57 +10004083 # Needed by our getrrsetbyname()
Tim Rice648f8762011-01-26 12:38:57 -08004084 AC_SEARCH_LIBS([res_query], [resolv])
4085 AC_SEARCH_LIBS([dn_expand], [resolv])
4086 AC_MSG_CHECKING([if res_query will link])
4087 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004088#include <sys/types.h>
4089#include <netinet/in.h>
4090#include <arpa/nameser.h>
4091#include <netdb.h>
4092#include <resolv.h>
Tim Rice648f8762011-01-26 12:38:57 -08004093 ]], [[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004094 res_query (0, 0, 0, 0, 0);
Tim Rice648f8762011-01-26 12:38:57 -08004095 ]])],
4096 AC_MSG_RESULT([yes]),
4097 [AC_MSG_RESULT([no])
Darren Tucker8e968a52004-05-13 11:56:16 +10004098 saved_LIBS="$LIBS"
4099 LIBS="$LIBS -lresolv"
Tim Rice648f8762011-01-26 12:38:57 -08004100 AC_MSG_CHECKING([for res_query in -lresolv])
4101 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004102#include <sys/types.h>
4103#include <netinet/in.h>
4104#include <arpa/nameser.h>
4105#include <netdb.h>
Darren Tucker8e968a52004-05-13 11:56:16 +10004106#include <resolv.h>
Tim Rice648f8762011-01-26 12:38:57 -08004107 ]], [[
Darren Tucker8e968a52004-05-13 11:56:16 +10004108 res_query (0, 0, 0, 0, 0);
Tim Rice648f8762011-01-26 12:38:57 -08004109 ]])],
4110 [AC_MSG_RESULT([yes])],
Darren Tucker8e968a52004-05-13 11:56:16 +10004111 [LIBS="$saved_LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08004112 AC_MSG_RESULT([no])])
Darren Tucker8e968a52004-05-13 11:56:16 +10004113 ])
Tim Rice648f8762011-01-26 12:38:57 -08004114 AC_CHECK_FUNCS([_getshort _getlong])
Darren Tuckerd886e1c2005-06-01 18:57:45 +10004115 AC_CHECK_DECLS([_getshort, _getlong], , ,
Tim Ricefcc7ff12005-06-02 20:28:29 -07004116 [#include <sys/types.h>
4117 #include <arpa/nameser.h>])
Tim Rice648f8762011-01-26 12:38:57 -08004118 AC_CHECK_MEMBER([HEADER.ad],
4119 [AC_DEFINE([HAVE_HEADER_AD], [1],
4120 [Define if HEADER.ad exists in arpa/nameser.h])], ,
Darren Tucker5f88d342003-10-15 16:57:57 +10004121 [#include <arpa/nameser.h>])
4122 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10004123
Tim Rice648f8762011-01-26 12:38:57 -08004124AC_MSG_CHECKING([if struct __res_state _res is an extern])
4125AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004126#include <stdio.h>
4127#if HAVE_SYS_TYPES_H
4128# include <sys/types.h>
4129#endif
4130#include <netinet/in.h>
4131#include <arpa/nameser.h>
4132#include <resolv.h>
4133extern struct __res_state _res;
Darren Tucker7ad8b282015-09-11 13:11:02 +10004134 ]], [[
4135struct __res_state *volatile p = &_res; /* force resolution of _res */
4136return 0;
4137 ]],)],
Tim Rice648f8762011-01-26 12:38:57 -08004138 [AC_MSG_RESULT([yes])
4139 AC_DEFINE([HAVE__RES_EXTERN], [1],
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004140 [Define if you have struct __res_state _res as an extern])
4141 ],
Tim Rice648f8762011-01-26 12:38:57 -08004142 [ AC_MSG_RESULT([no]) ]
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004143)
4144
Damien Miller73b42d22006-04-22 21:26:08 +10004145# Check whether user wants SELinux support
4146SELINUX_MSG="no"
4147LIBSELINUX=""
Tim Rice648f8762011-01-26 12:38:57 -08004148AC_ARG_WITH([selinux],
Damien Miller5b1c8b32008-03-27 12:33:07 +11004149 [ --with-selinux Enable SELinux support],
Damien Miller73b42d22006-04-22 21:26:08 +10004150 [ if test "x$withval" != "xno" ; then
Darren Tucker20e9f972007-03-25 18:26:01 +10004151 save_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08004152 AC_DEFINE([WITH_SELINUX], [1],
4153 [Define if you want SELinux support.])
Damien Miller73b42d22006-04-22 21:26:08 +10004154 SELINUX_MSG="yes"
4155 AC_CHECK_HEADER([selinux/selinux.h], ,
Tim Rice648f8762011-01-26 12:38:57 -08004156 AC_MSG_ERROR([SELinux support requires selinux.h header]))
4157 AC_CHECK_LIB([selinux], [setexeccon],
Damien Miller1d2bfc42010-02-10 10:19:29 +11004158 [ LIBSELINUX="-lselinux"
4159 LIBS="$LIBS -lselinux"
4160 ],
Tim Rice648f8762011-01-26 12:38:57 -08004161 AC_MSG_ERROR([SELinux support requires libselinux library]))
Damien Miller71adf122011-01-25 12:16:15 +11004162 SSHLIBS="$SSHLIBS $LIBSELINUX"
Darren Tucker20e9f972007-03-25 18:26:01 +10004163 SSHDLIBS="$SSHDLIBS $LIBSELINUX"
Tim Rice648f8762011-01-26 12:38:57 -08004164 AC_CHECK_FUNCS([getseuserbyname get_default_context_with_level])
Darren Tuckeradc947d2006-10-07 09:07:20 +10004165 LIBS="$save_LIBS"
Damien Miller73b42d22006-04-22 21:26:08 +10004166 fi ]
4167)
Tim Rice648f8762011-01-26 12:38:57 -08004168AC_SUBST([SSHLIBS])
4169AC_SUBST([SSHDLIBS])
Damien Miller73b42d22006-04-22 21:26:08 +10004170
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004171# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11004172KRB5_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004173AC_ARG_WITH([kerberos5],
Damien Millera8e06ce2003-11-21 23:48:55 +11004174 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11004175 [ if test "x$withval" != "xno" ; then
4176 if test "x$withval" = "xyes" ; then
4177 KRB5ROOT="/usr/local"
4178 else
4179 KRB5ROOT=${withval}
4180 fi
4181
Tim Rice648f8762011-01-26 12:38:57 -08004182 AC_DEFINE([KRB5], [1], [Define if you want Kerberos 5 support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004183 KRB5_MSG="yes"
4184
Darren Tucker4089fc12016-12-08 12:57:24 +11004185 AC_PATH_TOOL([KRB5CONF], [krb5-config],
Darren Tuckerdad48e72009-09-01 18:26:00 +10004186 [$KRB5ROOT/bin/krb5-config],
4187 [$KRB5ROOT/bin:$PATH])
4188 if test -x $KRB5CONF ; then
Darren Tucker964de182013-02-22 10:39:59 +11004189 K5CFLAGS="`$KRB5CONF --cflags`"
4190 K5LIBS="`$KRB5CONF --libs`"
4191 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11004192
Tim Rice648f8762011-01-26 12:38:57 -08004193 AC_MSG_CHECKING([for gssapi support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004194 if $KRB5CONF | grep gssapi >/dev/null ; then
Tim Rice648f8762011-01-26 12:38:57 -08004195 AC_MSG_RESULT([yes])
4196 AC_DEFINE([GSSAPI], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004197 [Define this if you want GSSAPI
4198 support in the version 2 protocol])
Darren Tucker964de182013-02-22 10:39:59 +11004199 GSSCFLAGS="`$KRB5CONF --cflags gssapi`"
4200 GSSLIBS="`$KRB5CONF --libs gssapi`"
4201 CPPFLAGS="$CPPFLAGS $GSSCFLAGS"
Damien Millera8e06ce2003-11-21 23:48:55 +11004202 else
Tim Rice648f8762011-01-26 12:38:57 -08004203 AC_MSG_RESULT([no])
Damien Millera8e06ce2003-11-21 23:48:55 +11004204 fi
Tim Rice648f8762011-01-26 12:38:57 -08004205 AC_MSG_CHECKING([whether we are using Heimdal])
4206 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <krb5.h>
4207 ]], [[ char *tmp = heimdal_version; ]])],
4208 [ AC_MSG_RESULT([yes])
4209 AC_DEFINE([HEIMDAL], [1],
4210 [Define this if you are using the Heimdal
4211 version of Kerberos V5]) ],
4212 [AC_MSG_RESULT([no])
4213 ])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004214 else
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004215 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11004216 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Tim Rice648f8762011-01-26 12:38:57 -08004217 AC_MSG_CHECKING([whether we are using Heimdal])
4218 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <krb5.h>
4219 ]], [[ char *tmp = heimdal_version; ]])],
4220 [ AC_MSG_RESULT([yes])
4221 AC_DEFINE([HEIMDAL])
Damien Miller41bccf72011-01-02 21:53:07 +11004222 K5LIBS="-lkrb5"
Damien Miller5561e0b2004-04-20 20:28:55 +10004223 K5LIBS="$K5LIBS -lcom_err -lasn1"
Tim Rice648f8762011-01-26 12:38:57 -08004224 AC_CHECK_LIB([roken], [net_write],
Damien Miller5561e0b2004-04-20 20:28:55 +10004225 [K5LIBS="$K5LIBS -lroken"])
Tim Rice648f8762011-01-26 12:38:57 -08004226 AC_CHECK_LIB([des], [des_cbc_encrypt],
Damien Miller41bccf72011-01-02 21:53:07 +11004227 [K5LIBS="$K5LIBS -ldes"])
Tim Rice648f8762011-01-26 12:38:57 -08004228 ], [ AC_MSG_RESULT([no])
Damien Millera8e06ce2003-11-21 23:48:55 +11004229 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
Tim Rice648f8762011-01-26 12:38:57 -08004230 ])
4231 AC_SEARCH_LIBS([dn_expand], [resolv])
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004232
Tim Rice648f8762011-01-26 12:38:57 -08004233 AC_CHECK_LIB([gssapi_krb5], [gss_init_sec_context],
4234 [ AC_DEFINE([GSSAPI])
Darren Tucker964de182013-02-22 10:39:59 +11004235 GSSLIBS="-lgssapi_krb5" ],
Tim Rice648f8762011-01-26 12:38:57 -08004236 [ AC_CHECK_LIB([gssapi], [gss_init_sec_context],
4237 [ AC_DEFINE([GSSAPI])
Darren Tucker964de182013-02-22 10:39:59 +11004238 GSSLIBS="-lgssapi" ],
Darren Tuckera2b5a4c2013-02-22 10:43:15 +11004239 [ AC_CHECK_LIB([gss], [gss_init_sec_context],
4240 [ AC_DEFINE([GSSAPI])
4241 GSSLIBS="-lgss" ],
4242 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]))
4243 ])
Darren Tucker964de182013-02-22 10:39:59 +11004244 ])
Tim Riceeae17cc2005-03-17 16:52:20 -08004245
Tim Rice648f8762011-01-26 12:38:57 -08004246 AC_CHECK_HEADER([gssapi.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004247 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11004248 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Tim Rice648f8762011-01-26 12:38:57 -08004249 AC_CHECK_HEADERS([gssapi.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004250 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11004251 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004252 ]
4253 )
4254
4255 oldCPP="$CPPFLAGS"
4256 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Tim Rice648f8762011-01-26 12:38:57 -08004257 AC_CHECK_HEADER([gssapi_krb5.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004258 [ CPPFLAGS="$oldCPP" ])
4259
Damien Millera8e06ce2003-11-21 23:48:55 +11004260 fi
Darren Tucker1d3ca582004-01-22 12:05:34 +11004261 if test ! -z "$need_dash_r" ; then
4262 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
4263 fi
4264 if test ! -z "$blibpath" ; then
4265 blibpath="$blibpath:${KRB5ROOT}/lib"
4266 fi
Tim Ricefd9e9e32005-09-12 17:36:10 -07004267
Tim Rice648f8762011-01-26 12:38:57 -08004268 AC_CHECK_HEADERS([gssapi.h gssapi/gssapi.h])
4269 AC_CHECK_HEADERS([gssapi_krb5.h gssapi/gssapi_krb5.h])
4270 AC_CHECK_HEADERS([gssapi_generic.h gssapi/gssapi_generic.h])
Tim Ricefd9e9e32005-09-12 17:36:10 -07004271
Tim Rice648f8762011-01-26 12:38:57 -08004272 AC_SEARCH_LIBS([k_hasafs], [kafs], [AC_DEFINE([USE_AFS], [1],
4273 [Define this if you want to use libkafs' AFS support])])
Darren Tucker03978c62013-02-25 11:24:44 +11004274
4275 AC_CHECK_DECLS([GSS_C_NT_HOSTBASED_SERVICE], [], [], [[
4276#ifdef HAVE_GSSAPI_H
4277# include <gssapi.h>
4278#elif defined(HAVE_GSSAPI_GSSAPI_H)
4279# include <gssapi/gssapi.h>
4280#endif
4281
4282#ifdef HAVE_GSSAPI_GENERIC_H
4283# include <gssapi_generic.h>
4284#elif defined(HAVE_GSSAPI_GSSAPI_GENERIC_H)
4285# include <gssapi/gssapi_generic.h>
4286#endif
4287 ]])
Darren Tuckerf3ab2c52013-08-04 21:48:41 +10004288 saved_LIBS="$LIBS"
4289 LIBS="$LIBS $K5LIBS"
4290 AC_CHECK_FUNCS([krb5_cc_new_unique krb5_get_error_message krb5_free_error_message])
4291 LIBS="$saved_LIBS"
4292
Darren Tucker0d27ed12004-02-24 10:37:33 +11004293 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11004294 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004295)
Darren Tucker964de182013-02-22 10:39:59 +11004296AC_SUBST([GSSLIBS])
4297AC_SUBST([K5LIBS])
Damien Millerc79bc0d2001-03-28 13:03:42 +10004298
Damien Millera22ba012000-03-02 23:09:20 +11004299# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11004300
Damien Millerf58c6722002-05-13 13:15:42 +10004301PRIVSEP_PATH=/var/empty
Tim Rice648f8762011-01-26 12:38:57 -08004302AC_ARG_WITH([privsep-path],
Tim Ricecbb90662002-07-08 19:17:10 -07004303 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10004304 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004305 if test -n "$withval" && test "x$withval" != "xno" && \
4306 test "x${withval}" != "xyes"; then
Damien Millerf58c6722002-05-13 13:15:42 +10004307 PRIVSEP_PATH=$withval
4308 fi
4309 ]
4310)
Tim Rice648f8762011-01-26 12:38:57 -08004311AC_SUBST([PRIVSEP_PATH])
Damien Millerf58c6722002-05-13 13:15:42 +10004312
Tim Rice648f8762011-01-26 12:38:57 -08004313AC_ARG_WITH([xauth],
Damien Millera22ba012000-03-02 23:09:20 +11004314 [ --with-xauth=PATH Specify path to xauth program ],
4315 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004316 if test -n "$withval" && test "x$withval" != "xno" && \
4317 test "x${withval}" != "xyes"; then
Damien Miller7b22d652000-06-18 14:07:04 +10004318 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11004319 fi
4320 ],
4321 [
Tim Ricee22be3b2002-07-17 19:20:07 -07004322 TestPath="$PATH"
4323 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
4324 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
4325 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
4326 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
Tim Rice648f8762011-01-26 12:38:57 -08004327 AC_PATH_PROG([xauth_path], [xauth], , [$TestPath])
Damien Milleredb82922000-06-20 13:25:52 +10004328 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11004329 xauth_path="/usr/openwin/bin/xauth"
4330 fi
4331 ]
4332)
4333
Damien Miller7d901272003-01-13 16:55:22 +11004334STRIP_OPT=-s
Tim Rice648f8762011-01-26 12:38:57 -08004335AC_ARG_ENABLE([strip],
Damien Miller7d901272003-01-13 16:55:22 +11004336 [ --disable-strip Disable calling strip(1) on install],
4337 [
4338 if test "x$enableval" = "xno" ; then
4339 STRIP_OPT=
4340 fi
4341 ]
4342)
Tim Rice648f8762011-01-26 12:38:57 -08004343AC_SUBST([STRIP_OPT])
Damien Miller7d901272003-01-13 16:55:22 +11004344
Damien Millera19cf472000-11-29 13:28:50 +11004345if test -z "$xauth_path" ; then
4346 XAUTH_PATH="undefined"
Tim Rice648f8762011-01-26 12:38:57 -08004347 AC_SUBST([XAUTH_PATH])
Damien Millera19cf472000-11-29 13:28:50 +11004348else
Tim Rice648f8762011-01-26 12:38:57 -08004349 AC_DEFINE_UNQUOTED([XAUTH_PATH], ["$xauth_path"],
Tim Rice7df8d392005-09-19 09:33:39 -07004350 [Define if xauth is found in your path])
Damien Millera19cf472000-11-29 13:28:50 +11004351 XAUTH_PATH=$xauth_path
Tim Rice648f8762011-01-26 12:38:57 -08004352 AC_SUBST([XAUTH_PATH])
Damien Millera22ba012000-03-02 23:09:20 +11004353fi
Damien Millera22ba012000-03-02 23:09:20 +11004354
Tim Rice90f42b02011-06-02 18:17:49 -07004355dnl # --with-maildir=/path/to/mail gets top priority.
4356dnl # if maildir is set in the platform case statement above we use that.
4357dnl # Otherwise we run a program to get the dir from system headers.
4358dnl # We first look for _PATH_MAILDIR then MAILDIR then _PATH_MAIL
4359dnl # If we find _PATH_MAILDIR we do nothing because that is what
4360dnl # session.c expects anyway. Otherwise we set to the value found
4361dnl # stripping any trailing slash. If for some strage reason our program
4362dnl # does not find what it needs, we default to /var/spool/mail.
4363# Check for mail directory
4364AC_ARG_WITH([maildir],
4365 [ --with-maildir=/path/to/mail Specify your system mail directory],
4366 [
4367 if test "X$withval" != X && test "x$withval" != xno && \
4368 test "x${withval}" != xyes; then
4369 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$withval"],
4370 [Set this to your mail directory if you do not have _PATH_MAILDIR])
4371 fi
4372 ],[
4373 if test "X$maildir" != "X"; then
4374 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$maildir"])
4375 else
4376 AC_MSG_CHECKING([Discovering system mail directory])
4377 AC_RUN_IFELSE(
4378 [AC_LANG_PROGRAM([[
4379#include <stdio.h>
4380#include <string.h>
4381#ifdef HAVE_PATHS_H
4382#include <paths.h>
4383#endif
4384#ifdef HAVE_MAILLOCK_H
4385#include <maillock.h>
4386#endif
4387#define DATA "conftest.maildir"
4388 ]], [[
4389 FILE *fd;
4390 int rc;
4391
4392 fd = fopen(DATA,"w");
4393 if(fd == NULL)
4394 exit(1);
4395
4396#if defined (_PATH_MAILDIR)
4397 if ((rc = fprintf(fd ,"_PATH_MAILDIR:%s\n", _PATH_MAILDIR)) <0)
4398 exit(1);
4399#elif defined (MAILDIR)
4400 if ((rc = fprintf(fd ,"MAILDIR:%s\n", MAILDIR)) <0)
4401 exit(1);
4402#elif defined (_PATH_MAIL)
4403 if ((rc = fprintf(fd ,"_PATH_MAIL:%s\n", _PATH_MAIL)) <0)
4404 exit(1);
4405#else
4406 exit (2);
4407#endif
4408
4409 exit(0);
4410 ]])],
4411 [
Tim Ricee1d93702016-05-31 11:13:22 -07004412 maildir_what=`awk -F: '{print $1}' conftest.maildir`
Tim Rice90f42b02011-06-02 18:17:49 -07004413 maildir=`awk -F: '{print $2}' conftest.maildir \
4414 | sed 's|/$||'`
4415 AC_MSG_RESULT([Using: $maildir from $maildir_what])
4416 if test "x$maildir_what" != "x_PATH_MAILDIR"; then
4417 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$maildir"])
4418 fi
4419 ],
4420 [
4421 if test "X$ac_status" = "X2";then
4422# our test program didn't find it. Default to /var/spool/mail
4423 AC_MSG_RESULT([Using: default value of /var/spool/mail])
4424 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["/var/spool/mail"])
4425 else
4426 AC_MSG_RESULT([*** not found ***])
4427 fi
4428 ],
4429 [
4430 AC_MSG_WARN([cross compiling: use --with-maildir=/path/to/mail])
4431 ]
4432 )
4433 fi
4434 ]
4435) # maildir
Damien Millera22ba012000-03-02 23:09:20 +11004436
Darren Tucker623d92f2004-09-12 22:36:15 +10004437if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10004438 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
4439 disable_ptmx_check=yes
4440fi
Damien Millera22ba012000-03-02 23:09:20 +11004441if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004442 if test "x$disable_ptmx_check" != "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004443 AC_CHECK_FILE(["/dev/ptmx"],
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004444 [
Tim Rice648f8762011-01-26 12:38:57 -08004445 AC_DEFINE_UNQUOTED([HAVE_DEV_PTMX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004446 [Define if you have /dev/ptmx])
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004447 have_dev_ptmx=1
4448 ]
4449 )
4450 fi
Damien Millera22ba012000-03-02 23:09:20 +11004451fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10004452
Darren Tucker623d92f2004-09-12 22:36:15 +10004453if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
Tim Rice648f8762011-01-26 12:38:57 -08004454 AC_CHECK_FILE(["/dev/ptc"],
Darren Tuckera0c2b392004-09-11 23:26:37 +10004455 [
Tim Rice648f8762011-01-26 12:38:57 -08004456 AC_DEFINE_UNQUOTED([HAVE_DEV_PTS_AND_PTC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004457 [Define if you have /dev/ptc])
Darren Tuckera0c2b392004-09-11 23:26:37 +10004458 have_dev_ptc=1
4459 ]
4460 )
4461else
4462 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
4463fi
Damien Miller204ad072000-03-02 23:56:12 +11004464
Damien Millera22ba012000-03-02 23:09:20 +11004465# Options from here on. Some of these are preset by platform above
Tim Rice648f8762011-01-26 12:38:57 -08004466AC_ARG_WITH([mantype],
Damien Miller897741e2001-04-16 10:41:46 +10004467 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11004468 [
Damien Miller897741e2001-04-16 10:41:46 +10004469 case "$withval" in
4470 man|cat|doc)
4471 MANTYPE=$withval
4472 ;;
4473 *)
Tim Rice648f8762011-01-26 12:38:57 -08004474 AC_MSG_ERROR([invalid man type: $withval])
Damien Miller897741e2001-04-16 10:41:46 +10004475 ;;
4476 esac
Damien Miller670a4b82000-01-22 13:53:11 +11004477 ]
4478)
Ben Lindstrombc709922001-04-18 18:04:21 +00004479if test -z "$MANTYPE"; then
Tim Ricee22be3b2002-07-17 19:20:07 -07004480 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
Tim Rice648f8762011-01-26 12:38:57 -08004481 AC_PATH_PROGS([NROFF], [nroff awf], [/bin/false], [$TestPath])
Ben Lindstrombc709922001-04-18 18:04:21 +00004482 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
4483 MANTYPE=doc
4484 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
4485 MANTYPE=man
4486 else
4487 MANTYPE=cat
4488 fi
4489fi
Tim Rice648f8762011-01-26 12:38:57 -08004490AC_SUBST([MANTYPE])
Ben Lindstrombc709922001-04-18 18:04:21 +00004491if test "$MANTYPE" = "doc"; then
4492 mansubdir=man;
4493else
4494 mansubdir=$MANTYPE;
4495fi
Tim Rice648f8762011-01-26 12:38:57 -08004496AC_SUBST([mansubdir])
Damien Miller8bdeee21999-12-30 15:50:54 +11004497
Damien Millera22ba012000-03-02 23:09:20 +11004498# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11004499MD5_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004500AC_ARG_WITH([md5-passwords],
Damien Millerdd1c7ba1999-11-19 15:53:20 +11004501 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11004502 [
Damien Millerb85dcad2000-03-11 11:37:00 +11004503 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004504 AC_DEFINE([HAVE_MD5_PASSWORDS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004505 [Define if you want to allow MD5 passwords])
Damien Millera8e06ce2003-11-21 23:48:55 +11004506 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11004507 fi
4508 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11004509)
4510
Damien Millera22ba012000-03-02 23:09:20 +11004511# Whether to disable shadow password support
Tim Rice648f8762011-01-26 12:38:57 -08004512AC_ARG_WITH([shadow],
Damien Miller76112de1999-12-21 11:18:08 +11004513 [ --without-shadow Disable shadow password support],
4514 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004515 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004516 AC_DEFINE([DISABLE_SHADOW])
Damien Miller1f335fb2000-06-26 11:31:33 +10004517 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11004518 fi
4519 ]
4520)
4521
Damien Miller1f335fb2000-06-26 11:31:33 +10004522if test -z "$disable_shadow" ; then
4523 AC_MSG_CHECKING([if the systems has expire shadow information])
Tim Rice648f8762011-01-26 12:38:57 -08004524 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller1f335fb2000-06-26 11:31:33 +10004525#include <sys/types.h>
4526#include <shadow.h>
Tim Rice648f8762011-01-26 12:38:57 -08004527struct spwd sp;
4528 ]], [[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ]])],
4529 [ sp_expire_available=yes ], [
4530 ])
Damien Miller1f335fb2000-06-26 11:31:33 +10004531
4532 if test "x$sp_expire_available" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004533 AC_MSG_RESULT([yes])
4534 AC_DEFINE([HAS_SHADOW_EXPIRE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004535 [Define if you want to use shadow password expire field])
Damien Miller1f335fb2000-06-26 11:31:33 +10004536 else
Tim Rice648f8762011-01-26 12:38:57 -08004537 AC_MSG_RESULT([no])
Damien Miller1f335fb2000-06-26 11:31:33 +10004538 fi
4539fi
4540
Damien Millera22ba012000-03-02 23:09:20 +11004541# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11004542if test ! -z "$IPADDR_IN_DISPLAY" ; then
4543 DISPLAY_HACK_MSG="yes"
Tim Rice648f8762011-01-26 12:38:57 -08004544 AC_DEFINE([IPADDR_IN_DISPLAY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004545 [Define if you need to use IP address
4546 instead of hostname in $DISPLAY])
Damien Miller9a947342000-08-30 10:03:33 +11004547else
Damien Millera8e06ce2003-11-21 23:48:55 +11004548 DISPLAY_HACK_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004549 AC_ARG_WITH([ipaddr-display],
Tim Rice6397eed2015-06-03 21:41:11 -07004550 [ --with-ipaddr-display Use ip address instead of hostname in $DISPLAY],
Damien Miller9a947342000-08-30 10:03:33 +11004551 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004552 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004553 AC_DEFINE([IPADDR_IN_DISPLAY])
Damien Millera8e06ce2003-11-21 23:48:55 +11004554 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11004555 fi
4556 ]
4557 )
4558fi
Damien Miller76112de1999-12-21 11:18:08 +11004559
Darren Tuckere1a790d2003-09-16 11:52:19 +10004560# check for /etc/default/login and use it if present.
Tim Rice648f8762011-01-26 12:38:57 -08004561AC_ARG_ENABLE([etc-default-login],
Darren Tucker1b6f2292005-02-11 16:11:49 +11004562 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
Darren Tucker2f9573d2005-02-10 22:28:54 +11004563 [ if test "x$enableval" = "xno"; then
4564 AC_MSG_NOTICE([/etc/default/login handling disabled])
4565 etc_default_login=no
4566 else
4567 etc_default_login=yes
4568 fi ],
Darren Tucker314d89e2005-10-17 23:29:23 +10004569 [ if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
4570 then
4571 AC_MSG_WARN([cross compiling: not checking /etc/default/login])
4572 etc_default_login=no
4573 else
4574 etc_default_login=yes
4575 fi ]
Darren Tucker2f9573d2005-02-10 22:28:54 +11004576)
Darren Tuckere1a790d2003-09-16 11:52:19 +10004577
Darren Tucker2f9573d2005-02-10 22:28:54 +11004578if test "x$etc_default_login" != "xno"; then
Tim Rice648f8762011-01-26 12:38:57 -08004579 AC_CHECK_FILE(["/etc/default/login"],
Darren Tucker2f9573d2005-02-10 22:28:54 +11004580 [ external_path_file=/etc/default/login ])
Darren Tucker314d89e2005-10-17 23:29:23 +10004581 if test "x$external_path_file" = "x/etc/default/login"; then
Tim Rice648f8762011-01-26 12:38:57 -08004582 AC_DEFINE([HAVE_ETC_DEFAULT_LOGIN], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004583 [Define if your system has /etc/default/login])
Darren Tuckera0c2b392004-09-11 23:26:37 +10004584 fi
Darren Tucker2f9573d2005-02-10 22:28:54 +11004585fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10004586
Tim Rice43a1c132002-04-17 21:19:14 -07004587dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
Tim Rice8bb561b2005-03-17 16:23:19 -08004588if test $ac_cv_func_login_getcapbool = "yes" && \
4589 test $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004590 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07004591fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10004592
Damien Millera22ba012000-03-02 23:09:20 +11004593# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11004594SERVER_PATH_MSG="(default)"
Tim Rice648f8762011-01-26 12:38:57 -08004595AC_ARG_WITH([default-path],
Tim Rice6397eed2015-06-03 21:41:11 -07004596 [ --with-default-path= Specify default $PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11004597 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10004598 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07004599 AC_MSG_WARN([
4600--with-default-path=PATH has no effect on this system.
4601Edit /etc/login.conf instead.])
Tim Riceeae17cc2005-03-17 16:52:20 -08004602 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07004603 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004604 AC_MSG_WARN([
4605--with-default-path=PATH will only be used if PATH is not defined in
4606$external_path_file .])
4607 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08004608 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11004609 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11004610 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08004611 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10004612 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
4613 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07004614 else
Tim Riceb925b4b2003-09-15 22:40:49 -07004615 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004616 AC_MSG_WARN([
4617If PATH is defined in $external_path_file, ensure the path to scp is included,
4618otherwise scp will not work.])
4619 fi
Darren Tucker314d89e2005-10-17 23:29:23 +10004620 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08004621 [AC_LANG_PROGRAM([[
Tim Rice59ea0a02001-03-10 13:50:45 -08004622/* find out what STDPATH is */
4623#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08004624#ifdef HAVE_PATHS_H
4625# include <paths.h>
4626#endif
4627#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08004628# ifdef _PATH_USERPATH /* Irix */
4629# define _PATH_STDPATH _PATH_USERPATH
4630# else
4631# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
4632# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08004633#endif
4634#include <sys/types.h>
4635#include <sys/stat.h>
4636#include <fcntl.h>
4637#define DATA "conftest.stdpath"
Tim Rice648f8762011-01-26 12:38:57 -08004638 ]], [[
Tim Rice59ea0a02001-03-10 13:50:45 -08004639 FILE *fd;
4640 int rc;
Tim Riceeae17cc2005-03-17 16:52:20 -08004641
Tim Rice59ea0a02001-03-10 13:50:45 -08004642 fd = fopen(DATA,"w");
4643 if(fd == NULL)
4644 exit(1);
Tim Riceeae17cc2005-03-17 16:52:20 -08004645
Tim Rice59ea0a02001-03-10 13:50:45 -08004646 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
4647 exit(1);
4648
4649 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10004650 ]])],
4651 [ user_path=`cat conftest.stdpath` ],
Tim Rice59ea0a02001-03-10 13:50:45 -08004652 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
4653 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
4654 )
4655# make sure $bindir is in USER_PATH so scp will work
Damien Miller77eab7b2012-07-06 11:49:28 +10004656 t_bindir="${bindir}"
4657 while echo "${t_bindir}" | egrep '\$\{|NONE/' >/dev/null 2>&1; do
4658 t_bindir=`eval echo ${t_bindir}`
4659 case $t_bindir in
4660 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
4661 esac
4662 case $t_bindir in
4663 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
4664 esac
4665 done
Tim Rice59ea0a02001-03-10 13:50:45 -08004666 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
4667 if test $? -ne 0 ; then
4668 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
4669 if test $? -ne 0 ; then
4670 user_path=$user_path:$t_bindir
Tim Rice648f8762011-01-26 12:38:57 -08004671 AC_MSG_RESULT([Adding $t_bindir to USER_PATH so scp will work])
Tim Rice59ea0a02001-03-10 13:50:45 -08004672 fi
4673 fi
Tim Rice43a1c132002-04-17 21:19:14 -07004674 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11004675)
Darren Tuckere1a790d2003-09-16 11:52:19 +10004676if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004677 AC_DEFINE_UNQUOTED([USER_PATH], ["$user_path"], [Specify default $PATH])
4678 AC_SUBST([user_path])
Tim Rice43a1c132002-04-17 21:19:14 -07004679fi
Damien Miller5a3e6831999-12-27 09:48:56 +11004680
Damien Millera18bbd32002-05-13 10:48:57 +10004681# Set superuser path separately to user path
Tim Rice648f8762011-01-26 12:38:57 -08004682AC_ARG_WITH([superuser-path],
Damien Millera18bbd32002-05-13 10:48:57 +10004683 [ --with-superuser-path= Specify different path for super-user],
4684 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004685 if test -n "$withval" && test "x$withval" != "xno" && \
4686 test "x${withval}" != "xyes"; then
Tim Rice648f8762011-01-26 12:38:57 -08004687 AC_DEFINE_UNQUOTED([SUPERUSER_PATH], ["$withval"],
Tim Rice7df8d392005-09-19 09:33:39 -07004688 [Define if you want a different $PATH
4689 for the superuser])
Damien Millera18bbd32002-05-13 10:48:57 +10004690 superuser_path=$withval
4691 fi
4692 ]
4693)
4694
4695
Damien Miller61e50f12000-05-08 20:49:37 +10004696AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11004697IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11004698AC_ARG_WITH(4in6,
4699 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
4700 [
4701 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004702 AC_MSG_RESULT([yes])
4703 AC_DEFINE([IPV4_IN_IPV6], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004704 [Detect IPv4 in IPv6 mapped addresses
4705 and treat as IPv4])
Damien Millera8e06ce2003-11-21 23:48:55 +11004706 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11004707 else
Tim Rice648f8762011-01-26 12:38:57 -08004708 AC_MSG_RESULT([no])
Damien Miller7bcb0892000-03-11 20:45:40 +11004709 fi
Tim Rice648f8762011-01-26 12:38:57 -08004710 ], [
Damien Miller7bcb0892000-03-11 20:45:40 +11004711 if test "x$inet6_default_4in6" = "xyes"; then
4712 AC_MSG_RESULT([yes (default)])
Tim Rice648f8762011-01-26 12:38:57 -08004713 AC_DEFINE([IPV4_IN_IPV6])
Damien Millera8e06ce2003-11-21 23:48:55 +11004714 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11004715 else
4716 AC_MSG_RESULT([no (default)])
4717 fi
4718 ]
4719)
4720
Damien Miller60396b02001-02-18 17:01:00 +11004721# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11004722BSD_AUTH_MSG=no
Tim Rice648f8762011-01-26 12:38:57 -08004723AC_ARG_WITH([bsd-auth],
Damien Miller60396b02001-02-18 17:01:00 +11004724 [ --with-bsd-auth Enable BSD auth support],
4725 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004726 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004727 AC_DEFINE([BSD_AUTH], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004728 [Define if you have BSD auth support])
Damien Miller6c21c512002-01-22 21:57:53 +11004729 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11004730 fi
4731 ]
4732)
4733
Damien Millera22ba012000-03-02 23:09:20 +11004734# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11004735piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11004736# make sure the directory exists
Tim Riceeae17cc2005-03-17 16:52:20 -08004737if test ! -d $piddir ; then
Damien Miller78315eb2000-09-29 23:01:36 +11004738 piddir=`eval echo ${sysconfdir}`
4739 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11004740 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11004741 esac
4742fi
4743
Tim Rice648f8762011-01-26 12:38:57 -08004744AC_ARG_WITH([pid-dir],
Tim Rice88f2ab52002-03-17 12:17:34 -08004745 [ --with-pid-dir=PATH Specify location of ssh.pid file],
4746 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004747 if test -n "$withval" && test "x$withval" != "xno" && \
4748 test "x${withval}" != "xyes"; then
Tim Rice88f2ab52002-03-17 12:17:34 -08004749 piddir=$withval
Tim Riceeae17cc2005-03-17 16:52:20 -08004750 if test ! -d $piddir ; then
Tim Rice88f2ab52002-03-17 12:17:34 -08004751 AC_MSG_WARN([** no $piddir directory on this system **])
4752 fi
4753 fi
4754 ]
4755)
4756
Tim Ricee1d93702016-05-31 11:13:22 -07004757AC_DEFINE_UNQUOTED([_PATH_SSH_PIDDIR], ["$piddir"],
Tim Rice648f8762011-01-26 12:38:57 -08004758 [Specify location of ssh.pid])
4759AC_SUBST([piddir])
Damien Miller5eed6a22000-01-16 12:05:18 +11004760
andre2ff7b5d2000-06-03 14:57:40 +00004761dnl allow user to disable some login recording features
Tim Rice648f8762011-01-26 12:38:57 -08004762AC_ARG_ENABLE([lastlog],
andre43ca7e22000-06-19 08:23:46 +00004763 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004764 [
4765 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004766 AC_DEFINE([DISABLE_LASTLOG])
Darren Tuckera3020db2003-06-28 12:54:33 +10004767 fi
4768 ]
andre2ff7b5d2000-06-03 14:57:40 +00004769)
Tim Rice648f8762011-01-26 12:38:57 -08004770AC_ARG_ENABLE([utmp],
andre43ca7e22000-06-19 08:23:46 +00004771 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004772 [
4773 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004774 AC_DEFINE([DISABLE_UTMP])
Darren Tuckera3020db2003-06-28 12:54:33 +10004775 fi
4776 ]
andre2ff7b5d2000-06-03 14:57:40 +00004777)
Tim Rice648f8762011-01-26 12:38:57 -08004778AC_ARG_ENABLE([utmpx],
andre43ca7e22000-06-19 08:23:46 +00004779 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004780 [
4781 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004782 AC_DEFINE([DISABLE_UTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004783 [Define if you don't want to use utmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004784 fi
4785 ]
andre2ff7b5d2000-06-03 14:57:40 +00004786)
Tim Rice648f8762011-01-26 12:38:57 -08004787AC_ARG_ENABLE([wtmp],
andre43ca7e22000-06-19 08:23:46 +00004788 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004789 [
4790 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004791 AC_DEFINE([DISABLE_WTMP])
Darren Tuckera3020db2003-06-28 12:54:33 +10004792 fi
4793 ]
andre2ff7b5d2000-06-03 14:57:40 +00004794)
Tim Rice648f8762011-01-26 12:38:57 -08004795AC_ARG_ENABLE([wtmpx],
andre43ca7e22000-06-19 08:23:46 +00004796 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004797 [
4798 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004799 AC_DEFINE([DISABLE_WTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004800 [Define if you don't want to use wtmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004801 fi
4802 ]
andre2ff7b5d2000-06-03 14:57:40 +00004803)
Tim Rice648f8762011-01-26 12:38:57 -08004804AC_ARG_ENABLE([libutil],
andre43ca7e22000-06-19 08:23:46 +00004805 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004806 [
4807 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004808 AC_DEFINE([DISABLE_LOGIN])
Darren Tuckera3020db2003-06-28 12:54:33 +10004809 fi
4810 ]
andre2ff7b5d2000-06-03 14:57:40 +00004811)
Tim Rice648f8762011-01-26 12:38:57 -08004812AC_ARG_ENABLE([pututline],
andre43ca7e22000-06-19 08:23:46 +00004813 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004814 [
4815 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004816 AC_DEFINE([DISABLE_PUTUTLINE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004817 [Define if you don't want to use pututline()
4818 etc. to write [uw]tmp])
Darren Tuckera3020db2003-06-28 12:54:33 +10004819 fi
4820 ]
andre2ff7b5d2000-06-03 14:57:40 +00004821)
Tim Rice648f8762011-01-26 12:38:57 -08004822AC_ARG_ENABLE([pututxline],
andre43ca7e22000-06-19 08:23:46 +00004823 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004824 [
4825 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004826 AC_DEFINE([DISABLE_PUTUTXLINE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004827 [Define if you don't want to use pututxline()
4828 etc. to write [uw]tmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004829 fi
4830 ]
andre2ff7b5d2000-06-03 14:57:40 +00004831)
Tim Rice648f8762011-01-26 12:38:57 -08004832AC_ARG_WITH([lastlog],
andre43ca7e22000-06-19 08:23:46 +00004833 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11004834 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004835 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004836 AC_DEFINE([DISABLE_LASTLOG])
Tim Rice35cc69d2005-03-17 16:44:25 -08004837 elif test -n "$withval" && test "x${withval}" != "xyes"; then
Damien Miller709528a2001-01-31 09:57:55 +11004838 conf_lastlog_location=$withval
4839 fi
4840 ]
4841)
andre2ff7b5d2000-06-03 14:57:40 +00004842
4843dnl lastlog, [uw]tmpx? detection
4844dnl NOTE: set the paths in the platform section to avoid the
4845dnl need for command-line parameters
4846dnl lastlog and [uw]tmp are subject to a file search if all else fails
4847
4848dnl lastlog detection
4849dnl NOTE: the code itself will detect if lastlog is a directory
4850AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08004851AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00004852#include <sys/types.h>
4853#include <utmp.h>
4854#ifdef HAVE_LASTLOG_H
4855# include <lastlog.h>
4856#endif
Damien Miller2994e082000-06-04 15:51:47 +10004857#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004858# include <paths.h>
4859#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00004860#ifdef HAVE_LOGIN_H
4861# include <login.h>
4862#endif
Tim Rice648f8762011-01-26 12:38:57 -08004863 ]], [[ char *lastlog = LASTLOG_FILE; ]])],
4864 [ AC_MSG_RESULT([yes]) ],
4865 [
4866 AC_MSG_RESULT([no])
Damien Miller2994e082000-06-04 15:51:47 +10004867 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
Tim Rice648f8762011-01-26 12:38:57 -08004868 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller2994e082000-06-04 15:51:47 +10004869#include <sys/types.h>
4870#include <utmp.h>
4871#ifdef HAVE_LASTLOG_H
4872# include <lastlog.h>
4873#endif
4874#ifdef HAVE_PATHS_H
4875# include <paths.h>
4876#endif
Tim Rice648f8762011-01-26 12:38:57 -08004877 ]], [[ char *lastlog = _PATH_LASTLOG; ]])],
4878 [ AC_MSG_RESULT([yes]) ],
Damien Miller2994e082000-06-04 15:51:47 +10004879 [
Tim Rice648f8762011-01-26 12:38:57 -08004880 AC_MSG_RESULT([no])
Damien Miller2994e082000-06-04 15:51:47 +10004881 system_lastlog_path=no
4882 ])
Tim Rice648f8762011-01-26 12:38:57 -08004883])
Damien Miller2994e082000-06-04 15:51:47 +10004884
andre2ff7b5d2000-06-03 14:57:40 +00004885if test -z "$conf_lastlog_location"; then
4886 if test x"$system_lastlog_path" = x"no" ; then
4887 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10004888 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00004889 conf_lastlog_location=$f
4890 fi
4891 done
4892 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00004893 AC_MSG_WARN([** Cannot find lastlog **])
4894 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00004895 fi
4896 fi
4897fi
4898
4899if test -n "$conf_lastlog_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08004900 AC_DEFINE_UNQUOTED([CONF_LASTLOG_FILE], ["$conf_lastlog_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07004901 [Define if you want to specify the path to your lastlog file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004902fi
andre2ff7b5d2000-06-03 14:57:40 +00004903
4904dnl utmp detection
4905AC_MSG_CHECKING([if your system defines UTMP_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08004906AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00004907#include <sys/types.h>
4908#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10004909#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004910# include <paths.h>
4911#endif
Tim Rice648f8762011-01-26 12:38:57 -08004912 ]], [[ char *utmp = UTMP_FILE; ]])],
4913 [ AC_MSG_RESULT([yes]) ],
4914 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07004915 system_utmp_path=no
Tim Rice648f8762011-01-26 12:38:57 -08004916])
andre2ff7b5d2000-06-03 14:57:40 +00004917if test -z "$conf_utmp_location"; then
4918 if test x"$system_utmp_path" = x"no" ; then
4919 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
4920 if test -f $f ; then
4921 conf_utmp_location=$f
4922 fi
4923 done
4924 if test -z "$conf_utmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08004925 AC_DEFINE([DISABLE_UTMP])
andre2ff7b5d2000-06-03 14:57:40 +00004926 fi
4927 fi
4928fi
4929if test -n "$conf_utmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08004930 AC_DEFINE_UNQUOTED([CONF_UTMP_FILE], ["$conf_utmp_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07004931 [Define if you want to specify the path to your utmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004932fi
andre2ff7b5d2000-06-03 14:57:40 +00004933
4934dnl wtmp detection
4935AC_MSG_CHECKING([if your system defines WTMP_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08004936AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00004937#include <sys/types.h>
4938#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10004939#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004940# include <paths.h>
4941#endif
Tim Rice648f8762011-01-26 12:38:57 -08004942 ]], [[ char *wtmp = WTMP_FILE; ]])],
4943 [ AC_MSG_RESULT([yes]) ],
4944 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07004945 system_wtmp_path=no
Tim Rice648f8762011-01-26 12:38:57 -08004946])
andre2ff7b5d2000-06-03 14:57:40 +00004947if test -z "$conf_wtmp_location"; then
4948 if test x"$system_wtmp_path" = x"no" ; then
4949 for f in /usr/adm/wtmp /var/log/wtmp; do
4950 if test -f $f ; then
4951 conf_wtmp_location=$f
4952 fi
4953 done
4954 if test -z "$conf_wtmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08004955 AC_DEFINE([DISABLE_WTMP])
andre2ff7b5d2000-06-03 14:57:40 +00004956 fi
4957 fi
4958fi
4959if test -n "$conf_wtmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08004960 AC_DEFINE_UNQUOTED([CONF_WTMP_FILE], ["$conf_wtmp_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07004961 [Define if you want to specify the path to your wtmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004962fi
andre2ff7b5d2000-06-03 14:57:40 +00004963
andre2ff7b5d2000-06-03 14:57:40 +00004964dnl wtmpx detection
4965AC_MSG_CHECKING([if your system defines WTMPX_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08004966AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00004967#include <sys/types.h>
4968#include <utmp.h>
4969#ifdef HAVE_UTMPX_H
4970#include <utmpx.h>
4971#endif
Damien Miller2994e082000-06-04 15:51:47 +10004972#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004973# include <paths.h>
4974#endif
Tim Rice648f8762011-01-26 12:38:57 -08004975 ]], [[ char *wtmpx = WTMPX_FILE; ]])],
4976 [ AC_MSG_RESULT([yes]) ],
4977 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07004978 system_wtmpx_path=no
Tim Rice648f8762011-01-26 12:38:57 -08004979])
andre2ff7b5d2000-06-03 14:57:40 +00004980if test -z "$conf_wtmpx_location"; then
4981 if test x"$system_wtmpx_path" = x"no" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004982 AC_DEFINE([DISABLE_WTMPX])
andre2ff7b5d2000-06-03 14:57:40 +00004983 fi
4984else
Tim Rice648f8762011-01-26 12:38:57 -08004985 AC_DEFINE_UNQUOTED([CONF_WTMPX_FILE], ["$conf_wtmpx_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07004986 [Define if you want to specify the path to your wtmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08004987fi
andre2ff7b5d2000-06-03 14:57:40 +00004988
Damien Miller4018c192000-04-30 09:30:44 +10004989
Damien Miller29ea30d2000-03-17 10:54:15 +11004990if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10004991 LDFLAGS="$LDFLAGS $blibflags$blibpath"
4992 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11004993fi
4994
Damien Millera2438bb2013-03-15 10:23:07 +11004995AC_CHECK_MEMBER([struct lastlog.ll_line], [], [
Tim Riceaa86c392013-03-16 20:55:46 -07004996 if test x$SKIP_DISABLE_LASTLOG_DEFINE != "xyes" ; then
Damien Millera2438bb2013-03-15 10:23:07 +11004997 AC_DEFINE([DISABLE_LASTLOG])
Tim Riceaa86c392013-03-16 20:55:46 -07004998 fi
Damien Millera2438bb2013-03-15 10:23:07 +11004999 ], [
5000#ifdef HAVE_SYS_TYPES_H
5001#include <sys/types.h>
5002#endif
5003#ifdef HAVE_UTMP_H
5004#include <utmp.h>
5005#endif
5006#ifdef HAVE_UTMPX_H
5007#include <utmpx.h>
5008#endif
5009#ifdef HAVE_LASTLOG_H
5010#include <lastlog.h>
5011#endif
5012 ])
5013
5014AC_CHECK_MEMBER([struct utmp.ut_line], [], [
5015 AC_DEFINE([DISABLE_UTMP])
5016 AC_DEFINE([DISABLE_WTMP])
5017 ], [
5018#ifdef HAVE_SYS_TYPES_H
5019#include <sys/types.h>
5020#endif
5021#ifdef HAVE_UTMP_H
5022#include <utmp.h>
5023#endif
5024#ifdef HAVE_UTMPX_H
5025#include <utmpx.h>
5026#endif
5027#ifdef HAVE_LASTLOG_H
5028#include <lastlog.h>
5029#endif
5030 ])
5031
Darren Tucker7da23cb2005-08-03 00:20:15 +10005032dnl Adding -Werror to CFLAGS early prevents configure tests from running.
5033dnl Add now.
5034CFLAGS="$CFLAGS $werror_flags"
5035
Darren Tucker627337d2010-04-10 22:58:01 +10005036if test "x$ac_cv_func_getaddrinfo" != "xyes" ; then
5037 TEST_SSH_IPV6=no
5038else
5039 TEST_SSH_IPV6=yes
5040fi
Tim Rice648f8762011-01-26 12:38:57 -08005041AC_CHECK_DECL([BROKEN_GETADDRINFO], [TEST_SSH_IPV6=no])
5042AC_SUBST([TEST_SSH_IPV6], [$TEST_SSH_IPV6])
Darren Tucker47b8c992016-12-08 15:48:34 +11005043AC_SUBST([TEST_SSH_UTF8], [$TEST_SSH_UTF8])
Darren Tucker882abfd2013-11-09 00:17:41 +11005044AC_SUBST([TEST_MALLOC_OPTIONS], [$TEST_MALLOC_OPTIONS])
Darren Tucker6d8bd572013-06-11 11:26:10 +10005045AC_SUBST([UNSUPPORTED_ALGORITHMS], [$unsupported_algorithms])
Darren Tucker5d376902008-06-11 04:15:05 +10005046
Damien Millerbac2d8a2000-09-05 16:13:06 +11005047AC_EXEEXT
Damien Miller223897a2006-09-12 21:54:10 +10005048AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openssh.xml \
5049 openbsd-compat/Makefile openbsd-compat/regress/Makefile \
Damien Millerf22019b2011-05-05 13:48:37 +10005050 survey.sh])
Tim Rice13aae5e2001-10-21 17:53:58 -07005051AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10005052
Damien Miller7b22d652000-06-18 14:07:04 +10005053# Print summary of options
5054
Damien Miller7b22d652000-06-18 14:07:04 +10005055# Someone please show me a better way :)
5056A=`eval echo ${prefix}` ; A=`eval echo ${A}`
5057B=`eval echo ${bindir}` ; B=`eval echo ${B}`
5058C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
5059D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00005060E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00005061F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10005062G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10005063H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
5064I=`eval echo ${user_path}` ; I=`eval echo ${I}`
5065J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10005066
5067echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00005068echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10005069echo " User binaries: $B"
5070echo " System binaries: $C"
5071echo " Configuration files: $D"
5072echo " Askpass program: $E"
5073echo " Manual pages: $F"
5074echo " PID file: $G"
5075echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10005076if test "x$external_path_file" = "x/etc/login.conf" ; then
5077echo " At runtime, sshd will use the path defined in $external_path_file"
5078echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07005079else
Damien Millerf58c6722002-05-13 13:15:42 +10005080echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07005081 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10005082echo " (If PATH is set in $external_path_file it will be used instead. If"
5083echo " used, ensure the path to scp is present, otherwise scp will not work.)"
5084 fi
Tim Rice43a1c132002-04-17 21:19:14 -07005085fi
Damien Millera18bbd32002-05-13 10:48:57 +10005086if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10005087echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10005088fi
Damien Millerf58c6722002-05-13 13:15:42 +10005089echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10005090echo " PAM support: $PAM_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10005091echo " OSF SIA support: $SIA_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005092echo " KerberosV support: $KRB5_MSG"
Damien Miller73b42d22006-04-22 21:26:08 +10005093echo " SELinux support: $SELINUX_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005094echo " Smartcard support: $SCARD_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005095echo " S/KEY support: $SKEY_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005096echo " MD5 password support: $MD5_MSG"
Darren Tucker16bcc1c2004-11-07 20:14:34 +11005097echo " libedit support: $LIBEDIT_MSG"
Damien Miller523db852017-02-03 16:01:22 +11005098echo " libldns support: $LDNS_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10005099echo " Solaris process contract support: $SPC_MSG"
Darren Tucker97528352010-11-05 12:03:05 +11005100echo " Solaris project support: $SP_MSG"
Damien Miller4626cba2016-01-08 14:24:56 +11005101echo " Solaris privilege support: $SPP_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10005102echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005103echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
5104echo " BSD Auth support: $BSD_AUTH_MSG"
5105echo " Random number source: $RAND_MSG"
Damien Miller69ff1df2011-06-23 08:30:03 +10005106echo " Privsep sandbox style: $SANDBOX_STYLE"
Damien Miller60396b02001-02-18 17:01:00 +11005107
Damien Miller7b22d652000-06-18 14:07:04 +10005108echo ""
5109
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00005110echo " Host: ${host}"
5111echo " Compiler: ${CC}"
5112echo " Compiler flags: ${CFLAGS}"
5113echo "Preprocessor flags: ${CPPFLAGS}"
5114echo " Linker flags: ${LDFLAGS}"
Darren Tucker20e9f972007-03-25 18:26:01 +10005115echo " Libraries: ${LIBS}"
5116if test ! -z "${SSHDLIBS}"; then
5117echo " +for sshd: ${SSHDLIBS}"
5118fi
Damien Miller71adf122011-01-25 12:16:15 +11005119if test ! -z "${SSHLIBS}"; then
5120echo " +for ssh: ${SSHLIBS}"
5121fi
Damien Miller7b22d652000-06-18 14:07:04 +10005122
5123echo ""
5124
Tim Rice6f1f7582004-05-30 21:38:51 -07005125if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
Darren Tuckercf59d312004-08-29 21:18:09 +10005126 echo "SVR4 style packages are supported with \"make package\""
5127 echo ""
Tim Rice6f1f7582004-05-30 21:38:51 -07005128fi
5129
Damien Miller82cf0ce2000-12-20 13:34:48 +11005130if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11005131 echo "PAM is enabled. You may need to install a PAM control file "
5132 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11005133 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11005134 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11005135 echo ""
5136fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00005137
Damien Millerb4097182004-05-23 14:09:40 +10005138if test ! -z "$NO_PEERCHECK" ; then
Darren Tucker164aa302007-03-21 21:39:57 +11005139 echo "WARNING: the operating system that you are using does not"
5140 echo "appear to support getpeereid(), getpeerucred() or the"
5141 echo "SO_PEERCRED getsockopt() option. These facilities are used to"
5142 echo "enforce security checks to prevent unauthorised connections to"
5143 echo "ssh-agent. Their absence increases the risk that a malicious"
5144 echo "user can connect to your agent."
Damien Millerb4097182004-05-23 14:09:40 +10005145 echo ""
5146fi
5147
Darren Tuckerd9f88912005-02-20 21:01:48 +11005148if test "$AUDIT_MODULE" = "bsm" ; then
5149 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
5150 echo "See the Solaris section in README.platform for details."
5151fi