Damien Miller | 3d673d1 | 2014-08-27 06:32:01 +1000 | [diff] [blame] | 1 | # $Id: configure.ac,v 1.583 2014/08/26 20:32:01 djm Exp $ |
Damien Miller | 4fefe24 | 2004-03-11 14:20:10 +1100 | [diff] [blame] | 2 | # |
| 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 Miller | e9cf357 | 2001-02-09 12:55:35 +1100 | [diff] [blame] | 16 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 17 | AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) |
Damien Miller | 3d673d1 | 2014-08-27 06:32:01 +1000 | [diff] [blame] | 18 | AC_REVISION($Revision: 1.583 $) |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 20 | AC_LANG([C]) |
Damien Miller | 7f6ea02 | 1999-10-28 13:25:17 +1000 | [diff] [blame] | 21 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 22 | AC_CONFIG_HEADER([config.h]) |
Damien Miller | 856799b | 2000-03-15 21:18:10 +1100 | [diff] [blame] | 23 | AC_PROG_CC |
Damien Miller | 76112de | 1999-12-21 11:18:08 +1100 | [diff] [blame] | 24 | AC_CANONICAL_HOST |
Damien Miller | 4df5c76 | 2001-02-28 08:14:22 +1100 | [diff] [blame] | 25 | AC_C_BIGENDIAN |
Damien Miller | 7f6ea02 | 1999-10-28 13:25:17 +1000 | [diff] [blame] | 26 | |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 27 | # Checks for programs. |
Darren Tucker | 167bd9c | 2003-09-07 12:34:54 +1000 | [diff] [blame] | 28 | AC_PROG_AWK |
Damien Miller | ab18c41 | 1999-11-11 10:40:23 +1100 | [diff] [blame] | 29 | AC_PROG_CPP |
Damien Miller | 7f6ea02 | 1999-10-28 13:25:17 +1000 | [diff] [blame] | 30 | AC_PROG_RANLIB |
Damien Miller | d8087f6 | 1999-11-25 12:31:26 +1100 | [diff] [blame] | 31 | AC_PROG_INSTALL |
Tim Rice | fd80ddc | 2006-02-02 19:11:56 -0800 | [diff] [blame] | 32 | AC_PROG_EGREP |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 33 | AC_PATH_PROG([AR], [ar]) |
| 34 | AC_PATH_PROG([CAT], [cat]) |
| 35 | AC_PATH_PROG([KILL], [kill]) |
| 36 | AC_PATH_PROGS([PERL], [perl5 perl]) |
| 37 | AC_PATH_PROG([SED], [sed]) |
| 38 | AC_SUBST([PERL]) |
| 39 | AC_PATH_PROG([ENT], [ent]) |
| 40 | AC_SUBST([ENT]) |
| 41 | AC_PATH_PROG([TEST_MINUS_S_SH], [bash]) |
| 42 | AC_PATH_PROG([TEST_MINUS_S_SH], [ksh]) |
| 43 | AC_PATH_PROG([TEST_MINUS_S_SH], [sh]) |
| 44 | AC_PATH_PROG([SH], [sh]) |
| 45 | AC_PATH_PROG([GROFF], [groff]) |
| 46 | AC_PATH_PROG([NROFF], [nroff]) |
| 47 | AC_PATH_PROG([MANDOC], [mandoc]) |
| 48 | AC_SUBST([TEST_SHELL], [sh]) |
Damien Miller | 2e1b082 | 1999-12-25 10:11:29 +1100 | [diff] [blame] | 49 | |
Damien Miller | 30a69e7 | 2011-01-04 08:16:27 +1100 | [diff] [blame] | 50 | dnl select manpage formatter |
| 51 | if test "x$MANDOC" != "x" ; then |
| 52 | MANFMT="$MANDOC" |
| 53 | elif test "x$NROFF" != "x" ; then |
| 54 | MANFMT="$NROFF -mandoc" |
| 55 | elif test "x$GROFF" != "x" ; then |
| 56 | MANFMT="$GROFF -mandoc -Tascii" |
| 57 | else |
| 58 | AC_MSG_WARN([no manpage formatted found]) |
| 59 | MANFMT="false" |
| 60 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 61 | AC_SUBST([MANFMT]) |
Damien Miller | 30a69e7 | 2011-01-04 08:16:27 +1100 | [diff] [blame] | 62 | |
Tim Rice | 6f1f758 | 2004-05-30 21:38:51 -0700 | [diff] [blame] | 63 | dnl for buildpkg.sh |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 64 | AC_PATH_PROG([PATH_GROUPADD_PROG], [groupadd], [groupadd], |
Tim Rice | 6f1f758 | 2004-05-30 21:38:51 -0700 | [diff] [blame] | 65 | [/usr/sbin${PATH_SEPARATOR}/etc]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 66 | AC_PATH_PROG([PATH_USERADD_PROG], [useradd], [useradd], |
Tim Rice | 6f1f758 | 2004-05-30 21:38:51 -0700 | [diff] [blame] | 67 | [/usr/sbin${PATH_SEPARATOR}/etc]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 68 | AC_CHECK_PROG([MAKE_PACKAGE_SUPPORTED], [pkgmk], [yes], [no]) |
Darren Tucker | fbea764 | 2006-01-30 00:22:39 +1100 | [diff] [blame] | 69 | if test -x /sbin/sh; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 70 | AC_SUBST([STARTUP_SCRIPT_SHELL], [/sbin/sh]) |
Darren Tucker | fbea764 | 2006-01-30 00:22:39 +1100 | [diff] [blame] | 71 | else |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 72 | AC_SUBST([STARTUP_SCRIPT_SHELL], [/bin/sh]) |
Darren Tucker | fbea764 | 2006-01-30 00:22:39 +1100 | [diff] [blame] | 73 | fi |
Tim Rice | 6f1f758 | 2004-05-30 21:38:51 -0700 | [diff] [blame] | 74 | |
Damien Miller | e8bb450 | 2001-09-25 16:39:35 +1000 | [diff] [blame] | 75 | # System features |
| 76 | AC_SYS_LARGEFILE |
| 77 | |
Damien Miller | 3f62aba | 2000-11-29 11:56:35 +1100 | [diff] [blame] | 78 | if test -z "$AR" ; then |
| 79 | AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***]) |
| 80 | fi |
| 81 | |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 82 | # Use LOGIN_PROGRAM from environment if possible |
| 83 | if test ! -z "$LOGIN_PROGRAM" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 84 | AC_DEFINE_UNQUOTED([LOGIN_PROGRAM_FALLBACK], ["$LOGIN_PROGRAM"], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 85 | [If your header files don't define LOGIN_PROGRAM, |
| 86 | then use this (detected) from environment and PATH]) |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 87 | else |
| 88 | # Search for login |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 89 | AC_PATH_PROG([LOGIN_PROGRAM_FALLBACK], [login]) |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 90 | if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 91 | AC_DEFINE_UNQUOTED([LOGIN_PROGRAM_FALLBACK], ["$LOGIN_PROGRAM_FALLBACK"]) |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 92 | fi |
| 93 | fi |
| 94 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 95 | AC_PATH_PROG([PATH_PASSWD_PROG], [passwd]) |
Darren Tucker | 23bc8d0 | 2004-02-06 16:24:31 +1100 | [diff] [blame] | 96 | if test ! -z "$PATH_PASSWD_PROG" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 97 | AC_DEFINE_UNQUOTED([_PATH_PASSWD_PROG], ["$PATH_PASSWD_PROG"], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 98 | [Full path of your "passwd" program]) |
Darren Tucker | 23bc8d0 | 2004-02-06 16:24:31 +1100 | [diff] [blame] | 99 | fi |
| 100 | |
Damien Miller | 166bd44 | 2000-03-16 10:48:25 +1100 | [diff] [blame] | 101 | if test -z "$LD" ; then |
| 102 | LD=$CC |
| 103 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 104 | AC_SUBST([LD]) |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 105 | |
Damien Miller | 166bd44 | 2000-03-16 10:48:25 +1100 | [diff] [blame] | 106 | AC_C_INLINE |
Darren Tucker | 67b3703 | 2005-06-03 17:58:31 +1000 | [diff] [blame] | 107 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 108 | AC_CHECK_DECL([LLONG_MAX], [have_llong_max=1], , [#include <limits.h>]) |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 109 | AC_CHECK_DECL([SYSTR_POLICY_KILL], [have_systr_policy_kill=1], , [ |
| 110 | #include <sys/types.h> |
| 111 | #include <sys/param.h> |
| 112 | #include <dev/systrace.h> |
| 113 | ]) |
| 114 | AC_CHECK_DECL([RLIMIT_NPROC], |
| 115 | [AC_DEFINE([HAVE_RLIMIT_NPROC], [], [sys/resource.h has RLIMIT_NPROC])], , [ |
| 116 | #include <sys/types.h> |
| 117 | #include <sys/resource.h> |
| 118 | ]) |
Damien Miller | e0956e3 | 2012-04-04 11:27:54 +1000 | [diff] [blame] | 119 | AC_CHECK_DECL([PR_SET_NO_NEW_PRIVS], [have_linux_no_new_privs=1], , [ |
| 120 | #include <sys/types.h> |
| 121 | #include <linux/prctl.h> |
| 122 | ]) |
Damien Miller | 868ea1e | 2014-01-17 16:47:04 +1100 | [diff] [blame] | 123 | |
Darren Tucker | b7918af | 2008-03-09 11:34:23 +1100 | [diff] [blame] | 124 | use_stack_protector=1 |
Darren Tucker | fd99437 | 2014-01-17 09:53:24 +1100 | [diff] [blame] | 125 | use_toolchain_hardening=1 |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 126 | AC_ARG_WITH([stackprotect], |
Damien Miller | da3155e | 2008-03-27 12:30:18 +1100 | [diff] [blame] | 127 | [ --without-stackprotect Don't use compiler's stack protection], [ |
Darren Tucker | b7918af | 2008-03-09 11:34:23 +1100 | [diff] [blame] | 128 | if test "x$withval" = "xno"; then |
| 129 | use_stack_protector=0 |
| 130 | fi ]) |
Darren Tucker | fd99437 | 2014-01-17 09:53:24 +1100 | [diff] [blame] | 131 | AC_ARG_WITH([hardening], |
| 132 | [ --without-hardening Don't use toolchain hardening flags], [ |
| 133 | if test "x$withval" = "xno"; then |
Darren Tucker | fd99437 | 2014-01-17 09:53:24 +1100 | [diff] [blame] | 134 | use_toolchain_hardening=0 |
| 135 | fi ]) |
Darren Tucker | b7918af | 2008-03-09 11:34:23 +1100 | [diff] [blame] | 136 | |
Darren Tucker | fd99437 | 2014-01-17 09:53:24 +1100 | [diff] [blame] | 137 | # We use -Werror for the tests only so that we catch warnings like "this is |
| 138 | # on by default" for things like -fPIE. |
| 139 | AC_MSG_CHECKING([if $CC supports -Werror]) |
| 140 | saved_CFLAGS="$CFLAGS" |
| 141 | CFLAGS="$CFLAGS -Werror" |
| 142 | AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int main(void) { return 0; }]])], |
| 143 | [ AC_MSG_RESULT([yes]) |
| 144 | WERROR="-Werror"], |
| 145 | [ AC_MSG_RESULT([no]) |
| 146 | WERROR="" ] |
| 147 | ) |
| 148 | CFLAGS="$saved_CFLAGS" |
Damien Miller | 134d02a | 2011-01-12 16:00:37 +1100 | [diff] [blame] | 149 | |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 150 | if test "$GCC" = "yes" || test "$GCC" = "egcs"; then |
Darren Tucker | fd99437 | 2014-01-17 09:53:24 +1100 | [diff] [blame] | 151 | OSSH_CHECK_CFLAG_COMPILE([-Qunused-arguments]) |
| 152 | OSSH_CHECK_CFLAG_COMPILE([-Wunknown-warning-option]) |
Damien Miller | b176362 | 2011-05-20 11:45:25 +1000 | [diff] [blame] | 153 | OSSH_CHECK_CFLAG_COMPILE([-Wall]) |
| 154 | OSSH_CHECK_CFLAG_COMPILE([-Wpointer-arith]) |
| 155 | OSSH_CHECK_CFLAG_COMPILE([-Wuninitialized]) |
| 156 | OSSH_CHECK_CFLAG_COMPILE([-Wsign-compare]) |
| 157 | OSSH_CHECK_CFLAG_COMPILE([-Wformat-security]) |
Darren Tucker | abbc7a7 | 2013-05-10 13:54:23 +1000 | [diff] [blame] | 158 | OSSH_CHECK_CFLAG_COMPILE([-Wsizeof-pointer-memaccess]) |
Damien Miller | b176362 | 2011-05-20 11:45:25 +1000 | [diff] [blame] | 159 | OSSH_CHECK_CFLAG_COMPILE([-Wpointer-sign], [-Wno-pointer-sign]) |
| 160 | OSSH_CHECK_CFLAG_COMPILE([-Wunused-result], [-Wno-unused-result]) |
| 161 | OSSH_CHECK_CFLAG_COMPILE([-fno-strict-aliasing]) |
Darren Tucker | 4a725ef | 2011-11-21 16:38:48 +1100 | [diff] [blame] | 162 | OSSH_CHECK_CFLAG_COMPILE([-D_FORTIFY_SOURCE=2]) |
Darren Tucker | fd99437 | 2014-01-17 09:53:24 +1100 | [diff] [blame] | 163 | if test "x$use_toolchain_hardening" = "x1"; then |
Darren Tucker | fd99437 | 2014-01-17 09:53:24 +1100 | [diff] [blame] | 164 | OSSH_CHECK_LDFLAG_LINK([-Wl,-z,relro]) |
| 165 | OSSH_CHECK_LDFLAG_LINK([-Wl,-z,now]) |
| 166 | OSSH_CHECK_LDFLAG_LINK([-Wl,-z,noexecstack]) |
Damien Miller | 5c2ff5e | 2014-01-22 21:30:12 +1100 | [diff] [blame] | 167 | # NB. -ftrapv expects certain support functions to be present in |
| 168 | # the compiler library (libgcc or similar) to detect integer operations |
| 169 | # that can overflow. We must check that the result of enabling it |
| 170 | # actually links. The test program compiled/linked includes a number |
| 171 | # of integer operations that should exercise this. |
| 172 | OSSH_CHECK_CFLAG_LINK([-ftrapv]) |
Darren Tucker | fd99437 | 2014-01-17 09:53:24 +1100 | [diff] [blame] | 173 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 174 | AC_MSG_CHECKING([gcc version]) |
Darren Tucker | 3f9545e | 2005-11-12 15:20:52 +1100 | [diff] [blame] | 175 | GCC_VER=`$CC -v 2>&1 | $AWK '/gcc version /{print $3}'` |
Tim Rice | 3db1e3f | 2005-08-23 17:11:26 -0700 | [diff] [blame] | 176 | case $GCC_VER in |
Darren Tucker | 391de5c | 2007-04-29 14:49:21 +1000 | [diff] [blame] | 177 | 1.*) no_attrib_nonnull=1 ;; |
| 178 | 2.8* | 2.9*) |
Darren Tucker | 391de5c | 2007-04-29 14:49:21 +1000 | [diff] [blame] | 179 | no_attrib_nonnull=1 |
| 180 | ;; |
| 181 | 2.*) no_attrib_nonnull=1 ;; |
Darren Tucker | f032435 | 2005-11-10 21:30:36 +1100 | [diff] [blame] | 182 | *) ;; |
Tim Rice | 3db1e3f | 2005-08-23 17:11:26 -0700 | [diff] [blame] | 183 | esac |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 184 | AC_MSG_RESULT([$GCC_VER]) |
Damien Miller | de3cb0a | 2005-05-26 20:48:25 +1000 | [diff] [blame] | 185 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 186 | AC_MSG_CHECKING([if $CC accepts -fno-builtin-memset]) |
Darren Tucker | 330c93f | 2008-06-16 02:27:48 +1000 | [diff] [blame] | 187 | saved_CFLAGS="$CFLAGS" |
| 188 | CFLAGS="$CFLAGS -fno-builtin-memset" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 189 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <string.h> ]], |
| 190 | [[ char b[10]; memset(b, 0, sizeof(b)); ]])], |
| 191 | [ AC_MSG_RESULT([yes]) ], |
| 192 | [ AC_MSG_RESULT([no]) |
Darren Tucker | 330c93f | 2008-06-16 02:27:48 +1000 | [diff] [blame] | 193 | CFLAGS="$saved_CFLAGS" ] |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 194 | ) |
Darren Tucker | 330c93f | 2008-06-16 02:27:48 +1000 | [diff] [blame] | 195 | |
Darren Tucker | b7918af | 2008-03-09 11:34:23 +1100 | [diff] [blame] | 196 | # -fstack-protector-all doesn't always work for some GCC versions |
Darren Tucker | fe1cf97 | 2008-03-09 22:50:50 +1100 | [diff] [blame] | 197 | # and/or platforms, so we test if we can. If it's not supported |
Damien Miller | 7df2e40 | 2008-12-08 09:35:36 +1100 | [diff] [blame] | 198 | # on a given platform gcc will emit a warning so we use -Werror. |
Darren Tucker | b7918af | 2008-03-09 11:34:23 +1100 | [diff] [blame] | 199 | if test "x$use_stack_protector" = "x1"; then |
Darren Tucker | fd99437 | 2014-01-17 09:53:24 +1100 | [diff] [blame] | 200 | for t in -fstack-protector-strong -fstack-protector-all \ |
| 201 | -fstack-protector; do |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 202 | AC_MSG_CHECKING([if $CC supports $t]) |
Darren Tucker | b7918af | 2008-03-09 11:34:23 +1100 | [diff] [blame] | 203 | saved_CFLAGS="$CFLAGS" |
| 204 | saved_LDFLAGS="$LDFLAGS" |
Darren Tucker | fe1cf97 | 2008-03-09 22:50:50 +1100 | [diff] [blame] | 205 | CFLAGS="$CFLAGS $t -Werror" |
| 206 | LDFLAGS="$LDFLAGS $t -Werror" |
| 207 | AC_LINK_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 208 | [AC_LANG_PROGRAM([[ #include <stdio.h> ]], |
| 209 | [[ |
| 210 | char x[256]; |
| 211 | snprintf(x, sizeof(x), "XXX"); |
| 212 | ]])], |
| 213 | [ AC_MSG_RESULT([yes]) |
Darren Tucker | fe1cf97 | 2008-03-09 22:50:50 +1100 | [diff] [blame] | 214 | CFLAGS="$saved_CFLAGS $t" |
| 215 | LDFLAGS="$saved_LDFLAGS $t" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 216 | AC_MSG_CHECKING([if $t works]) |
Darren Tucker | b7918af | 2008-03-09 11:34:23 +1100 | [diff] [blame] | 217 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 218 | [AC_LANG_PROGRAM([[ #include <stdio.h> ]], |
| 219 | [[ |
| 220 | char x[256]; |
| 221 | snprintf(x, sizeof(x), "XXX"); |
| 222 | ]])], |
| 223 | [ AC_MSG_RESULT([yes]) |
Darren Tucker | b7918af | 2008-03-09 11:34:23 +1100 | [diff] [blame] | 224 | break ], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 225 | [ AC_MSG_RESULT([no]) ], |
Darren Tucker | b7918af | 2008-03-09 11:34:23 +1100 | [diff] [blame] | 226 | [ AC_MSG_WARN([cross compiling: cannot test]) |
| 227 | break ] |
Darren Tucker | fe1cf97 | 2008-03-09 22:50:50 +1100 | [diff] [blame] | 228 | ) |
Darren Tucker | b7918af | 2008-03-09 11:34:23 +1100 | [diff] [blame] | 229 | ], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 230 | [ AC_MSG_RESULT([no]) ] |
Darren Tucker | b7918af | 2008-03-09 11:34:23 +1100 | [diff] [blame] | 231 | ) |
| 232 | CFLAGS="$saved_CFLAGS" |
| 233 | LDFLAGS="$saved_LDFLAGS" |
| 234 | done |
| 235 | fi |
Darren Tucker | 319b3d9 | 2007-12-02 21:02:22 +1100 | [diff] [blame] | 236 | |
Darren Tucker | 67b3703 | 2005-06-03 17:58:31 +1000 | [diff] [blame] | 237 | if test -z "$have_llong_max"; then |
| 238 | # retry LLONG_MAX with -std=gnu99, needed on some Linuxes |
| 239 | unset ac_cv_have_decl_LLONG_MAX |
| 240 | saved_CFLAGS="$CFLAGS" |
| 241 | CFLAGS="$CFLAGS -std=gnu99" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 242 | AC_CHECK_DECL([LLONG_MAX], |
Darren Tucker | 67b3703 | 2005-06-03 17:58:31 +1000 | [diff] [blame] | 243 | [have_llong_max=1], |
| 244 | [CFLAGS="$saved_CFLAGS"], |
| 245 | [#include <limits.h>] |
| 246 | ) |
| 247 | fi |
Damien Miller | 166bd44 | 2000-03-16 10:48:25 +1100 | [diff] [blame] | 248 | fi |
| 249 | |
Darren Tucker | 951b53b | 2013-02-08 11:50:09 +1100 | [diff] [blame] | 250 | AC_MSG_CHECKING([if compiler allows __attribute__ on return types]) |
| 251 | AC_COMPILE_IFELSE( |
| 252 | [AC_LANG_PROGRAM([[ |
| 253 | #include <stdlib.h> |
| 254 | __attribute__((__unused__)) static void foo(void){return;}]], |
| 255 | [[ exit(0); ]])], |
| 256 | [ AC_MSG_RESULT([yes]) ], |
| 257 | [ AC_MSG_RESULT([no]) |
| 258 | AC_DEFINE(NO_ATTRIBUTE_ON_RETURN_TYPE, 1, |
| 259 | [compiler does not accept __attribute__ on return types]) ] |
| 260 | ) |
| 261 | |
Darren Tucker | 391de5c | 2007-04-29 14:49:21 +1000 | [diff] [blame] | 262 | if test "x$no_attrib_nonnull" != "x1" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 263 | AC_DEFINE([HAVE_ATTRIBUTE__NONNULL__], [1], [Have attribute nonnull]) |
Darren Tucker | 391de5c | 2007-04-29 14:49:21 +1000 | [diff] [blame] | 264 | fi |
| 265 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 266 | AC_ARG_WITH([rpath], |
Tim Rice | 88368a3 | 2003-12-08 12:35:59 -0800 | [diff] [blame] | 267 | [ --without-rpath Disable auto-added -R linker paths], |
| 268 | [ |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 269 | if test "x$withval" = "xno" ; then |
Tim Rice | 88368a3 | 2003-12-08 12:35:59 -0800 | [diff] [blame] | 270 | need_dash_r="" |
| 271 | fi |
| 272 | if test "x$withval" = "xyes" ; then |
| 273 | need_dash_r=1 |
| 274 | fi |
| 275 | ] |
| 276 | ) |
| 277 | |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 278 | # Allow user to specify flags |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 279 | AC_ARG_WITH([cflags], |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 280 | [ --with-cflags Specify additional flags to pass to compiler], |
| 281 | [ |
| 282 | if test -n "$withval" && test "x$withval" != "xno" && \ |
| 283 | test "x${withval}" != "xyes"; then |
| 284 | CFLAGS="$CFLAGS $withval" |
| 285 | fi |
| 286 | ] |
| 287 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 288 | AC_ARG_WITH([cppflags], |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 289 | [ --with-cppflags Specify additional flags to pass to preprocessor] , |
| 290 | [ |
| 291 | if test -n "$withval" && test "x$withval" != "xno" && \ |
| 292 | test "x${withval}" != "xyes"; then |
| 293 | CPPFLAGS="$CPPFLAGS $withval" |
| 294 | fi |
| 295 | ] |
| 296 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 297 | AC_ARG_WITH([ldflags], |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 298 | [ --with-ldflags Specify additional flags to pass to linker], |
| 299 | [ |
| 300 | if test -n "$withval" && test "x$withval" != "xno" && \ |
| 301 | test "x${withval}" != "xyes"; then |
| 302 | LDFLAGS="$LDFLAGS $withval" |
| 303 | fi |
| 304 | ] |
| 305 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 306 | AC_ARG_WITH([libs], |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 307 | [ --with-libs Specify additional libraries to link with], |
| 308 | [ |
| 309 | if test -n "$withval" && test "x$withval" != "xno" && \ |
| 310 | test "x${withval}" != "xyes"; then |
| 311 | LIBS="$LIBS $withval" |
| 312 | fi |
| 313 | ] |
| 314 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 315 | AC_ARG_WITH([Werror], |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 316 | [ --with-Werror Build main code with -Werror], |
| 317 | [ |
| 318 | if test -n "$withval" && test "x$withval" != "xno"; then |
| 319 | werror_flags="-Werror" |
| 320 | if test "x${withval}" != "xyes"; then |
| 321 | werror_flags="$withval" |
| 322 | fi |
| 323 | fi |
| 324 | ] |
| 325 | ) |
| 326 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 327 | AC_CHECK_HEADERS([ \ |
Damien Miller | 1ff130d | 2013-12-07 11:51:51 +1100 | [diff] [blame] | 328 | blf.h \ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 329 | bstring.h \ |
| 330 | crypt.h \ |
| 331 | crypto/sha2.h \ |
| 332 | dirent.h \ |
| 333 | endian.h \ |
Damien Miller | 91f40d8 | 2013-02-22 11:37:00 +1100 | [diff] [blame] | 334 | elf.h \ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 335 | features.h \ |
| 336 | fcntl.h \ |
| 337 | floatingpoint.h \ |
| 338 | getopt.h \ |
| 339 | glob.h \ |
| 340 | ia.h \ |
| 341 | iaf.h \ |
Darren Tucker | 6d72568 | 2014-01-17 19:17:34 +1100 | [diff] [blame] | 342 | inttypes.h \ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 343 | limits.h \ |
Darren Tucker | ae133d4 | 2013-06-06 08:30:20 +1000 | [diff] [blame] | 344 | locale.h \ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 345 | login.h \ |
| 346 | maillock.h \ |
| 347 | ndir.h \ |
| 348 | net/if_tun.h \ |
| 349 | netdb.h \ |
| 350 | netgroup.h \ |
| 351 | pam/pam_appl.h \ |
| 352 | paths.h \ |
Darren Tucker | febf0f5 | 2007-06-25 22:15:12 +1000 | [diff] [blame] | 353 | poll.h \ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 354 | pty.h \ |
| 355 | readpassphrase.h \ |
| 356 | rpc/types.h \ |
| 357 | security/pam_appl.h \ |
| 358 | sha2.h \ |
| 359 | shadow.h \ |
| 360 | stddef.h \ |
| 361 | stdint.h \ |
| 362 | string.h \ |
| 363 | strings.h \ |
| 364 | sys/audit.h \ |
| 365 | sys/bitypes.h \ |
| 366 | sys/bsdtty.h \ |
Damien Miller | c96d853 | 2014-01-25 13:12:28 +1100 | [diff] [blame] | 367 | sys/capability.h \ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 368 | sys/cdefs.h \ |
| 369 | sys/dir.h \ |
| 370 | sys/mman.h \ |
| 371 | sys/ndir.h \ |
Darren Tucker | 7c92a65 | 2007-09-27 07:00:09 +1000 | [diff] [blame] | 372 | sys/poll.h \ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 373 | sys/prctl.h \ |
| 374 | sys/pstat.h \ |
| 375 | sys/select.h \ |
| 376 | sys/stat.h \ |
| 377 | sys/stream.h \ |
| 378 | sys/stropts.h \ |
| 379 | sys/strtio.h \ |
Darren Tucker | 5b2e2ba | 2008-06-08 09:25:28 +1000 | [diff] [blame] | 380 | sys/statvfs.h \ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 381 | sys/sysmacros.h \ |
| 382 | sys/time.h \ |
| 383 | sys/timers.h \ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 384 | time.h \ |
| 385 | tmpdir.h \ |
| 386 | ttyent.h \ |
Tim Rice | aa8954f | 2007-05-09 15:57:43 -0700 | [diff] [blame] | 387 | ucred.h \ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 388 | unistd.h \ |
| 389 | usersec.h \ |
| 390 | util.h \ |
| 391 | utime.h \ |
| 392 | utmp.h \ |
| 393 | utmpx.h \ |
| 394 | vis.h \ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 395 | ]) |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 396 | |
| 397 | # lastlog.h requires sys/time.h to be included first on Solaris |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 398 | AC_CHECK_HEADERS([lastlog.h], [], [], [ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 399 | #ifdef HAVE_SYS_TIME_H |
| 400 | # include <sys/time.h> |
| 401 | #endif |
| 402 | ]) |
| 403 | |
| 404 | # sys/ptms.h requires sys/stream.h to be included first on Solaris |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 405 | AC_CHECK_HEADERS([sys/ptms.h], [], [], [ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 406 | #ifdef HAVE_SYS_STREAM_H |
| 407 | # include <sys/stream.h> |
| 408 | #endif |
| 409 | ]) |
| 410 | |
| 411 | # login_cap.h requires sys/types.h on NetBSD |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 412 | AC_CHECK_HEADERS([login_cap.h], [], [], [ |
Tim Rice | 1cfab23 | 2006-10-03 09:34:35 -0700 | [diff] [blame] | 413 | #include <sys/types.h> |
| 414 | ]) |
| 415 | |
Darren Tucker | c4b22ca | 2009-07-12 21:56:29 +1000 | [diff] [blame] | 416 | # older BSDs need sys/param.h before sys/mount.h |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 417 | AC_CHECK_HEADERS([sys/mount.h], [], [], [ |
Darren Tucker | c4b22ca | 2009-07-12 21:56:29 +1000 | [diff] [blame] | 418 | #include <sys/param.h> |
| 419 | ]) |
| 420 | |
Darren Tucker | ef4901c | 2013-06-03 01:59:13 +1000 | [diff] [blame] | 421 | # Android requires sys/socket.h to be included before sys/un.h |
| 422 | AC_CHECK_HEADERS([sys/un.h], [], [], [ |
Darren Tucker | 0b43ffe | 2013-06-03 09:30:44 +1000 | [diff] [blame] | 423 | #include <sys/types.h> |
Darren Tucker | 16cac19 | 2013-06-04 12:55:24 +1000 | [diff] [blame] | 424 | #include <sys/socket.h> |
Darren Tucker | ef4901c | 2013-06-03 01:59:13 +1000 | [diff] [blame] | 425 | ]) |
| 426 | |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 427 | # Messages for features tested for in target-specific section |
| 428 | SIA_MSG="no" |
| 429 | SPC_MSG="no" |
Darren Tucker | 9752835 | 2010-11-05 12:03:05 +1100 | [diff] [blame] | 430 | SP_MSG="no" |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 431 | |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 432 | # Check for some target-specific stuff |
Damien Miller | 76112de | 1999-12-21 11:18:08 +1100 | [diff] [blame] | 433 | case "$host" in |
Damien Miller | 75b1d10 | 2000-01-07 14:01:41 +1100 | [diff] [blame] | 434 | *-*-aix*) |
Darren Tucker | 9216c37 | 2006-09-18 23:17:40 +1000 | [diff] [blame] | 435 | # Some versions of VAC won't allow macro redefinitions at |
| 436 | # -qlanglevel=ansi, and autoconf 2.60 sometimes insists on using that |
| 437 | # particularly with older versions of vac or xlc. |
| 438 | # It also throws errors about null macro argments, but these are |
| 439 | # not fatal. |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 440 | AC_MSG_CHECKING([if compiler allows macro redefinitions]) |
Darren Tucker | 9216c37 | 2006-09-18 23:17:40 +1000 | [diff] [blame] | 441 | AC_COMPILE_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 442 | [AC_LANG_PROGRAM([[ |
Darren Tucker | 9216c37 | 2006-09-18 23:17:40 +1000 | [diff] [blame] | 443 | #define testmacro foo |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 444 | #define testmacro bar]], |
| 445 | [[ exit(0); ]])], |
| 446 | [ AC_MSG_RESULT([yes]) ], |
| 447 | [ AC_MSG_RESULT([no]) |
Darren Tucker | 9216c37 | 2006-09-18 23:17:40 +1000 | [diff] [blame] | 448 | CC="`echo $CC | sed 's/-qlanglvl\=ansi//g'`" |
| 449 | LD="`echo $LD | sed 's/-qlanglvl\=ansi//g'`" |
| 450 | CFLAGS="`echo $CFLAGS | sed 's/-qlanglvl\=ansi//g'`" |
| 451 | CPPFLAGS="`echo $CPPFLAGS | sed 's/-qlanglvl\=ansi//g'`" |
| 452 | ] |
| 453 | ) |
| 454 | |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 455 | AC_MSG_CHECKING([how to specify blibpath for linker ($LD)]) |
Damien Miller | eab4bae | 2003-04-29 23:22:40 +1000 | [diff] [blame] | 456 | if (test -z "$blibpath"); then |
Tim Rice | fcb6220 | 2004-01-23 18:35:16 -0800 | [diff] [blame] | 457 | blibpath="/usr/lib:/lib" |
Damien Miller | 29ea30d | 2000-03-17 10:54:15 +1100 | [diff] [blame] | 458 | fi |
Damien Miller | eab4bae | 2003-04-29 23:22:40 +1000 | [diff] [blame] | 459 | saved_LDFLAGS="$LDFLAGS" |
Darren Tucker | bdc1212 | 2006-07-06 11:56:25 +1000 | [diff] [blame] | 460 | if test "$GCC" = "yes"; then |
| 461 | flags="-Wl,-blibpath: -Wl,-rpath, -blibpath:" |
| 462 | else |
| 463 | flags="-blibpath: -Wl,-blibpath: -Wl,-rpath," |
| 464 | fi |
| 465 | for tryflags in $flags ;do |
Damien Miller | eab4bae | 2003-04-29 23:22:40 +1000 | [diff] [blame] | 466 | if (test -z "$blibflags"); then |
| 467 | LDFLAGS="$saved_LDFLAGS $tryflags$blibpath" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 468 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])], |
| 469 | [blibflags=$tryflags], []) |
Damien Miller | eab4bae | 2003-04-29 23:22:40 +1000 | [diff] [blame] | 470 | fi |
| 471 | done |
| 472 | if (test -z "$blibflags"); then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 473 | AC_MSG_RESULT([not found]) |
Damien Miller | eab4bae | 2003-04-29 23:22:40 +1000 | [diff] [blame] | 474 | AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log]) |
| 475 | else |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 476 | AC_MSG_RESULT([$blibflags]) |
Damien Miller | eab4bae | 2003-04-29 23:22:40 +1000 | [diff] [blame] | 477 | fi |
| 478 | LDFLAGS="$saved_LDFLAGS" |
Darren Tucker | 5c6a91a | 2003-07-14 16:21:44 +1000 | [diff] [blame] | 479 | dnl Check for authenticate. Might be in libs.a on older AIXes |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 480 | AC_CHECK_FUNC([authenticate], [AC_DEFINE([WITH_AIXAUTHENTICATE], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 481 | [Define if you want to enable AIX4's authenticate function])], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 482 | [AC_CHECK_LIB([s], [authenticate], |
| 483 | [ AC_DEFINE([WITH_AIXAUTHENTICATE]) |
Tim Rice | e958ed3 | 2002-07-05 07:12:33 -0700 | [diff] [blame] | 484 | LIBS="$LIBS -ls" |
| 485 | ]) |
| 486 | ]) |
Darren Tucker | 3c774c5 | 2005-02-16 22:49:31 +1100 | [diff] [blame] | 487 | dnl Check for various auth function declarations in headers. |
Darren Tucker | 04cfbe0 | 2005-02-20 23:27:11 +1100 | [diff] [blame] | 488 | AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess, |
Darren Tucker | e66519d | 2005-03-21 22:46:34 +1100 | [diff] [blame] | 489 | passwdexpired, setauthdb], , , [#include <usersec.h>]) |
Darren Tucker | 5c6a91a | 2003-07-14 16:21:44 +1000 | [diff] [blame] | 490 | dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 491 | AC_CHECK_DECLS([loginfailed], |
| 492 | [AC_MSG_CHECKING([if loginfailed takes 4 arguments]) |
| 493 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <usersec.h> ]], |
| 494 | [[ (void)loginfailed("user","host","tty",0); ]])], |
| 495 | [AC_MSG_RESULT([yes]) |
| 496 | AC_DEFINE([AIX_LOGINFAILED_4ARG], [1], |
| 497 | [Define if your AIX loginfailed() function |
| 498 | takes 4 arguments (AIX >= 5.2)])], [AC_MSG_RESULT([no]) |
| 499 | ])], |
| 500 | [], |
| 501 | [#include <usersec.h>] |
Darren Tucker | 5c6a91a | 2003-07-14 16:21:44 +1000 | [diff] [blame] | 502 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 503 | AC_CHECK_FUNCS([getgrset setauthdb]) |
| 504 | AC_CHECK_DECL([F_CLOSEM], |
| 505 | AC_DEFINE([HAVE_FCNTL_CLOSEM], [1], [Use F_CLOSEM fcntl for closefrom]), |
Darren Tucker | 3083bc2 | 2006-08-17 19:35:49 +1000 | [diff] [blame] | 506 | [], |
| 507 | [ #include <limits.h> |
| 508 | #include <fcntl.h> ] |
| 509 | ) |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 510 | check_for_aix_broken_getaddrinfo=1 |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 511 | AC_DEFINE([BROKEN_REALPATH], [1], [Define if you have a broken realpath.]) |
| 512 | AC_DEFINE([SETEUID_BREAKS_SETUID], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 513 | [Define if your platform breaks doing a seteuid before a setuid]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 514 | AC_DEFINE([BROKEN_SETREUID], [1], [Define if your setreuid() is broken]) |
| 515 | AC_DEFINE([BROKEN_SETREGID], [1], [Define if your setregid() is broken]) |
andre | 60f3c98 | 2000-06-03 16:18:19 +0000 | [diff] [blame] | 516 | dnl AIX handles lastlog as part of its login message |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 517 | AC_DEFINE([DISABLE_LASTLOG], [1], [Define if you don't want to use lastlog]) |
| 518 | AC_DEFINE([LOGIN_NEEDS_UTMPX], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 519 | [Some systems need a utmpx entry for /bin/login to work]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 520 | AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 521 | [Define to a Set Process Title type if your system is |
| 522 | supported by bsd-setproctitle.c]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 523 | AC_DEFINE([SSHPAM_CHAUTHTOK_NEEDS_RUID], [1], |
Darren Tucker | 91d25a0 | 2005-11-26 22:24:09 +1100 | [diff] [blame] | 524 | [AIX 5.2 and 5.3 (and presumably newer) require this]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 525 | AC_DEFINE([PTY_ZEROREAD], [1], [read(1) can return 0 for a non-closed fd]) |
Darren Tucker | aa97d13 | 2013-03-12 11:31:05 +1100 | [diff] [blame] | 526 | AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)]) |
Damien Miller | 75b1d10 | 2000-01-07 14:01:41 +1100 | [diff] [blame] | 527 | ;; |
Darren Tucker | 898ac93 | 2013-06-03 02:03:25 +1000 | [diff] [blame] | 528 | *-*-android*) |
| 529 | AC_DEFINE([DISABLE_UTMP], [1], [Define if you don't want to use utmp]) |
| 530 | AC_DEFINE([DISABLE_WTMP], [1], [Define if you don't want to use wtmp]) |
| 531 | ;; |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 532 | *-*-cygwin*) |
Damien Miller | c8936ac | 2003-02-11 10:04:03 +1100 | [diff] [blame] | 533 | check_for_libcrypt_later=1 |
Darren Tucker | 573e387 | 2007-03-02 17:50:03 +1100 | [diff] [blame] | 534 | LIBS="$LIBS /usr/lib/textreadmode.o" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 535 | AC_DEFINE([HAVE_CYGWIN], [1], [Define if you are on Cygwin]) |
| 536 | AC_DEFINE([USE_PIPES], [1], [Use PIPES instead of a socketpair()]) |
| 537 | AC_DEFINE([DISABLE_SHADOW], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 538 | [Define if you want to disable shadow passwords]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 539 | AC_DEFINE([NO_X11_UNIX_SOCKETS], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 540 | [Define if X11 doesn't support AF_UNIX sockets on that system]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 541 | AC_DEFINE([NO_IPPORT_RESERVED_CONCEPT], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 542 | [Define if the concept of ports only accessible to |
| 543 | superusers isn't known]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 544 | AC_DEFINE([DISABLE_FD_PASSING], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 545 | [Define if your platform needs to skip post auth |
| 546 | file descriptor passing]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 547 | AC_DEFINE([SSH_IOBUFSZ], [65535], [Windows is sensitive to read buffer size]) |
Darren Tucker | fdce373 | 2014-01-18 21:12:42 +1100 | [diff] [blame] | 548 | AC_DEFINE([FILESYSTEM_NO_BACKSLASH], [1], [File names may not contain backslash characters]) |
| 549 | # Cygwin defines optargs, optargs as declspec(dllimport) for historical |
| 550 | # reasons which cause compile warnings, so we disable those warnings. |
| 551 | OSSH_CHECK_CFLAG_COMPILE([-Wno-attributes]) |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 552 | ;; |
Ben Lindstrom | 5805513 | 2001-02-15 18:34:29 +0000 | [diff] [blame] | 553 | *-*-dgux*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 554 | AC_DEFINE([IP_TOS_IS_BROKEN], [1], |
Tim Rice | a74000e | 2009-03-18 11:25:02 -0700 | [diff] [blame] | 555 | [Define if your system choked on IP TOS setting]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 556 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 557 | AC_DEFINE([BROKEN_SETREUID]) |
| 558 | AC_DEFINE([BROKEN_SETREGID]) |
Ben Lindstrom | 5805513 | 2001-02-15 18:34:29 +0000 | [diff] [blame] | 559 | ;; |
Ben Lindstrom | fed7bb4 | 2001-07-15 18:30:42 +0000 | [diff] [blame] | 560 | *-*-darwin*) |
Damien Miller | 852472a | 2014-01-22 16:31:18 +1100 | [diff] [blame] | 561 | use_pie=auto |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 562 | AC_MSG_CHECKING([if we have working getaddrinfo]) |
| 563 | AC_RUN_IFELSE([AC_LANG_SOURCE([[ #include <mach-o/dyld.h> |
Damien Miller | fc93d4b | 2002-09-04 23:26:29 +1000 | [diff] [blame] | 564 | main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16)) |
| 565 | exit(0); |
| 566 | else |
| 567 | exit(1); |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 568 | } |
| 569 | ]])], |
| 570 | [AC_MSG_RESULT([working])], |
| 571 | [AC_MSG_RESULT([buggy]) |
| 572 | AC_DEFINE([BROKEN_GETADDRINFO], [1], |
| 573 | [getaddrinfo is broken (if present)]) |
| 574 | ], |
| 575 | [AC_MSG_RESULT([assume it is working])]) |
| 576 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 577 | AC_DEFINE([BROKEN_SETREUID]) |
| 578 | AC_DEFINE([BROKEN_SETREGID]) |
| 579 | AC_DEFINE([BROKEN_GLOB], [1], [OS X glob does not do what we expect]) |
| 580 | AC_DEFINE_UNQUOTED([BIND_8_COMPAT], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 581 | [Define if your resolver libs need this for getrrsetbyname]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 582 | AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way]) |
| 583 | AC_DEFINE([SSH_TUN_COMPAT_AF], [1], |
Darren Tucker | 3eb4834 | 2006-06-23 21:05:12 +1000 | [diff] [blame] | 584 | [Use tunnel device compatibility to OpenBSD]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 585 | AC_DEFINE([SSH_TUN_PREPEND_AF], [1], |
Darren Tucker | 3eb4834 | 2006-06-23 21:05:12 +1000 | [diff] [blame] | 586 | [Prepend the address family to IP tunnel traffic]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 587 | m4_pattern_allow([AU_IPv]) |
| 588 | AC_CHECK_DECL([AU_IPv4], [], |
| 589 | AC_DEFINE([AU_IPv4], [0], [System only supports IPv4 audit records]) |
Darren Tucker | acada07 | 2008-02-25 21:05:04 +1100 | [diff] [blame] | 590 | [#include <bsm/audit.h>] |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 591 | AC_DEFINE([LASTLOG_WRITE_PUTUTXLINE], [1], |
Damien Miller | 20e231f | 2009-02-12 13:12:21 +1100 | [diff] [blame] | 592 | [Define if pututxline updates lastlog too]) |
Darren Tucker | acada07 | 2008-02-25 21:05:04 +1100 | [diff] [blame] | 593 | ) |
Damien Miller | c09182f | 2011-06-03 12:11:38 +1000 | [diff] [blame] | 594 | AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV], |
| 595 | [Define to a Set Process Title type if your system is |
| 596 | supported by bsd-setproctitle.c]) |
Damien Miller | cd5e52e | 2011-06-27 07:18:18 +1000 | [diff] [blame] | 597 | AC_CHECK_FUNCS([sandbox_init]) |
| 598 | AC_CHECK_HEADERS([sandbox.h]) |
Ben Lindstrom | fed7bb4 | 2001-07-15 18:30:42 +0000 | [diff] [blame] | 599 | ;; |
Darren Tucker | 57b2920 | 2006-09-10 20:25:51 +1000 | [diff] [blame] | 600 | *-*-dragonfly*) |
| 601 | SSHDLIBS="$SSHDLIBS -lcrypt" |
Darren Tucker | 882abfd | 2013-11-09 00:17:41 +1100 | [diff] [blame] | 602 | TEST_MALLOC_OPTIONS="AFGJPRX" |
Darren Tucker | 57b2920 | 2006-09-10 20:25:51 +1000 | [diff] [blame] | 603 | ;; |
Darren Tucker | a83d90f | 2010-03-26 10:27:33 +1100 | [diff] [blame] | 604 | *-*-haiku*) |
| 605 | LIBS="$LIBS -lbsd " |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 606 | AC_CHECK_LIB([network], [socket]) |
| 607 | AC_DEFINE([HAVE_U_INT64_T]) |
Darren Tucker | a83d90f | 2010-03-26 10:27:33 +1100 | [diff] [blame] | 608 | MANTYPE=man |
| 609 | ;; |
Darren Tucker | fd33328 | 2005-05-28 18:31:42 +1000 | [diff] [blame] | 610 | *-*-hpux*) |
| 611 | # first we define all of the options common to all HP-UX releases |
Kevin Steves | 315f8b7 | 2001-06-28 00:24:41 +0000 | [diff] [blame] | 612 | CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1" |
Damien Miller | 9a94734 | 2000-08-30 10:03:33 +1100 | [diff] [blame] | 613 | IPADDR_IN_DISPLAY=yes |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 614 | AC_DEFINE([USE_PIPES]) |
| 615 | AC_DEFINE([LOGIN_NO_ENDOPT], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 616 | [Define if your login program cannot handle end of options ("--")]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 617 | AC_DEFINE([LOGIN_NEEDS_UTMPX]) |
| 618 | AC_DEFINE([LOCKED_PASSWD_STRING], ["*"], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 619 | [String used in /etc/passwd to denote locked account]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 620 | AC_DEFINE([SPT_TYPE], [SPT_PSTAT]) |
Darren Tucker | aa97d13 | 2013-03-12 11:31:05 +1100 | [diff] [blame] | 621 | AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)]) |
Tim Rice | 90f42b0 | 2011-06-02 18:17:49 -0700 | [diff] [blame] | 622 | maildir="/var/mail" |
Tim Rice | f028f1e | 2002-07-19 12:41:10 -0700 | [diff] [blame] | 623 | LIBS="$LIBS -lsec" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 624 | AC_CHECK_LIB([xnet], [t_error], , |
| 625 | [AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***])]) |
Darren Tucker | fd33328 | 2005-05-28 18:31:42 +1000 | [diff] [blame] | 626 | |
| 627 | # next, we define all of the options specific to major releases |
| 628 | case "$host" in |
| 629 | *-*-hpux10*) |
| 630 | if test -z "$GCC"; then |
| 631 | CFLAGS="$CFLAGS -Ae" |
| 632 | fi |
| 633 | ;; |
| 634 | *-*-hpux11*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 635 | AC_DEFINE([PAM_SUN_CODEBASE], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 636 | [Define if you are using Solaris-derived PAM which |
| 637 | passes pam_messages to the conversation function |
| 638 | with an extra level of indirection]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 639 | AC_DEFINE([DISABLE_UTMP], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 640 | [Define if you don't want to use utmp]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 641 | AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins]) |
Darren Tucker | fd33328 | 2005-05-28 18:31:42 +1000 | [diff] [blame] | 642 | check_for_hpux_broken_getaddrinfo=1 |
| 643 | check_for_conflicting_getspnam=1 |
| 644 | ;; |
| 645 | esac |
| 646 | |
| 647 | # lastly, we define options specific to minor releases |
| 648 | case "$host" in |
| 649 | *-*-hpux10.26) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 650 | AC_DEFINE([HAVE_SECUREWARE], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 651 | [Define if you have SecureWare-based |
| 652 | protected password database]) |
Darren Tucker | fd33328 | 2005-05-28 18:31:42 +1000 | [diff] [blame] | 653 | disable_ptmx_check=yes |
| 654 | LIBS="$LIBS -lsecpw" |
| 655 | ;; |
| 656 | esac |
Damien Miller | 1bead33 | 2000-04-30 00:47:29 +1000 | [diff] [blame] | 657 | ;; |
Damien Miller | beb4ba5 | 1999-12-28 15:09:35 +1100 | [diff] [blame] | 658 | *-*-irix5*) |
Damien Miller | 190d5a8 | 2000-09-30 09:43:19 +1100 | [diff] [blame] | 659 | PATH="$PATH:/usr/etc" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 660 | AC_DEFINE([BROKEN_INET_NTOA], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 661 | [Define if you system's inet_ntoa is busted |
| 662 | (e.g. Irix gcc issue)]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 663 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 664 | AC_DEFINE([BROKEN_SETREUID]) |
| 665 | AC_DEFINE([BROKEN_SETREGID]) |
| 666 | AC_DEFINE([WITH_ABBREV_NO_TTY], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 667 | [Define if you shouldn't strip 'tty' from your |
| 668 | ttyname in [uw]tmp]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 669 | AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"]) |
Damien Miller | 1808f38 | 2000-01-06 12:03:12 +1100 | [diff] [blame] | 670 | ;; |
| 671 | *-*-irix6*) |
Damien Miller | 190d5a8 | 2000-09-30 09:43:19 +1100 | [diff] [blame] | 672 | PATH="$PATH:/usr/etc" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 673 | AC_DEFINE([WITH_IRIX_ARRAY], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 674 | [Define if you have/want arrays |
| 675 | (cluster-wide session managment, not C arrays)]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 676 | AC_DEFINE([WITH_IRIX_PROJECT], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 677 | [Define if you want IRIX project management]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 678 | AC_DEFINE([WITH_IRIX_AUDIT], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 679 | [Define if you want IRIX audit trails]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 680 | AC_CHECK_FUNC([jlimit_startjob], [AC_DEFINE([WITH_IRIX_JOBS], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 681 | [Define if you want IRIX kernel jobs])]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 682 | AC_DEFINE([BROKEN_INET_NTOA]) |
| 683 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 684 | AC_DEFINE([BROKEN_SETREUID]) |
| 685 | AC_DEFINE([BROKEN_SETREGID]) |
| 686 | AC_DEFINE([BROKEN_UPDWTMPX], [1], [updwtmpx is broken (if present)]) |
| 687 | AC_DEFINE([WITH_ABBREV_NO_TTY]) |
| 688 | AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"]) |
Damien Miller | beb4ba5 | 1999-12-28 15:09:35 +1100 | [diff] [blame] | 689 | ;; |
Damien Miller | 9055172 | 2009-02-16 15:37:03 +1100 | [diff] [blame] | 690 | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu) |
| 691 | check_for_libcrypt_later=1 |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 692 | AC_DEFINE([PAM_TTY_KLUDGE]) |
| 693 | AC_DEFINE([LOCKED_PASSWD_PREFIX], ["!"]) |
| 694 | AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV]) |
| 695 | AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts]) |
| 696 | AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins]) |
Damien Miller | 9055172 | 2009-02-16 15:37:03 +1100 | [diff] [blame] | 697 | ;; |
Damien Miller | b29ea91 | 2000-01-15 14:12:03 +1100 | [diff] [blame] | 698 | *-*-linux*) |
| 699 | no_dev_ptmx=1 |
Damien Miller | 852472a | 2014-01-22 16:31:18 +1100 | [diff] [blame] | 700 | use_pie=auto |
Damien Miller | a64b57a | 2001-01-17 10:44:13 +1100 | [diff] [blame] | 701 | check_for_libcrypt_later=1 |
Darren Tucker | 70a3d55 | 2003-08-21 17:58:29 +1000 | [diff] [blame] | 702 | check_for_openpty_ctty_bug=1 |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 703 | AC_DEFINE([PAM_TTY_KLUDGE], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 704 | [Work around problematic Linux PAM modules handling of PAM_TTY]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 705 | AC_DEFINE([LOCKED_PASSWD_PREFIX], ["!"], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 706 | [String used in /etc/passwd to denote locked account]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 707 | AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV]) |
| 708 | AC_DEFINE([LINK_OPNOTSUPP_ERRNO], [EPERM], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 709 | [Define to whatever link() returns for "not supported" |
| 710 | if it doesn't return EOPNOTSUPP.]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 711 | AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts]) |
| 712 | AC_DEFINE([USE_BTMP]) |
| 713 | AC_DEFINE([LINUX_OOM_ADJUST], [1], [Adjust Linux out-of-memory killer]) |
Damien Miller | 7bcb089 | 2000-03-11 20:45:40 +1100 | [diff] [blame] | 714 | inet6_default_4in6=yes |
Darren Tucker | 3c01654 | 2003-05-02 20:48:21 +1000 | [diff] [blame] | 715 | case `uname -r` in |
Darren Tucker | c437cda | 2003-05-10 17:05:46 +1000 | [diff] [blame] | 716 | 1.*|2.0.*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 717 | AC_DEFINE([BROKEN_CMSG_TYPE], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 718 | [Define if cmsg_type is not passed correctly]) |
Darren Tucker | 3c01654 | 2003-05-02 20:48:21 +1000 | [diff] [blame] | 719 | ;; |
Darren Tucker | 3c01654 | 2003-05-02 20:48:21 +1000 | [diff] [blame] | 720 | esac |
Damien Miller | 89e03ba | 2005-12-31 16:42:03 +1100 | [diff] [blame] | 721 | # tun(4) forwarding compat code |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 722 | AC_CHECK_HEADERS([linux/if_tun.h]) |
Damien Miller | bd4e410 | 2006-01-01 21:03:30 +1100 | [diff] [blame] | 723 | if test "x$ac_cv_header_linux_if_tun_h" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 724 | AC_DEFINE([SSH_TUN_LINUX], [1], |
Damien Miller | 89e03ba | 2005-12-31 16:42:03 +1100 | [diff] [blame] | 725 | [Open tunnel devices the Linux tun/tap way]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 726 | AC_DEFINE([SSH_TUN_COMPAT_AF], [1], |
Damien Miller | 89e03ba | 2005-12-31 16:42:03 +1100 | [diff] [blame] | 727 | [Use tunnel device compatibility to OpenBSD]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 728 | AC_DEFINE([SSH_TUN_PREPEND_AF], [1], |
Damien Miller | 89e03ba | 2005-12-31 16:42:03 +1100 | [diff] [blame] | 729 | [Prepend the address family to IP tunnel traffic]) |
| 730 | fi |
Darren Tucker | 60395f9 | 2012-07-03 14:31:18 +1000 | [diff] [blame] | 731 | AC_CHECK_HEADERS([linux/seccomp.h linux/filter.h linux/audit.h], [], |
| 732 | [], [#include <linux/types.h>]) |
Damien Miller | e0956e3 | 2012-04-04 11:27:54 +1000 | [diff] [blame] | 733 | AC_CHECK_FUNCS([prctl]) |
Damien Miller | 91f40d8 | 2013-02-22 11:37:00 +1100 | [diff] [blame] | 734 | AC_MSG_CHECKING([for seccomp architecture]) |
| 735 | seccomp_audit_arch= |
Damien Miller | e0956e3 | 2012-04-04 11:27:54 +1000 | [diff] [blame] | 736 | case "$host" in |
| 737 | x86_64-*) |
Damien Miller | 91f40d8 | 2013-02-22 11:37:00 +1100 | [diff] [blame] | 738 | seccomp_audit_arch=AUDIT_ARCH_X86_64 |
Damien Miller | e0956e3 | 2012-04-04 11:27:54 +1000 | [diff] [blame] | 739 | ;; |
| 740 | i*86-*) |
Damien Miller | 91f40d8 | 2013-02-22 11:37:00 +1100 | [diff] [blame] | 741 | seccomp_audit_arch=AUDIT_ARCH_I386 |
Damien Miller | e0956e3 | 2012-04-04 11:27:54 +1000 | [diff] [blame] | 742 | ;; |
Damien Miller | 91f40d8 | 2013-02-22 11:37:00 +1100 | [diff] [blame] | 743 | arm*-*) |
| 744 | seccomp_audit_arch=AUDIT_ARCH_ARM |
| 745 | ;; |
Damien Miller | e0956e3 | 2012-04-04 11:27:54 +1000 | [diff] [blame] | 746 | esac |
Damien Miller | 91f40d8 | 2013-02-22 11:37:00 +1100 | [diff] [blame] | 747 | if test "x$seccomp_audit_arch" != "x" ; then |
| 748 | AC_MSG_RESULT(["$seccomp_audit_arch"]) |
| 749 | AC_DEFINE_UNQUOTED([SECCOMP_AUDIT_ARCH], [$seccomp_audit_arch], |
| 750 | [Specify the system call convention in use]) |
| 751 | else |
| 752 | AC_MSG_RESULT([architecture not supported]) |
| 753 | fi |
Damien Miller | b29ea91 | 2000-01-15 14:12:03 +1100 | [diff] [blame] | 754 | ;; |
Ben Lindstrom | b562864 | 2000-10-18 00:02:25 +0000 | [diff] [blame] | 755 | mips-sony-bsd|mips-sony-newsos4) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 756 | AC_DEFINE([NEED_SETPGRP], [1], [Need setpgrp to acquire controlling tty]) |
Ben Lindstrom | b562864 | 2000-10-18 00:02:25 +0000 | [diff] [blame] | 757 | SONY=1 |
Ben Lindstrom | b562864 | 2000-10-18 00:02:25 +0000 | [diff] [blame] | 758 | ;; |
Damien Miller | ee1c0b3 | 2000-01-21 00:18:15 +1100 | [diff] [blame] | 759 | *-*-netbsd*) |
Damien Miller | fc93d4b | 2002-09-04 23:26:29 +1000 | [diff] [blame] | 760 | check_for_libcrypt_before=1 |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 761 | if test "x$withval" != "xno" ; then |
Tim Rice | 88368a3 | 2003-12-08 12:35:59 -0800 | [diff] [blame] | 762 | need_dash_r=1 |
| 763 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 764 | AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way]) |
Damien Miller | 2dcddbf | 2006-01-01 19:47:05 +1100 | [diff] [blame] | 765 | AC_CHECK_HEADER([net/if_tap.h], , |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 766 | AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support])) |
| 767 | AC_DEFINE([SSH_TUN_PREPEND_AF], [1], |
Damien Miller | 2dcddbf | 2006-01-01 19:47:05 +1100 | [diff] [blame] | 768 | [Prepend the address family to IP tunnel traffic]) |
Darren Tucker | 882abfd | 2013-11-09 00:17:41 +1100 | [diff] [blame] | 769 | TEST_MALLOC_OPTIONS="AJRX" |
Darren Tucker | 42a0925 | 2014-01-23 23:14:39 +1100 | [diff] [blame] | 770 | AC_DEFINE([BROKEN_STRNVIS], [1], |
| 771 | [NetBSD strnvis argument order is swapped compared to OpenBSD]) |
Damien Miller | f5bbd3b | 2014-01-30 11:26:46 +1100 | [diff] [blame] | 772 | AC_DEFINE([BROKEN_READ_COMPARISON], [1], |
| 773 | [NetBSD read function is sometimes redirected, breaking atomicio comparisons against it]) |
Damien Miller | ee1c0b3 | 2000-01-21 00:18:15 +1100 | [diff] [blame] | 774 | ;; |
Damien Miller | fbd884a | 2001-02-27 08:39:07 +1100 | [diff] [blame] | 775 | *-*-freebsd*) |
| 776 | check_for_libcrypt_later=1 |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 777 | AC_DEFINE([LOCKED_PASSWD_PREFIX], ["*LOCKED*"], [Account locked with pw(1)]) |
| 778 | AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way]) |
Damien Miller | 2dcddbf | 2006-01-01 19:47:05 +1100 | [diff] [blame] | 779 | AC_CHECK_HEADER([net/if_tap.h], , |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 780 | AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support])) |
| 781 | AC_DEFINE([BROKEN_GLOB], [1], [FreeBSD glob does not do what we need]) |
Darren Tucker | 42a0925 | 2014-01-23 23:14:39 +1100 | [diff] [blame] | 782 | AC_DEFINE([BROKEN_STRNVIS], [1], |
| 783 | [FreeBSD strnvis argument order is swapped compared to OpenBSD]) |
Darren Tucker | 882abfd | 2013-11-09 00:17:41 +1100 | [diff] [blame] | 784 | TEST_MALLOC_OPTIONS="AJRX" |
Damien Miller | 2035b22 | 2014-01-26 09:39:53 +1100 | [diff] [blame] | 785 | # Preauth crypto occasionally uses file descriptors for crypto offload |
| 786 | # and will crash if they cannot be opened. |
Damien Miller | 5b447c0 | 2014-01-26 09:46:53 +1100 | [diff] [blame] | 787 | AC_DEFINE([SANDBOX_SKIP_RLIMIT_NOFILE], [1], |
Tim Rice | 03ae081 | 2014-02-21 09:09:34 -0800 | [diff] [blame] | 788 | [define if setrlimit RLIMIT_NOFILE breaks things]) |
Damien Miller | fbd884a | 2001-02-27 08:39:07 +1100 | [diff] [blame] | 789 | ;; |
Darren Tucker | ed9eb02 | 2003-09-22 11:18:47 +1000 | [diff] [blame] | 790 | *-*-bsdi*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 791 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 792 | AC_DEFINE([BROKEN_SETREUID]) |
| 793 | AC_DEFINE([BROKEN_SETREGID]) |
Darren Tucker | ed9eb02 | 2003-09-22 11:18:47 +1000 | [diff] [blame] | 794 | ;; |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 795 | *-next-*) |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 796 | conf_lastlog_location="/usr/adm/lastlog" |
Damien Miller | e5192fa | 2000-08-29 14:30:37 +1100 | [diff] [blame] | 797 | conf_utmp_location=/etc/utmp |
| 798 | conf_wtmp_location=/usr/adm/wtmp |
Tim Rice | 90f42b0 | 2011-06-02 18:17:49 -0700 | [diff] [blame] | 799 | maildir=/usr/spool/mail |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 800 | AC_DEFINE([HAVE_NEXT], [1], [Define if you are on NeXT]) |
| 801 | AC_DEFINE([BROKEN_REALPATH]) |
| 802 | AC_DEFINE([USE_PIPES]) |
| 803 | AC_DEFINE([BROKEN_SAVED_UIDS], [1], [Needed for NeXT]) |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 804 | ;; |
Darren Tucker | 4a42257 | 2005-07-14 17:22:11 +1000 | [diff] [blame] | 805 | *-*-openbsd*) |
Damien Miller | 852472a | 2014-01-22 16:31:18 +1100 | [diff] [blame] | 806 | use_pie=auto |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 807 | AC_DEFINE([HAVE_ATTRIBUTE__SENTINEL__], [1], [OpenBSD's gcc has sentinel]) |
| 808 | AC_DEFINE([HAVE_ATTRIBUTE__BOUNDED__], [1], [OpenBSD's gcc has bounded]) |
| 809 | AC_DEFINE([SSH_TUN_OPENBSD], [1], [Open tunnel devices the OpenBSD way]) |
| 810 | AC_DEFINE([SYSLOG_R_SAFE_IN_SIGHAND], [1], |
Damien Miller | bb59814 | 2006-08-19 08:38:23 +1000 | [diff] [blame] | 811 | [syslog_r function is safe to use in in a signal handler]) |
Darren Tucker | 882abfd | 2013-11-09 00:17:41 +1100 | [diff] [blame] | 812 | TEST_MALLOC_OPTIONS="AFGJPRX" |
Darren Tucker | 4a42257 | 2005-07-14 17:22:11 +1000 | [diff] [blame] | 813 | ;; |
Damien Miller | 75b1d10 | 2000-01-07 14:01:41 +1100 | [diff] [blame] | 814 | *-*-solaris*) |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 815 | if test "x$withval" != "xno" ; then |
Tim Rice | ad4a188 | 2004-02-29 15:53:37 -0800 | [diff] [blame] | 816 | need_dash_r=1 |
| 817 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 818 | AC_DEFINE([PAM_SUN_CODEBASE]) |
| 819 | AC_DEFINE([LOGIN_NEEDS_UTMPX]) |
| 820 | AC_DEFINE([LOGIN_NEEDS_TERM], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 821 | [Some versions of /bin/login need the TERM supplied |
| 822 | on the commandline]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 823 | AC_DEFINE([PAM_TTY_KLUDGE]) |
| 824 | AC_DEFINE([SSHPAM_CHAUTHTOK_NEEDS_RUID], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 825 | [Define if pam_chauthtok wants real uid set |
| 826 | to the unpriv'ed user]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 827 | AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"]) |
Darren Tucker | c437cda | 2003-05-10 17:05:46 +1000 | [diff] [blame] | 828 | # Pushing STREAMS modules will cause sshd to acquire a controlling tty. |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 829 | AC_DEFINE([SSHD_ACQUIRES_CTTY], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 830 | [Define if sshd somehow reacquires a controlling TTY |
| 831 | after setsid()]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 832 | AC_DEFINE([PASSWD_NEEDS_USERNAME], [1], [must supply username to passwd |
Darren Tucker | 0249f93 | 2006-06-24 12:10:07 +1000 | [diff] [blame] | 833 | in case the name is longer than 8 chars]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 834 | AC_DEFINE([BROKEN_TCGETATTR_ICANON], [1], [tcgetattr with ICANON may hang]) |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 835 | external_path_file=/etc/default/login |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 836 | # hardwire lastlog location (can't detect it on some versions) |
| 837 | conf_lastlog_location="/var/adm/lastlog" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 838 | AC_MSG_CHECKING([for obsolete utmp and wtmp in solaris2.x]) |
Damien Miller | a1cb644 | 2000-06-09 11:58:35 +1000 | [diff] [blame] | 839 | sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'` |
| 840 | if test "$sol2ver" -ge 8; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 841 | AC_MSG_RESULT([yes]) |
| 842 | AC_DEFINE([DISABLE_UTMP]) |
| 843 | AC_DEFINE([DISABLE_WTMP], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 844 | [Define if you don't want to use wtmp]) |
Damien Miller | a1cb644 | 2000-06-09 11:58:35 +1000 | [diff] [blame] | 845 | else |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 846 | AC_MSG_RESULT([no]) |
Damien Miller | a1cb644 | 2000-06-09 11:58:35 +1000 | [diff] [blame] | 847 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 848 | AC_ARG_WITH([solaris-contracts], |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 849 | [ --with-solaris-contracts Enable Solaris process contracts (experimental)], |
| 850 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 851 | AC_CHECK_LIB([contract], [ct_tmpl_activate], |
| 852 | [ AC_DEFINE([USE_SOLARIS_PROCESS_CONTRACTS], [1], |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 853 | [Define if you have Solaris process contracts]) |
| 854 | SSHDLIBS="$SSHDLIBS -lcontract" |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 855 | SPC_MSG="yes" ], ) |
| 856 | ], |
| 857 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 858 | AC_ARG_WITH([solaris-projects], |
Darren Tucker | 9752835 | 2010-11-05 12:03:05 +1100 | [diff] [blame] | 859 | [ --with-solaris-projects Enable Solaris projects (experimental)], |
| 860 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 861 | AC_CHECK_LIB([project], [setproject], |
| 862 | [ AC_DEFINE([USE_SOLARIS_PROJECTS], [1], |
Darren Tucker | 9752835 | 2010-11-05 12:03:05 +1100 | [diff] [blame] | 863 | [Define if you have Solaris projects]) |
| 864 | SSHDLIBS="$SSHDLIBS -lproject" |
Darren Tucker | 9752835 | 2010-11-05 12:03:05 +1100 | [diff] [blame] | 865 | SP_MSG="yes" ], ) |
| 866 | ], |
| 867 | ) |
Tim Rice | 5ab9b63 | 2013-06-02 14:05:48 -0700 | [diff] [blame] | 868 | TEST_SHELL=$SHELL # let configure find us a capable shell |
Damien Miller | 75b1d10 | 2000-01-07 14:01:41 +1100 | [diff] [blame] | 869 | ;; |
Damien Miller | dfc83f4 | 2000-05-20 15:02:59 +1000 | [diff] [blame] | 870 | *-*-sunos4*) |
Ben Lindstrom | 28bfc0d | 2000-12-18 19:58:57 +0000 | [diff] [blame] | 871 | CPPFLAGS="$CPPFLAGS -DSUNOS4" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 872 | AC_CHECK_FUNCS([getpwanam]) |
| 873 | AC_DEFINE([PAM_SUN_CODEBASE]) |
Damien Miller | 36ccb5c | 2000-08-09 16:34:27 +1000 | [diff] [blame] | 874 | conf_utmp_location=/etc/utmp |
| 875 | conf_wtmp_location=/var/adm/wtmp |
| 876 | conf_lastlog_location=/var/adm/lastlog |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 877 | AC_DEFINE([USE_PIPES]) |
Damien Miller | dfc83f4 | 2000-05-20 15:02:59 +1000 | [diff] [blame] | 878 | ;; |
Ben Lindstrom | 603bdfd | 2001-02-12 07:29:45 +0000 | [diff] [blame] | 879 | *-ncr-sysv*) |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 880 | LIBS="$LIBS -lc89" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 881 | AC_DEFINE([USE_PIPES]) |
| 882 | AC_DEFINE([SSHD_ACQUIRES_CTTY]) |
| 883 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 884 | AC_DEFINE([BROKEN_SETREUID]) |
| 885 | AC_DEFINE([BROKEN_SETREGID]) |
Ben Lindstrom | 603bdfd | 2001-02-12 07:29:45 +0000 | [diff] [blame] | 886 | ;; |
Damien Miller | 2ae714f | 2000-07-11 09:29:50 +1000 | [diff] [blame] | 887 | *-sni-sysv*) |
Tim Rice | ffdf4aa | 2001-10-27 10:45:36 -0700 | [diff] [blame] | 888 | # /usr/ucblib MUST NOT be searched on ReliantUNIX |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 889 | AC_CHECK_LIB([dl], [dlsym], ,) |
Darren Tucker | 79d09fa | 2005-11-24 22:34:54 +1100 | [diff] [blame] | 890 | # -lresolv needs to be at the end of LIBS or DNS lookups break |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 891 | AC_CHECK_LIB([resolv], [res_query], [ LIBS="$LIBS -lresolv" ]) |
Damien Miller | fd9885e | 2001-01-10 08:16:53 +1100 | [diff] [blame] | 892 | IPADDR_IN_DISPLAY=yes |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 893 | AC_DEFINE([USE_PIPES]) |
| 894 | AC_DEFINE([IP_TOS_IS_BROKEN]) |
| 895 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 896 | AC_DEFINE([BROKEN_SETREUID]) |
| 897 | AC_DEFINE([BROKEN_SETREGID]) |
| 898 | AC_DEFINE([SSHD_ACQUIRES_CTTY]) |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 899 | external_path_file=/etc/default/login |
Tim Rice | ffdf4aa | 2001-10-27 10:45:36 -0700 | [diff] [blame] | 900 | # /usr/ucblib/libucb.a no longer needed on ReliantUNIX |
| 901 | # Attention: always take care to bind libsocket and libnsl before libc, |
| 902 | # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog |
Damien Miller | 2ae714f | 2000-07-11 09:29:50 +1000 | [diff] [blame] | 903 | ;; |
Tim Rice | 0f83d29 | 2004-12-08 18:29:58 -0800 | [diff] [blame] | 904 | # UnixWare 1.x, UnixWare 2.x, and others based on code from Univel. |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 905 | *-*-sysv4.2*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 906 | AC_DEFINE([USE_PIPES]) |
| 907 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 908 | AC_DEFINE([BROKEN_SETREUID]) |
| 909 | AC_DEFINE([BROKEN_SETREGID]) |
| 910 | AC_DEFINE([PASSWD_NEEDS_USERNAME], [1], [must supply username to passwd]) |
| 911 | AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"]) |
Tim Rice | 5ab9b63 | 2013-06-02 14:05:48 -0700 | [diff] [blame] | 912 | TEST_SHELL=$SHELL # let configure find us a capable shell |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 913 | ;; |
Tim Rice | 0f83d29 | 2004-12-08 18:29:58 -0800 | [diff] [blame] | 914 | # UnixWare 7.x, OpenUNIX 8 |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 915 | *-*-sysv5*) |
Tim Rice | 641ebf1 | 2010-01-17 17:05:39 -0800 | [diff] [blame] | 916 | CPPFLAGS="$CPPFLAGS -Dvsnprintf=_xvsnprintf -Dsnprintf=_xsnprintf" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 917 | AC_DEFINE([UNIXWARE_LONG_PASSWORDS], [1], [Support passwords > 8 chars]) |
| 918 | AC_DEFINE([USE_PIPES]) |
| 919 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 920 | AC_DEFINE([BROKEN_GETADDRINFO]) |
| 921 | AC_DEFINE([BROKEN_SETREUID]) |
| 922 | AC_DEFINE([BROKEN_SETREGID]) |
| 923 | AC_DEFINE([PASSWD_NEEDS_USERNAME]) |
Tim Rice | 5ab9b63 | 2013-06-02 14:05:48 -0700 | [diff] [blame] | 924 | TEST_SHELL=$SHELL # let configure find us a capable shell |
Tim Rice | 4dbacff | 2005-06-01 20:09:28 -0700 | [diff] [blame] | 925 | case "$host" in |
| 926 | *-*-sysv5SCO_SV*) # SCO OpenServer 6.x |
Tim Rice | 90f42b0 | 2011-06-02 18:17:49 -0700 | [diff] [blame] | 927 | maildir=/var/spool/mail |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 928 | AC_DEFINE([BROKEN_LIBIAF], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 929 | [ia_uinfo routines not supported by OS yet]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 930 | AC_DEFINE([BROKEN_UPDWTMPX]) |
| 931 | AC_CHECK_LIB([prot], [getluid], [ LIBS="$LIBS -lprot" |
| 932 | AC_CHECK_FUNCS([getluid setluid], , , [-lprot]) |
| 933 | AC_DEFINE([HAVE_SECUREWARE]) |
| 934 | AC_DEFINE([DISABLE_SHADOW]) |
| 935 | ], , ) |
Tim Rice | 4dbacff | 2005-06-01 20:09:28 -0700 | [diff] [blame] | 936 | ;; |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 937 | *) AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"]) |
Tim Rice | 2676791 | 2009-01-07 20:50:08 -0800 | [diff] [blame] | 938 | check_for_libcrypt_later=1 |
Tim Rice | 46259d8 | 2005-11-28 18:40:34 -0800 | [diff] [blame] | 939 | ;; |
Tim Rice | 4dbacff | 2005-06-01 20:09:28 -0700 | [diff] [blame] | 940 | esac |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 941 | ;; |
Damien Miller | 75b1d10 | 2000-01-07 14:01:41 +1100 | [diff] [blame] | 942 | *-*-sysv*) |
Damien Miller | 75b1d10 | 2000-01-07 14:01:41 +1100 | [diff] [blame] | 943 | ;; |
Tim Rice | 0f83d29 | 2004-12-08 18:29:58 -0800 | [diff] [blame] | 944 | # SCO UNIX and OEM versions of SCO UNIX |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 945 | *-*-sco3.2v4*) |
Tim Rice | c390c8d | 2005-03-07 01:21:37 -0800 | [diff] [blame] | 946 | AC_MSG_ERROR("This Platform is no longer supported.") |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 947 | ;; |
Tim Rice | 0f83d29 | 2004-12-08 18:29:58 -0800 | [diff] [blame] | 948 | # SCO OpenServer 5.x |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 949 | *-*-sco3.2v5*) |
Tim Rice | 89fe3f3 | 2003-01-19 20:20:24 -0800 | [diff] [blame] | 950 | if test -z "$GCC"; then |
| 951 | CFLAGS="$CFLAGS -belf" |
| 952 | fi |
Damien Miller | 5dfe976 | 2001-02-16 12:05:39 +1100 | [diff] [blame] | 953 | LIBS="$LIBS -lprot -lx -ltinfo -lm" |
Damien Miller | a66626b | 2000-06-13 18:57:53 +1000 | [diff] [blame] | 954 | no_dev_ptmx=1 |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 955 | AC_DEFINE([USE_PIPES]) |
| 956 | AC_DEFINE([HAVE_SECUREWARE]) |
| 957 | AC_DEFINE([DISABLE_SHADOW]) |
| 958 | AC_DEFINE([DISABLE_FD_PASSING]) |
| 959 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 960 | AC_DEFINE([BROKEN_GETADDRINFO]) |
| 961 | AC_DEFINE([BROKEN_SETREUID]) |
| 962 | AC_DEFINE([BROKEN_SETREGID]) |
| 963 | AC_DEFINE([WITH_ABBREV_NO_TTY]) |
| 964 | AC_DEFINE([BROKEN_UPDWTMPX]) |
| 965 | AC_DEFINE([PASSWD_NEEDS_USERNAME]) |
| 966 | AC_CHECK_FUNCS([getluid setluid]) |
Tim Rice | 07183b8 | 2001-04-25 21:40:28 -0700 | [diff] [blame] | 967 | MANTYPE=man |
Tim Rice | 5ab9b63 | 2013-06-02 14:05:48 -0700 | [diff] [blame] | 968 | TEST_SHELL=$SHELL # let configure find us a capable shell |
Tim Rice | aa86c39 | 2013-03-16 20:55:46 -0700 | [diff] [blame] | 969 | SKIP_DISABLE_LASTLOG_DEFINE=yes |
Damien Miller | a66626b | 2000-06-13 18:57:53 +1000 | [diff] [blame] | 970 | ;; |
Ben Lindstrom | 232ccf7 | 2002-07-22 23:34:25 +0000 | [diff] [blame] | 971 | *-*-unicosmk*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 972 | AC_DEFINE([NO_SSH_LASTLOG], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 973 | [Define if you don't want to use lastlog in session.c]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 974 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 975 | AC_DEFINE([BROKEN_SETREUID]) |
| 976 | AC_DEFINE([BROKEN_SETREGID]) |
| 977 | AC_DEFINE([USE_PIPES]) |
| 978 | AC_DEFINE([DISABLE_FD_PASSING]) |
Ben Lindstrom | 232ccf7 | 2002-07-22 23:34:25 +0000 | [diff] [blame] | 979 | LDFLAGS="$LDFLAGS" |
| 980 | LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm" |
| 981 | MANTYPE=cat |
Ben Lindstrom | 762104e | 2002-07-23 00:00:05 +0000 | [diff] [blame] | 982 | ;; |
Darren Tucker | 9f7ffc5 | 2003-09-10 11:39:05 +1000 | [diff] [blame] | 983 | *-*-unicosmp*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 984 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 985 | AC_DEFINE([BROKEN_SETREUID]) |
| 986 | AC_DEFINE([BROKEN_SETREGID]) |
| 987 | AC_DEFINE([WITH_ABBREV_NO_TTY]) |
| 988 | AC_DEFINE([USE_PIPES]) |
| 989 | AC_DEFINE([DISABLE_FD_PASSING]) |
Darren Tucker | 9f7ffc5 | 2003-09-10 11:39:05 +1000 | [diff] [blame] | 990 | LDFLAGS="$LDFLAGS" |
Darren Tucker | 2df3343 | 2004-01-30 14:34:21 +1100 | [diff] [blame] | 991 | LIBS="$LIBS -lgen -lacid -ldb" |
Darren Tucker | 9f7ffc5 | 2003-09-10 11:39:05 +1000 | [diff] [blame] | 992 | MANTYPE=cat |
| 993 | ;; |
Ben Lindstrom | d9e0824 | 2001-07-22 19:32:00 +0000 | [diff] [blame] | 994 | *-*-unicos*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 995 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 996 | AC_DEFINE([BROKEN_SETREUID]) |
| 997 | AC_DEFINE([BROKEN_SETREGID]) |
| 998 | AC_DEFINE([USE_PIPES]) |
| 999 | AC_DEFINE([DISABLE_FD_PASSING]) |
| 1000 | AC_DEFINE([NO_SSH_LASTLOG]) |
Ben Lindstrom | 232ccf7 | 2002-07-22 23:34:25 +0000 | [diff] [blame] | 1001 | LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal" |
| 1002 | LIBS="$LIBS -lgen -lrsc -lshare -luex -lacm" |
| 1003 | MANTYPE=cat |
Tim Rice | e991e3c | 2001-08-07 15:29:07 -0700 | [diff] [blame] | 1004 | ;; |
Damien Miller | b8c656e | 2000-06-28 15:22:41 +1000 | [diff] [blame] | 1005 | *-dec-osf*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1006 | AC_MSG_CHECKING([for Digital Unix SIA]) |
Ben Lindstrom | 72af2ef | 2001-05-08 20:42:28 +0000 | [diff] [blame] | 1007 | no_osfsia="" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1008 | AC_ARG_WITH([osfsia], |
Ben Lindstrom | 72af2ef | 2001-05-08 20:42:28 +0000 | [diff] [blame] | 1009 | [ --with-osfsia Enable Digital Unix SIA], |
| 1010 | [ |
| 1011 | if test "x$withval" = "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1012 | AC_MSG_RESULT([disabled]) |
Ben Lindstrom | 72af2ef | 2001-05-08 20:42:28 +0000 | [diff] [blame] | 1013 | no_osfsia=1 |
| 1014 | fi |
| 1015 | ], |
| 1016 | ) |
| 1017 | if test -z "$no_osfsia" ; then |
Damien Miller | b8c656e | 2000-06-28 15:22:41 +1000 | [diff] [blame] | 1018 | if test -f /etc/sia/matrix.conf; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1019 | AC_MSG_RESULT([yes]) |
| 1020 | AC_DEFINE([HAVE_OSF_SIA], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 1021 | [Define if you have Digital Unix Security |
| 1022 | Integration Architecture]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1023 | AC_DEFINE([DISABLE_LOGIN], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 1024 | [Define if you don't want to use your |
| 1025 | system's login() call]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1026 | AC_DEFINE([DISABLE_FD_PASSING]) |
Damien Miller | b8c656e | 2000-06-28 15:22:41 +1000 | [diff] [blame] | 1027 | LIBS="$LIBS -lsecurity -ldb -lm -laud" |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 1028 | SIA_MSG="yes" |
Damien Miller | b8c656e | 2000-06-28 15:22:41 +1000 | [diff] [blame] | 1029 | else |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1030 | AC_MSG_RESULT([no]) |
| 1031 | AC_DEFINE([LOCKED_PASSWD_SUBSTR], ["Nologin"], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 1032 | [String used in /etc/passwd to denote locked account]) |
Damien Miller | b8c656e | 2000-06-28 15:22:41 +1000 | [diff] [blame] | 1033 | fi |
| 1034 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1035 | AC_DEFINE([BROKEN_GETADDRINFO]) |
| 1036 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |
| 1037 | AC_DEFINE([BROKEN_SETREUID]) |
| 1038 | AC_DEFINE([BROKEN_SETREGID]) |
| 1039 | AC_DEFINE([BROKEN_READV_COMPARISON], [1], [Can't do comparisons on readv]) |
Damien Miller | b8c656e | 2000-06-28 15:22:41 +1000 | [diff] [blame] | 1040 | ;; |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 1041 | |
Tim Rice | 70335a6 | 2006-02-04 17:42:58 -0800 | [diff] [blame] | 1042 | *-*-nto-qnx*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1043 | AC_DEFINE([USE_PIPES]) |
| 1044 | AC_DEFINE([NO_X11_UNIX_SOCKETS]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1045 | AC_DEFINE([DISABLE_LASTLOG]) |
| 1046 | AC_DEFINE([SSHD_ACQUIRES_CTTY]) |
| 1047 | AC_DEFINE([BROKEN_SHADOW_EXPIRE], [1], [QNX shadow support is broken]) |
Tim Rice | 2f99346 | 2006-02-11 18:37:48 -0800 | [diff] [blame] | 1048 | enable_etc_default_login=no # has incompatible /etc/default/login |
Darren Tucker | 8acb3b6 | 2007-08-10 14:36:12 +1000 | [diff] [blame] | 1049 | case "$host" in |
| 1050 | *-*-nto-qnx6*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1051 | AC_DEFINE([DISABLE_FD_PASSING]) |
Darren Tucker | 8acb3b6 | 2007-08-10 14:36:12 +1000 | [diff] [blame] | 1052 | ;; |
| 1053 | esac |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 1054 | ;; |
Darren Tucker | 2be1cbb | 2005-05-27 21:13:40 +1000 | [diff] [blame] | 1055 | |
| 1056 | *-*-ultrix*) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1057 | AC_DEFINE([BROKEN_GETGROUPS], [1], [getgroups(0,NULL) will return -1]) |
| 1058 | AC_DEFINE([BROKEN_MMAP], [1], [Ultrix mmap can't map files]) |
| 1059 | AC_DEFINE([NEED_SETPGRP]) |
| 1060 | AC_DEFINE([HAVE_SYS_SYSLOG_H], [1], [Force use of sys/syslog.h on Ultrix]) |
Tim Rice | fcc7ff1 | 2005-06-02 20:28:29 -0700 | [diff] [blame] | 1061 | ;; |
Darren Tucker | 93e7e8f | 2005-08-23 08:06:55 +1000 | [diff] [blame] | 1062 | |
| 1063 | *-*-lynxos) |
| 1064 | CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1065 | AC_DEFINE([BROKEN_SETVBUF], [1], [LynxOS has broken setvbuf() implementation]) |
Darren Tucker | 93e7e8f | 2005-08-23 08:06:55 +1000 | [diff] [blame] | 1066 | ;; |
Damien Miller | 76112de | 1999-12-21 11:18:08 +1100 | [diff] [blame] | 1067 | esac |
| 1068 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1069 | AC_MSG_CHECKING([compiler and flags for sanity]) |
| 1070 | AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]], [[ exit(0); ]])], |
| 1071 | [ AC_MSG_RESULT([yes]) ], |
Darren Tucker | 6eb9304 | 2003-06-29 21:30:41 +1000 | [diff] [blame] | 1072 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1073 | AC_MSG_RESULT([no]) |
Darren Tucker | 6eb9304 | 2003-06-29 21:30:41 +1000 | [diff] [blame] | 1074 | AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 1075 | ], |
| 1076 | [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ] |
Darren Tucker | 6eb9304 | 2003-06-29 21:30:41 +1000 | [diff] [blame] | 1077 | ) |
| 1078 | |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1079 | dnl Checks for header files. |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 1080 | # Checks for libraries. |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1081 | AC_CHECK_FUNC([yp_match], , [AC_CHECK_LIB([nsl], [yp_match])]) |
| 1082 | AC_CHECK_FUNC([setsockopt], , [AC_CHECK_LIB([socket], [setsockopt])]) |
Ben Lindstrom | 3ad650a | 2001-01-03 06:02:51 +0000 | [diff] [blame] | 1083 | |
Tim Rice | 1e1ef64 | 2003-09-11 22:19:31 -0700 | [diff] [blame] | 1084 | dnl IRIX and Solaris 2.5.1 have dirname() in libgen |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1085 | AC_CHECK_FUNCS([dirname], [AC_CHECK_HEADERS([libgen.h])] , [ |
| 1086 | AC_CHECK_LIB([gen], [dirname], [ |
Tim Rice | 1e1ef64 | 2003-09-11 22:19:31 -0700 | [diff] [blame] | 1087 | AC_CACHE_CHECK([for broken dirname], |
| 1088 | ac_cv_have_broken_dirname, [ |
| 1089 | save_LIBS="$LIBS" |
| 1090 | LIBS="$LIBS -lgen" |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 1091 | AC_RUN_IFELSE( |
| 1092 | [AC_LANG_SOURCE([[ |
Tim Rice | 1e1ef64 | 2003-09-11 22:19:31 -0700 | [diff] [blame] | 1093 | #include <libgen.h> |
| 1094 | #include <string.h> |
| 1095 | |
| 1096 | int main(int argc, char **argv) { |
| 1097 | char *s, buf[32]; |
| 1098 | |
| 1099 | strncpy(buf,"/etc", 32); |
| 1100 | s = dirname(buf); |
| 1101 | if (!s || strncmp(s, "/", 32) != 0) { |
| 1102 | exit(1); |
| 1103 | } else { |
| 1104 | exit(0); |
| 1105 | } |
| 1106 | } |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 1107 | ]])], |
Tim Rice | 1e1ef64 | 2003-09-11 22:19:31 -0700 | [diff] [blame] | 1108 | [ ac_cv_have_broken_dirname="no" ], |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 1109 | [ ac_cv_have_broken_dirname="yes" ], |
| 1110 | [ ac_cv_have_broken_dirname="no" ], |
Tim Rice | 1e1ef64 | 2003-09-11 22:19:31 -0700 | [diff] [blame] | 1111 | ) |
| 1112 | LIBS="$save_LIBS" |
| 1113 | ]) |
| 1114 | if test "x$ac_cv_have_broken_dirname" = "xno" ; then |
| 1115 | LIBS="$LIBS -lgen" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1116 | AC_DEFINE([HAVE_DIRNAME]) |
| 1117 | AC_CHECK_HEADERS([libgen.h]) |
Tim Rice | 1e1ef64 | 2003-09-11 22:19:31 -0700 | [diff] [blame] | 1118 | fi |
| 1119 | ]) |
| 1120 | ]) |
| 1121 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1122 | AC_CHECK_FUNC([getspnam], , |
| 1123 | [AC_CHECK_LIB([gen], [getspnam], [LIBS="$LIBS -lgen"])]) |
| 1124 | AC_SEARCH_LIBS([basename], [gen], [AC_DEFINE([HAVE_BASENAME], [1], |
| 1125 | [Define if you have the basename function.])]) |
Tim Rice | 1e1ef64 | 2003-09-11 22:19:31 -0700 | [diff] [blame] | 1126 | |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 1127 | dnl zlib is required |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1128 | AC_ARG_WITH([zlib], |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 1129 | [ --with-zlib=PATH Use zlib in PATH], |
Darren Tucker | 86a5f8d | 2005-03-21 09:55:17 +1100 | [diff] [blame] | 1130 | [ if test "x$withval" = "xno" ; then |
| 1131 | AC_MSG_ERROR([*** zlib is required ***]) |
| 1132 | elif test "x$withval" != "xyes"; then |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 1133 | if test -d "$withval/lib"; then |
| 1134 | if test -n "${need_dash_r}"; then |
Tim Rice | 02cebcd | 2001-10-25 10:01:30 -0700 | [diff] [blame] | 1135 | LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}" |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 1136 | else |
Tim Rice | 02cebcd | 2001-10-25 10:01:30 -0700 | [diff] [blame] | 1137 | LDFLAGS="-L${withval}/lib ${LDFLAGS}" |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 1138 | fi |
| 1139 | else |
| 1140 | if test -n "${need_dash_r}"; then |
Tim Rice | 02cebcd | 2001-10-25 10:01:30 -0700 | [diff] [blame] | 1141 | LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}" |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 1142 | else |
Tim Rice | 02cebcd | 2001-10-25 10:01:30 -0700 | [diff] [blame] | 1143 | LDFLAGS="-L${withval} ${LDFLAGS}" |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 1144 | fi |
| 1145 | fi |
| 1146 | if test -d "$withval/include"; then |
Tim Rice | 02cebcd | 2001-10-25 10:01:30 -0700 | [diff] [blame] | 1147 | CPPFLAGS="-I${withval}/include ${CPPFLAGS}" |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 1148 | else |
Tim Rice | 02cebcd | 2001-10-25 10:01:30 -0700 | [diff] [blame] | 1149 | CPPFLAGS="-I${withval} ${CPPFLAGS}" |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 1150 | fi |
Darren Tucker | 86a5f8d | 2005-03-21 09:55:17 +1100 | [diff] [blame] | 1151 | fi ] |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 1152 | ) |
| 1153 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1154 | AC_CHECK_HEADER([zlib.h], ,[AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***])]) |
| 1155 | AC_CHECK_LIB([z], [deflate], , |
Tim Rice | fcb6220 | 2004-01-23 18:35:16 -0800 | [diff] [blame] | 1156 | [ |
| 1157 | saved_CPPFLAGS="$CPPFLAGS" |
| 1158 | saved_LDFLAGS="$LDFLAGS" |
| 1159 | save_LIBS="$LIBS" |
| 1160 | dnl Check default zlib install dir |
| 1161 | if test -n "${need_dash_r}"; then |
| 1162 | LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}" |
| 1163 | else |
| 1164 | LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}" |
| 1165 | fi |
| 1166 | CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}" |
| 1167 | LIBS="$LIBS -lz" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1168 | AC_TRY_LINK_FUNC([deflate], [AC_DEFINE([HAVE_LIBZ])], |
Tim Rice | fcb6220 | 2004-01-23 18:35:16 -0800 | [diff] [blame] | 1169 | [ |
| 1170 | AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***]) |
| 1171 | ] |
| 1172 | ) |
| 1173 | ] |
| 1174 | ) |
Darren Tucker | dcc736b | 2004-01-30 14:20:59 +1100 | [diff] [blame] | 1175 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1176 | AC_ARG_WITH([zlib-version-check], |
Darren Tucker | dcc736b | 2004-01-30 14:20:59 +1100 | [diff] [blame] | 1177 | [ --without-zlib-version-check Disable zlib version check], |
| 1178 | [ if test "x$withval" = "xno" ; then |
| 1179 | zlib_check_nonfatal=1 |
| 1180 | fi |
| 1181 | ] |
| 1182 | ) |
| 1183 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1184 | AC_MSG_CHECKING([for possibly buggy zlib]) |
| 1185 | AC_RUN_IFELSE([AC_LANG_PROGRAM([[ |
Darren Tucker | 2f0b5c4 | 2005-04-24 17:52:22 +1000 | [diff] [blame] | 1186 | #include <stdio.h> |
Darren Tucker | c8a0f27 | 2013-03-22 12:49:14 +1100 | [diff] [blame] | 1187 | #include <stdlib.h> |
Darren Tucker | 2dcd239 | 2004-01-23 17:13:33 +1100 | [diff] [blame] | 1188 | #include <zlib.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1189 | ]], |
| 1190 | [[ |
Darren Tucker | 2f0b5c4 | 2005-04-24 17:52:22 +1000 | [diff] [blame] | 1191 | int a=0, b=0, c=0, d=0, n, v; |
| 1192 | n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d); |
| 1193 | if (n != 3 && n != 4) |
Darren Tucker | 2dcd239 | 2004-01-23 17:13:33 +1100 | [diff] [blame] | 1194 | exit(1); |
Darren Tucker | 2f0b5c4 | 2005-04-24 17:52:22 +1000 | [diff] [blame] | 1195 | v = a*1000000 + b*10000 + c*100 + d; |
| 1196 | fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v); |
| 1197 | |
| 1198 | /* 1.1.4 is OK */ |
| 1199 | if (a == 1 && b == 1 && c >= 4) |
Darren Tucker | 2dcd239 | 2004-01-23 17:13:33 +1100 | [diff] [blame] | 1200 | exit(0); |
Darren Tucker | 2f0b5c4 | 2005-04-24 17:52:22 +1000 | [diff] [blame] | 1201 | |
Darren Tucker | 41097ed | 2005-07-25 15:24:21 +1000 | [diff] [blame] | 1202 | /* 1.2.3 and up are OK */ |
| 1203 | if (v >= 1020300) |
Darren Tucker | 2f0b5c4 | 2005-04-24 17:52:22 +1000 | [diff] [blame] | 1204 | exit(0); |
| 1205 | |
Darren Tucker | 2dcd239 | 2004-01-23 17:13:33 +1100 | [diff] [blame] | 1206 | exit(2); |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 1207 | ]])], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1208 | AC_MSG_RESULT([no]), |
| 1209 | [ AC_MSG_RESULT([yes]) |
Darren Tucker | dcc736b | 2004-01-30 14:20:59 +1100 | [diff] [blame] | 1210 | if test -z "$zlib_check_nonfatal" ; then |
| 1211 | AC_MSG_ERROR([*** zlib too old - check config.log *** |
| 1212 | Your reported zlib version has known security problems. It's possible your |
| 1213 | vendor has fixed these problems without changing the version number. If you |
| 1214 | are sure this is the case, you can disable the check by running |
| 1215 | "./configure --without-zlib-version-check". |
Darren Tucker | ac1910f | 2005-07-26 12:00:42 +1000 | [diff] [blame] | 1216 | If you are in doubt, upgrade zlib to version 1.2.3 or greater. |
Darren Tucker | 2f0b5c4 | 2005-04-24 17:52:22 +1000 | [diff] [blame] | 1217 | See http://www.gzip.org/zlib/ for details.]) |
Darren Tucker | dcc736b | 2004-01-30 14:20:59 +1100 | [diff] [blame] | 1218 | else |
| 1219 | AC_MSG_WARN([zlib version may have security problems]) |
| 1220 | fi |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 1221 | ], |
| 1222 | [ AC_MSG_WARN([cross compiling: not checking zlib version]) ] |
Darren Tucker | 2dcd239 | 2004-01-23 17:13:33 +1100 | [diff] [blame] | 1223 | ) |
Damien Miller | 6f9c337 | 2000-10-25 10:06:04 +1100 | [diff] [blame] | 1224 | |
Ben Lindstrom | 3ad650a | 2001-01-03 06:02:51 +0000 | [diff] [blame] | 1225 | dnl UnixWare 2.x |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1226 | AC_CHECK_FUNC([strcasecmp], |
| 1227 | [], [ AC_CHECK_LIB([resolv], [strcasecmp], [LIBS="$LIBS -lresolv"]) ] |
Ben Lindstrom | 3ad650a | 2001-01-03 06:02:51 +0000 | [diff] [blame] | 1228 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1229 | AC_CHECK_FUNCS([utimes], |
| 1230 | [], [ AC_CHECK_LIB([c89], [utimes], [AC_DEFINE([HAVE_UTIMES]) |
Tim Rice | cbb9066 | 2002-07-08 19:17:10 -0700 | [diff] [blame] | 1231 | LIBS="$LIBS -lc89"]) ] |
Ben Lindstrom | 3ad650a | 2001-01-03 06:02:51 +0000 | [diff] [blame] | 1232 | ) |
Damien Miller | ab18c41 | 1999-11-11 10:40:23 +1100 | [diff] [blame] | 1233 | |
Tim Rice | e589a29 | 2001-11-03 11:09:32 -0800 | [diff] [blame] | 1234 | dnl Checks for libutil functions |
Damien Miller | b87f6b7 | 2013-02-23 09:12:23 +1100 | [diff] [blame] | 1235 | AC_CHECK_HEADERS([bsd/libutil.h libutil.h]) |
Damien Miller | 398c0ff | 2012-04-19 21:46:35 +1000 | [diff] [blame] | 1236 | AC_SEARCH_LIBS([fmt_scaled], [util bsd]) |
Darren Tucker | e194ba4 | 2013-05-16 20:47:31 +1000 | [diff] [blame] | 1237 | AC_SEARCH_LIBS([scan_scaled], [util bsd]) |
Damien Miller | 398c0ff | 2012-04-19 21:46:35 +1000 | [diff] [blame] | 1238 | AC_SEARCH_LIBS([login], [util bsd]) |
| 1239 | AC_SEARCH_LIBS([logout], [util bsd]) |
| 1240 | AC_SEARCH_LIBS([logwtmp], [util bsd]) |
| 1241 | AC_SEARCH_LIBS([openpty], [util bsd]) |
| 1242 | AC_SEARCH_LIBS([updwtmp], [util bsd]) |
Darren Tucker | e194ba4 | 2013-05-16 20:47:31 +1000 | [diff] [blame] | 1243 | AC_CHECK_FUNCS([fmt_scaled scan_scaled login logout openpty updwtmp logwtmp]) |
Tim Rice | e589a29 | 2001-11-03 11:09:32 -0800 | [diff] [blame] | 1244 | |
Damien Miller | ab03949 | 2014-01-28 15:07:10 +1100 | [diff] [blame] | 1245 | # On some platforms, inet_ntop may be found in libresolv or libnsl. |
| 1246 | AC_SEARCH_LIBS([inet_ntop], [resolv nsl]) |
| 1247 | |
Ben Lindstrom | 8697e08 | 2001-02-24 21:41:10 +0000 | [diff] [blame] | 1248 | AC_FUNC_STRFTIME |
| 1249 | |
Damien Miller | 3c02768 | 2001-03-14 11:39:45 +1100 | [diff] [blame] | 1250 | # Check for ALTDIRFUNC glob() extension |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1251 | AC_MSG_CHECKING([for GLOB_ALTDIRFUNC support]) |
| 1252 | AC_EGREP_CPP([FOUNDIT], |
Damien Miller | 3c02768 | 2001-03-14 11:39:45 +1100 | [diff] [blame] | 1253 | [ |
| 1254 | #include <glob.h> |
| 1255 | #ifdef GLOB_ALTDIRFUNC |
| 1256 | FOUNDIT |
| 1257 | #endif |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 1258 | ], |
Damien Miller | 3c02768 | 2001-03-14 11:39:45 +1100 | [diff] [blame] | 1259 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1260 | AC_DEFINE([GLOB_HAS_ALTDIRFUNC], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 1261 | [Define if your system glob() function has |
| 1262 | the GLOB_ALTDIRFUNC extension]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1263 | AC_MSG_RESULT([yes]) |
Damien Miller | 3c02768 | 2001-03-14 11:39:45 +1100 | [diff] [blame] | 1264 | ], |
| 1265 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1266 | AC_MSG_RESULT([no]) |
Damien Miller | 3c02768 | 2001-03-14 11:39:45 +1100 | [diff] [blame] | 1267 | ] |
| 1268 | ) |
Damien Miller | ab18c41 | 1999-11-11 10:40:23 +1100 | [diff] [blame] | 1269 | |
Ben Lindstrom | 45b14db | 2001-03-17 01:15:38 +0000 | [diff] [blame] | 1270 | # Check for g.gl_matchc glob() extension |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1271 | AC_MSG_CHECKING([for gl_matchc field in glob_t]) |
| 1272 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <glob.h> ]], |
| 1273 | [[ glob_t g; g.gl_matchc = 1; ]])], |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 1274 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1275 | AC_DEFINE([GLOB_HAS_GL_MATCHC], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 1276 | [Define if your system glob() function has |
| 1277 | gl_matchc options in glob_t]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1278 | AC_MSG_RESULT([yes]) |
| 1279 | ], [ |
| 1280 | AC_MSG_RESULT([no]) |
| 1281 | ]) |
Ben Lindstrom | 45b14db | 2001-03-17 01:15:38 +0000 | [diff] [blame] | 1282 | |
Damien Miller | a6e121a | 2010-10-07 21:39:17 +1100 | [diff] [blame] | 1283 | # Check for g.gl_statv glob() extension |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1284 | AC_MSG_CHECKING([for gl_statv and GLOB_KEEPSTAT extensions for glob]) |
| 1285 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <glob.h> ]], [[ |
Damien Miller | a6e121a | 2010-10-07 21:39:17 +1100 | [diff] [blame] | 1286 | #ifndef GLOB_KEEPSTAT |
| 1287 | #error "glob does not support GLOB_KEEPSTAT extension" |
| 1288 | #endif |
| 1289 | glob_t g; |
| 1290 | g.gl_statv = NULL; |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1291 | ]])], |
Damien Miller | a6e121a | 2010-10-07 21:39:17 +1100 | [diff] [blame] | 1292 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1293 | AC_DEFINE([GLOB_HAS_GL_STATV], [1], |
Damien Miller | a6e121a | 2010-10-07 21:39:17 +1100 | [diff] [blame] | 1294 | [Define if your system glob() function has |
| 1295 | gl_statv options in glob_t]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1296 | AC_MSG_RESULT([yes]) |
| 1297 | ], [ |
| 1298 | AC_MSG_RESULT([no]) |
| 1299 | |
| 1300 | ]) |
Damien Miller | a6e121a | 2010-10-07 21:39:17 +1100 | [diff] [blame] | 1301 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1302 | AC_CHECK_DECLS([GLOB_NOMATCH], , , [#include <glob.h>]) |
Darren Tucker | 096faec | 2006-09-01 20:29:10 +1000 | [diff] [blame] | 1303 | |
Damien Miller | 18bb473 | 2001-03-28 14:35:30 +1000 | [diff] [blame] | 1304 | AC_MSG_CHECKING([whether struct dirent allocates space for d_name]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 1305 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1306 | [AC_LANG_PROGRAM([[ |
Damien Miller | 18bb473 | 2001-03-28 14:35:30 +1000 | [diff] [blame] | 1307 | #include <sys/types.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1308 | #include <dirent.h>]], |
| 1309 | [[ |
| 1310 | struct dirent d; |
| 1311 | exit(sizeof(d.d_name)<=sizeof(char)); |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 1312 | ]])], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1313 | [AC_MSG_RESULT([yes])], |
Damien Miller | 18bb473 | 2001-03-28 14:35:30 +1000 | [diff] [blame] | 1314 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1315 | AC_MSG_RESULT([no]) |
| 1316 | AC_DEFINE([BROKEN_ONE_BYTE_DIRENT_D_NAME], [1], |
Darren Tucker | 79d09fa | 2005-11-24 22:34:54 +1100 | [diff] [blame] | 1317 | [Define if your struct dirent expects you to |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 1318 | allocate extra space for d_name]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 1319 | ], |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 1320 | [ |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 1321 | AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1322 | AC_DEFINE([BROKEN_ONE_BYTE_DIRENT_D_NAME]) |
Damien Miller | 18bb473 | 2001-03-28 14:35:30 +1000 | [diff] [blame] | 1323 | ] |
| 1324 | ) |
| 1325 | |
Damien Miller | 36f4965 | 2004-08-15 18:40:59 +1000 | [diff] [blame] | 1326 | AC_MSG_CHECKING([for /proc/pid/fd directory]) |
| 1327 | if test -d "/proc/$$/fd" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1328 | AC_DEFINE([HAVE_PROC_PID], [1], [Define if you have /proc/$pid/fd]) |
| 1329 | AC_MSG_RESULT([yes]) |
Damien Miller | 36f4965 | 2004-08-15 18:40:59 +1000 | [diff] [blame] | 1330 | else |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1331 | AC_MSG_RESULT([no]) |
Damien Miller | 36f4965 | 2004-08-15 18:40:59 +1000 | [diff] [blame] | 1332 | fi |
| 1333 | |
Damien Miller | c547bf1 | 2001-02-16 10:18:12 +1100 | [diff] [blame] | 1334 | # Check whether user wants S/Key support |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 1335 | SKEY_MSG="no" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1336 | AC_ARG_WITH([skey], |
Darren Tucker | 1b6f229 | 2005-02-11 16:11:49 +1100 | [diff] [blame] | 1337 | [ --with-skey[[=PATH]] Enable S/Key support (optionally in PATH)], |
Damien Miller | c547bf1 | 2001-02-16 10:18:12 +1100 | [diff] [blame] | 1338 | [ |
| 1339 | if test "x$withval" != "xno" ; then |
| 1340 | |
| 1341 | if test "x$withval" != "xyes" ; then |
| 1342 | CPPFLAGS="$CPPFLAGS -I${withval}/include" |
| 1343 | LDFLAGS="$LDFLAGS -L${withval}/lib" |
| 1344 | fi |
| 1345 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1346 | AC_DEFINE([SKEY], [1], [Define if you want S/Key support]) |
Damien Miller | c547bf1 | 2001-02-16 10:18:12 +1100 | [diff] [blame] | 1347 | LIBS="-lskey $LIBS" |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 1348 | SKEY_MSG="yes" |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 1349 | |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 1350 | AC_MSG_CHECKING([for s/key support]) |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 1351 | AC_LINK_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1352 | [AC_LANG_PROGRAM([[ |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 1353 | #include <stdio.h> |
| 1354 | #include <skey.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1355 | ]], [[ |
| 1356 | char *ff = skey_keyinfo(""); ff=""; |
| 1357 | exit(0); |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 1358 | ]])], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1359 | [AC_MSG_RESULT([yes])], |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 1360 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1361 | AC_MSG_RESULT([no]) |
Damien Miller | c547bf1 | 2001-02-16 10:18:12 +1100 | [diff] [blame] | 1362 | AC_MSG_ERROR([** Incomplete or missing s/key libraries.]) |
| 1363 | ]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1364 | AC_MSG_CHECKING([if skeychallenge takes 4 arguments]) |
| 1365 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
| 1366 | #include <stdio.h> |
| 1367 | #include <skey.h> |
| 1368 | ]], [[ |
| 1369 | (void)skeychallenge(NULL,"name","",0); |
| 1370 | ]])], |
| 1371 | [ |
| 1372 | AC_MSG_RESULT([yes]) |
| 1373 | AC_DEFINE([SKEYCHALLENGE_4ARG], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 1374 | [Define if your skeychallenge() |
| 1375 | function takes 4 arguments (NetBSD)])], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1376 | [ |
| 1377 | AC_MSG_RESULT([no]) |
| 1378 | ]) |
Damien Miller | c547bf1 | 2001-02-16 10:18:12 +1100 | [diff] [blame] | 1379 | fi |
| 1380 | ] |
| 1381 | ) |
| 1382 | |
Darren Tucker | aa3cbd1 | 2011-11-04 11:25:24 +1100 | [diff] [blame] | 1383 | # Check whether user wants to use ldns |
| 1384 | LDNS_MSG="no" |
| 1385 | AC_ARG_WITH(ldns, |
| 1386 | [ --with-ldns[[=PATH]] Use ldns for DNSSEC support (optionally in PATH)], |
| 1387 | [ |
| 1388 | if test "x$withval" != "xno" ; then |
| 1389 | |
| 1390 | if test "x$withval" != "xyes" ; then |
| 1391 | CPPFLAGS="$CPPFLAGS -I${withval}/include" |
| 1392 | LDFLAGS="$LDFLAGS -L${withval}/lib" |
| 1393 | fi |
| 1394 | |
| 1395 | AC_DEFINE(HAVE_LDNS, 1, [Define if you want ldns support]) |
| 1396 | LIBS="-lldns $LIBS" |
| 1397 | LDNS_MSG="yes" |
| 1398 | |
| 1399 | AC_MSG_CHECKING([for ldns support]) |
| 1400 | AC_LINK_IFELSE( |
| 1401 | [AC_LANG_SOURCE([[ |
| 1402 | #include <stdio.h> |
| 1403 | #include <stdlib.h> |
| 1404 | #include <stdint.h> |
| 1405 | #include <ldns/ldns.h> |
| 1406 | int main() { ldns_status status = ldns_verify_trusted(NULL, NULL, NULL, NULL); status=LDNS_STATUS_OK; exit(0); } |
| 1407 | ]]) |
| 1408 | ], |
| 1409 | [AC_MSG_RESULT(yes)], |
| 1410 | [ |
| 1411 | AC_MSG_RESULT(no) |
| 1412 | AC_MSG_ERROR([** Incomplete or missing ldns libraries.]) |
| 1413 | ]) |
| 1414 | fi |
| 1415 | ] |
| 1416 | ) |
| 1417 | |
Darren Tucker | 16bcc1c | 2004-11-07 20:14:34 +1100 | [diff] [blame] | 1418 | # Check whether user wants libedit support |
| 1419 | LIBEDIT_MSG="no" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1420 | AC_ARG_WITH([libedit], |
Darren Tucker | 1b6f229 | 2005-02-11 16:11:49 +1100 | [diff] [blame] | 1421 | [ --with-libedit[[=PATH]] Enable libedit support for sftp], |
Darren Tucker | 16bcc1c | 2004-11-07 20:14:34 +1100 | [diff] [blame] | 1422 | [ if test "x$withval" != "xno" ; then |
Darren Tucker | c4ccb12 | 2010-04-09 14:04:35 +1000 | [diff] [blame] | 1423 | if test "x$withval" = "xyes" ; then |
Darren Tucker | 5935389 | 2012-05-19 15:24:37 +1000 | [diff] [blame] | 1424 | AC_PATH_TOOL([PKGCONFIG], [pkg-config], [no]) |
Darren Tucker | c4ccb12 | 2010-04-09 14:04:35 +1000 | [diff] [blame] | 1425 | if test "x$PKGCONFIG" != "xno"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1426 | AC_MSG_CHECKING([if $PKGCONFIG knows about libedit]) |
Darren Tucker | c4ccb12 | 2010-04-09 14:04:35 +1000 | [diff] [blame] | 1427 | if "$PKGCONFIG" libedit; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1428 | AC_MSG_RESULT([yes]) |
Darren Tucker | c4ccb12 | 2010-04-09 14:04:35 +1000 | [diff] [blame] | 1429 | use_pkgconfig_for_libedit=yes |
| 1430 | else |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1431 | AC_MSG_RESULT([no]) |
Darren Tucker | c4ccb12 | 2010-04-09 14:04:35 +1000 | [diff] [blame] | 1432 | fi |
| 1433 | fi |
| 1434 | else |
Darren Tucker | c373a56 | 2005-09-22 20:15:08 +1000 | [diff] [blame] | 1435 | CPPFLAGS="$CPPFLAGS -I${withval}/include" |
| 1436 | if test -n "${need_dash_r}"; then |
| 1437 | LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}" |
| 1438 | else |
| 1439 | LDFLAGS="-L${withval}/lib ${LDFLAGS}" |
| 1440 | fi |
Darren Tucker | 1df6145 | 2005-03-21 09:58:07 +1100 | [diff] [blame] | 1441 | fi |
Damien Miller | 1f78980 | 2010-10-11 22:35:22 +1100 | [diff] [blame] | 1442 | if test "x$use_pkgconfig_for_libedit" = "xyes"; then |
Darren Tucker | 8369c8e | 2013-12-05 11:00:16 +1100 | [diff] [blame] | 1443 | LIBEDIT=`$PKGCONFIG --libs libedit` |
Darren Tucker | c4ccb12 | 2010-04-09 14:04:35 +1000 | [diff] [blame] | 1444 | CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`" |
| 1445 | else |
| 1446 | LIBEDIT="-ledit -lcurses" |
| 1447 | fi |
| 1448 | OTHERLIBS=`echo $LIBEDIT | sed 's/-ledit//'` |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1449 | AC_CHECK_LIB([edit], [el_init], |
| 1450 | [ AC_DEFINE([USE_LIBEDIT], [1], [Use libedit for sftp]) |
Darren Tucker | 16bcc1c | 2004-11-07 20:14:34 +1100 | [diff] [blame] | 1451 | LIBEDIT_MSG="yes" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1452 | AC_SUBST([LIBEDIT]) |
Darren Tucker | 16bcc1c | 2004-11-07 20:14:34 +1100 | [diff] [blame] | 1453 | ], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1454 | [ AC_MSG_ERROR([libedit not found]) ], |
Darren Tucker | c4ccb12 | 2010-04-09 14:04:35 +1000 | [diff] [blame] | 1455 | [ $OTHERLIBS ] |
Darren Tucker | 16bcc1c | 2004-11-07 20:14:34 +1100 | [diff] [blame] | 1456 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1457 | AC_MSG_CHECKING([if libedit version is compatible]) |
Tim Rice | c1819c8 | 2005-08-15 17:48:40 -0700 | [diff] [blame] | 1458 | AC_COMPILE_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1459 | [AC_LANG_PROGRAM([[ #include <histedit.h> ]], |
| 1460 | [[ |
Darren Tucker | c7572b2 | 2005-08-10 20:34:15 +1000 | [diff] [blame] | 1461 | int i = H_SETSIZE; |
| 1462 | el_init("", NULL, NULL, NULL); |
| 1463 | exit(0); |
Tim Rice | c1819c8 | 2005-08-15 17:48:40 -0700 | [diff] [blame] | 1464 | ]])], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1465 | [ AC_MSG_RESULT([yes]) ], |
| 1466 | [ AC_MSG_RESULT([no]) |
| 1467 | AC_MSG_ERROR([libedit version is not compatible]) ] |
Darren Tucker | c7572b2 | 2005-08-10 20:34:15 +1000 | [diff] [blame] | 1468 | ) |
Darren Tucker | 16bcc1c | 2004-11-07 20:14:34 +1100 | [diff] [blame] | 1469 | fi ] |
| 1470 | ) |
| 1471 | |
Darren Tucker | d9f8891 | 2005-02-20 21:01:48 +1100 | [diff] [blame] | 1472 | AUDIT_MODULE=none |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1473 | AC_ARG_WITH([audit], |
Darren Tucker | ea52a82 | 2011-01-17 21:15:27 +1100 | [diff] [blame] | 1474 | [ --with-audit=module Enable audit support (modules=debug,bsm,linux)], |
Darren Tucker | d9f8891 | 2005-02-20 21:01:48 +1100 | [diff] [blame] | 1475 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1476 | AC_MSG_CHECKING([for supported audit module]) |
Darren Tucker | d9f8891 | 2005-02-20 21:01:48 +1100 | [diff] [blame] | 1477 | case "$withval" in |
| 1478 | bsm) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1479 | AC_MSG_RESULT([bsm]) |
Darren Tucker | d9f8891 | 2005-02-20 21:01:48 +1100 | [diff] [blame] | 1480 | AUDIT_MODULE=bsm |
| 1481 | dnl Checks for headers, libs and functions |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1482 | AC_CHECK_HEADERS([bsm/audit.h], [], |
| 1483 | [AC_MSG_ERROR([BSM enabled and bsm/audit.h not found])], |
Darren Tucker | 6d0d6fb | 2006-09-09 01:05:21 +1000 | [diff] [blame] | 1484 | [ |
| 1485 | #ifdef HAVE_TIME_H |
| 1486 | # include <time.h> |
| 1487 | #endif |
| 1488 | ] |
| 1489 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1490 | AC_CHECK_LIB([bsm], [getaudit], [], |
| 1491 | [AC_MSG_ERROR([BSM enabled and required library not found])]) |
| 1492 | AC_CHECK_FUNCS([getaudit], [], |
| 1493 | [AC_MSG_ERROR([BSM enabled and required function not found])]) |
Darren Tucker | d9f8891 | 2005-02-20 21:01:48 +1100 | [diff] [blame] | 1494 | # These are optional |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1495 | AC_CHECK_FUNCS([getaudit_addr aug_get_machine]) |
| 1496 | AC_DEFINE([USE_BSM_AUDIT], [1], [Use BSM audit module]) |
Darren Tucker | 1fcec9d | 2013-12-19 11:00:12 +1100 | [diff] [blame] | 1497 | if test "$sol2ver" -ge 11; then |
Darren Tucker | 93a2d41 | 2012-02-24 10:40:41 +1100 | [diff] [blame] | 1498 | SSHDLIBS="$SSHDLIBS -lscf" |
| 1499 | AC_DEFINE([BROKEN_BSM_API], [1], |
| 1500 | [The system has incomplete BSM API]) |
| 1501 | fi |
Darren Tucker | d9f8891 | 2005-02-20 21:01:48 +1100 | [diff] [blame] | 1502 | ;; |
Darren Tucker | ea52a82 | 2011-01-17 21:15:27 +1100 | [diff] [blame] | 1503 | linux) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1504 | AC_MSG_RESULT([linux]) |
Darren Tucker | ea52a82 | 2011-01-17 21:15:27 +1100 | [diff] [blame] | 1505 | AUDIT_MODULE=linux |
| 1506 | dnl Checks for headers, libs and functions |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1507 | AC_CHECK_HEADERS([libaudit.h]) |
Darren Tucker | ea52a82 | 2011-01-17 21:15:27 +1100 | [diff] [blame] | 1508 | SSHDLIBS="$SSHDLIBS -laudit" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1509 | AC_DEFINE([USE_LINUX_AUDIT], [1], [Use Linux audit module]) |
Darren Tucker | ea52a82 | 2011-01-17 21:15:27 +1100 | [diff] [blame] | 1510 | ;; |
Darren Tucker | d9f8891 | 2005-02-20 21:01:48 +1100 | [diff] [blame] | 1511 | debug) |
| 1512 | AUDIT_MODULE=debug |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1513 | AC_MSG_RESULT([debug]) |
| 1514 | AC_DEFINE([SSH_AUDIT_EVENTS], [1], [Use audit debugging module]) |
Darren Tucker | d9f8891 | 2005-02-20 21:01:48 +1100 | [diff] [blame] | 1515 | ;; |
Tim Rice | 8bc6b90 | 2005-08-09 10:09:53 -0700 | [diff] [blame] | 1516 | no) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1517 | AC_MSG_RESULT([no]) |
Tim Rice | 8bc6b90 | 2005-08-09 10:09:53 -0700 | [diff] [blame] | 1518 | ;; |
Darren Tucker | d9f8891 | 2005-02-20 21:01:48 +1100 | [diff] [blame] | 1519 | *) |
| 1520 | AC_MSG_ERROR([Unknown audit module $withval]) |
| 1521 | ;; |
| 1522 | esac ] |
| 1523 | ) |
| 1524 | |
Darren Tucker | 096118d | 2014-01-21 12:48:51 +1100 | [diff] [blame] | 1525 | AC_ARG_WITH([pie], |
| 1526 | [ --with-pie Build Position Independent Executables if possible], [ |
| 1527 | if test "x$withval" = "xno"; then |
Damien Miller | 852472a | 2014-01-22 16:31:18 +1100 | [diff] [blame] | 1528 | use_pie=no |
Darren Tucker | 096118d | 2014-01-21 12:48:51 +1100 | [diff] [blame] | 1529 | fi |
| 1530 | if test "x$withval" = "xyes"; then |
Damien Miller | 852472a | 2014-01-22 16:31:18 +1100 | [diff] [blame] | 1531 | use_pie=yes |
Darren Tucker | 096118d | 2014-01-21 12:48:51 +1100 | [diff] [blame] | 1532 | fi |
| 1533 | ] |
| 1534 | ) |
Damien Miller | 852472a | 2014-01-22 16:31:18 +1100 | [diff] [blame] | 1535 | if test "x$use_pie" = "x"; then |
| 1536 | use_pie=no |
| 1537 | fi |
| 1538 | if test "x$use_toolchain_hardening" != "x1" && test "x$use_pie" = "xauto"; then |
| 1539 | # Turn off automatic PIE when toolchain hardening is off. |
| 1540 | use_pie=no |
| 1541 | fi |
Damien Miller | c161fc9 | 2014-01-29 21:01:33 +1100 | [diff] [blame] | 1542 | if test "x$use_pie" = "xauto"; then |
Damien Miller | 852472a | 2014-01-22 16:31:18 +1100 | [diff] [blame] | 1543 | # Automatic PIE requires gcc >= 4.x |
| 1544 | AC_MSG_CHECKING([for gcc >= 4.x]) |
| 1545 | AC_COMPILE_IFELSE([AC_LANG_SOURCE([[ |
| 1546 | #if !defined(__GNUC__) || __GNUC__ < 4 |
| 1547 | #error gcc is too old |
| 1548 | #endif |
| 1549 | ]])], |
| 1550 | [ AC_MSG_RESULT([yes]) ], |
| 1551 | [ AC_MSG_RESULT([no]) |
| 1552 | use_pie=no ] |
| 1553 | ) |
| 1554 | fi |
| 1555 | if test "x$use_pie" != "xno"; then |
Damien Miller | 5c2ff5e | 2014-01-22 21:30:12 +1100 | [diff] [blame] | 1556 | SAVED_CFLAGS="$CFLAGS" |
| 1557 | SAVED_LDFLAGS="$LDFLAGS" |
Darren Tucker | 096118d | 2014-01-21 12:48:51 +1100 | [diff] [blame] | 1558 | OSSH_CHECK_CFLAG_COMPILE([-fPIE]) |
| 1559 | OSSH_CHECK_LDFLAG_LINK([-pie]) |
Damien Miller | 5c2ff5e | 2014-01-22 21:30:12 +1100 | [diff] [blame] | 1560 | # We use both -fPIE and -pie or neither. |
| 1561 | AC_MSG_CHECKING([whether both -fPIE and -pie are supported]) |
| 1562 | if echo "x $CFLAGS" | grep ' -fPIE' >/dev/null 2>&1 && \ |
| 1563 | echo "x $LDFLAGS" | grep ' -pie' >/dev/null 2>&1 ; then |
| 1564 | AC_MSG_RESULT([yes]) |
| 1565 | else |
| 1566 | AC_MSG_RESULT([no]) |
| 1567 | CFLAGS="$SAVED_CFLAGS" |
| 1568 | LDFLAGS="$SAVED_LDFLAGS" |
| 1569 | fi |
Darren Tucker | 096118d | 2014-01-21 12:48:51 +1100 | [diff] [blame] | 1570 | fi |
| 1571 | |
Damien Miller | fe1f143 | 2003-02-24 15:45:42 +1100 | [diff] [blame] | 1572 | dnl Checks for library functions. Please keep in alphabetical order |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1573 | AC_CHECK_FUNCS([ \ |
Damien Miller | 1ff130d | 2013-12-07 11:51:51 +1100 | [diff] [blame] | 1574 | Blowfish_initstate \ |
| 1575 | Blowfish_expandstate \ |
| 1576 | Blowfish_expand0state \ |
| 1577 | Blowfish_stream2word \ |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 1578 | asprintf \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1579 | b64_ntop \ |
| 1580 | __b64_ntop \ |
| 1581 | b64_pton \ |
| 1582 | __b64_pton \ |
| 1583 | bcopy \ |
Damien Miller | a913442 | 2013-12-07 11:35:36 +1100 | [diff] [blame] | 1584 | bcrypt_pbkdf \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1585 | bindresvport_sa \ |
Damien Miller | 1ff130d | 2013-12-07 11:51:51 +1100 | [diff] [blame] | 1586 | blf_enc \ |
Damien Miller | c96d853 | 2014-01-25 13:12:28 +1100 | [diff] [blame] | 1587 | cap_rights_limit \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1588 | clock \ |
| 1589 | closefrom \ |
| 1590 | dirfd \ |
Darren Tucker | efdf534 | 2013-05-30 08:29:08 +1000 | [diff] [blame] | 1591 | endgrent \ |
Damien Miller | 1d2c456 | 2014-02-04 11:18:20 +1100 | [diff] [blame] | 1592 | explicit_bzero \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1593 | fchmod \ |
| 1594 | fchown \ |
| 1595 | freeaddrinfo \ |
Darren Tucker | a5cf1e2 | 2014-01-17 18:10:58 +1100 | [diff] [blame] | 1596 | fstatfs \ |
Darren Tucker | 598eaa6 | 2008-06-09 03:32:29 +1000 | [diff] [blame] | 1597 | fstatvfs \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1598 | futimes \ |
| 1599 | getaddrinfo \ |
| 1600 | getcwd \ |
| 1601 | getgrouplist \ |
| 1602 | getnameinfo \ |
| 1603 | getopt \ |
| 1604 | getpeereid \ |
Darren Tucker | 164aa30 | 2007-03-21 21:39:57 +1100 | [diff] [blame] | 1605 | getpeerucred \ |
Darren Tucker | 3c4a24c | 2013-02-15 11:41:35 +1100 | [diff] [blame] | 1606 | getpgid \ |
| 1607 | getpgrp \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1608 | _getpty \ |
| 1609 | getrlimit \ |
| 1610 | getttyent \ |
| 1611 | glob \ |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 1612 | group_from_gid \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1613 | inet_aton \ |
| 1614 | inet_ntoa \ |
| 1615 | inet_ntop \ |
| 1616 | innetgr \ |
| 1617 | login_getcapbool \ |
Darren Tucker | ae133d4 | 2013-06-06 08:30:20 +1000 | [diff] [blame] | 1618 | mblen \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1619 | md5_crypt \ |
| 1620 | memmove \ |
Damien Miller | 3d673d1 | 2014-08-27 06:32:01 +1000 | [diff] [blame] | 1621 | memset_s \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1622 | mkdtemp \ |
| 1623 | mmap \ |
| 1624 | ngetaddrinfo \ |
| 1625 | nsleep \ |
| 1626 | ogetaddrinfo \ |
| 1627 | openlog_r \ |
Darren Tucker | febf0f5 | 2007-06-25 22:15:12 +1000 | [diff] [blame] | 1628 | poll \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1629 | prctl \ |
| 1630 | pstat \ |
| 1631 | readpassphrase \ |
| 1632 | realpath \ |
| 1633 | recvmsg \ |
| 1634 | rresvport_af \ |
| 1635 | sendmsg \ |
| 1636 | setdtablesize \ |
| 1637 | setegid \ |
| 1638 | setenv \ |
| 1639 | seteuid \ |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 1640 | setgroupent \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1641 | setgroups \ |
Darren Tucker | 34f702a | 2012-07-04 08:50:09 +1000 | [diff] [blame] | 1642 | setlinebuf \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1643 | setlogin \ |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 1644 | setpassent\ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1645 | setpcred \ |
| 1646 | setproctitle \ |
| 1647 | setregid \ |
| 1648 | setreuid \ |
| 1649 | setrlimit \ |
| 1650 | setsid \ |
| 1651 | setvbuf \ |
| 1652 | sigaction \ |
| 1653 | sigvec \ |
| 1654 | snprintf \ |
| 1655 | socketpair \ |
Darren Tucker | 5b2e2ba | 2008-06-08 09:25:28 +1000 | [diff] [blame] | 1656 | statfs \ |
| 1657 | statvfs \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1658 | strdup \ |
| 1659 | strerror \ |
| 1660 | strlcat \ |
| 1661 | strlcpy \ |
| 1662 | strmode \ |
Darren Tucker | b54f50e | 2011-09-29 23:17:18 +1000 | [diff] [blame] | 1663 | strnlen \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1664 | strnvis \ |
Darren Tucker | aa74f67 | 2010-08-16 13:15:23 +1000 | [diff] [blame] | 1665 | strptime \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1666 | strtonum \ |
Darren Tucker | 81eb5d5 | 2005-06-01 21:39:33 +1000 | [diff] [blame] | 1667 | strtoll \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1668 | strtoul \ |
Darren Tucker | 8e6fb78 | 2013-02-15 12:13:01 +1100 | [diff] [blame] | 1669 | strtoull \ |
Damien Miller | 34a1769 | 2007-06-11 14:15:42 +1000 | [diff] [blame] | 1670 | swap32 \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1671 | sysconf \ |
| 1672 | tcgetpgrp \ |
Damien Miller | aa18063 | 2010-10-07 21:25:27 +1100 | [diff] [blame] | 1673 | timingsafe_bcmp \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1674 | truncate \ |
| 1675 | unsetenv \ |
| 1676 | updwtmpx \ |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 1677 | user_from_uid \ |
Damien Miller | f4db77d | 2013-03-15 10:34:25 +1100 | [diff] [blame] | 1678 | usleep \ |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 1679 | vasprintf \ |
Darren Tucker | 0c9653f | 2005-05-28 15:58:14 +1000 | [diff] [blame] | 1680 | vsnprintf \ |
| 1681 | waitpid \ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1682 | ]) |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 1683 | |
Tim Rice | c7a8af0 | 2010-11-08 14:26:23 -0800 | [diff] [blame] | 1684 | AC_LINK_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1685 | [AC_LANG_PROGRAM( |
| 1686 | [[ #include <ctype.h> ]], |
| 1687 | [[ return (isblank('a')); ]])], |
| 1688 | [AC_DEFINE([HAVE_ISBLANK], [1], [Define if you have isblank(3C).]) |
Tim Rice | c7a8af0 | 2010-11-08 14:26:23 -0800 | [diff] [blame] | 1689 | ]) |
| 1690 | |
Damien Miller | b3c9f78 | 2010-02-12 10:11:34 +1100 | [diff] [blame] | 1691 | # PKCS#11 support requires dlopen() and co |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1692 | AC_SEARCH_LIBS([dlopen], [dl], |
| 1693 | [AC_DEFINE([ENABLE_PKCS11], [], [Enable for PKCS#11 support])] |
Damien Miller | b3c9f78 | 2010-02-12 10:11:34 +1100 | [diff] [blame] | 1694 | ) |
| 1695 | |
Darren Tucker | d5e082f | 2003-09-22 12:08:23 +1000 | [diff] [blame] | 1696 | # IRIX has a const char return value for gai_strerror() |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1697 | AC_CHECK_FUNCS([gai_strerror], [ |
| 1698 | AC_DEFINE([HAVE_GAI_STRERROR]) |
| 1699 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Darren Tucker | d5e082f | 2003-09-22 12:08:23 +1000 | [diff] [blame] | 1700 | #include <sys/types.h> |
| 1701 | #include <sys/socket.h> |
| 1702 | #include <netdb.h> |
| 1703 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1704 | const char *gai_strerror(int); |
| 1705 | ]], [[ |
| 1706 | char *str; |
| 1707 | str = gai_strerror(0); |
| 1708 | ]])], [ |
| 1709 | AC_DEFINE([HAVE_CONST_GAI_STRERROR_PROTO], [1], |
| 1710 | [Define if gai_strerror() returns const char *])], [])]) |
Darren Tucker | d5e082f | 2003-09-22 12:08:23 +1000 | [diff] [blame] | 1711 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1712 | AC_SEARCH_LIBS([nanosleep], [rt posix4], [AC_DEFINE([HAVE_NANOSLEEP], [1], |
| 1713 | [Some systems put nanosleep outside of libc])]) |
Damien Miller | cd6853c | 2003-01-28 11:33:42 +1100 | [diff] [blame] | 1714 | |
Darren Tucker | a710891 | 2013-06-02 08:18:31 +1000 | [diff] [blame] | 1715 | AC_SEARCH_LIBS([clock_gettime], [rt], |
| 1716 | [AC_DEFINE([HAVE_CLOCK_GETTIME], [1], [Have clock_gettime])]) |
| 1717 | |
Darren Tucker | f1159b5 | 2003-07-07 19:44:01 +1000 | [diff] [blame] | 1718 | dnl Make sure prototypes are defined for these before using them. |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1719 | AC_CHECK_DECL([getrusage], [AC_CHECK_FUNCS([getrusage])]) |
| 1720 | AC_CHECK_DECL([strsep], |
| 1721 | [AC_CHECK_FUNCS([strsep])], |
Darren Tucker | 390b6d5 | 2005-05-28 16:54:36 +1000 | [diff] [blame] | 1722 | [], |
| 1723 | [ |
| 1724 | #ifdef HAVE_STRING_H |
| 1725 | # include <string.h> |
| 1726 | #endif |
| 1727 | ]) |
Ben Lindstrom | 3e00647 | 2002-10-16 00:24:03 +0000 | [diff] [blame] | 1728 | |
Darren Tucker | b2427c8 | 2003-09-10 15:22:44 +1000 | [diff] [blame] | 1729 | dnl tcsendbreak might be a macro |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1730 | AC_CHECK_DECL([tcsendbreak], |
| 1731 | [AC_DEFINE([HAVE_TCSENDBREAK])], |
| 1732 | [AC_CHECK_FUNCS([tcsendbreak])], |
Darren Tucker | b2427c8 | 2003-09-10 15:22:44 +1000 | [diff] [blame] | 1733 | [#include <termios.h>] |
| 1734 | ) |
| 1735 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1736 | AC_CHECK_DECLS([h_errno], , ,[#include <netdb.h>]) |
Darren Tucker | 5bb1400 | 2004-04-23 18:53:10 +1000 | [diff] [blame] | 1737 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1738 | AC_CHECK_DECLS([SHUT_RD], , , |
Darren Tucker | 128a089 | 2006-07-12 19:02:56 +1000 | [diff] [blame] | 1739 | [ |
| 1740 | #include <sys/types.h> |
| 1741 | #include <sys/socket.h> |
| 1742 | ]) |
Darren Tucker | 248469b | 2006-07-12 14:14:31 +1000 | [diff] [blame] | 1743 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1744 | AC_CHECK_DECLS([O_NONBLOCK], , , |
Darren Tucker | 248469b | 2006-07-12 14:14:31 +1000 | [diff] [blame] | 1745 | [ |
| 1746 | #include <sys/types.h> |
| 1747 | #ifdef HAVE_SYS_STAT_H |
| 1748 | # include <sys/stat.h> |
| 1749 | #endif |
| 1750 | #ifdef HAVE_FCNTL_H |
| 1751 | # include <fcntl.h> |
| 1752 | #endif |
| 1753 | ]) |
| 1754 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1755 | AC_CHECK_DECLS([writev], , , [ |
Darren Tucker | ed0b592 | 2006-09-03 22:44:49 +1000 | [diff] [blame] | 1756 | #include <sys/types.h> |
| 1757 | #include <sys/uio.h> |
| 1758 | #include <unistd.h> |
| 1759 | ]) |
| 1760 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1761 | AC_CHECK_DECLS([MAXSYMLINKS], , , [ |
Darren Tucker | 6d862a5 | 2007-04-29 14:39:02 +1000 | [diff] [blame] | 1762 | #include <sys/param.h> |
| 1763 | ]) |
| 1764 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1765 | AC_CHECK_DECLS([offsetof], , , [ |
Darren Tucker | dca0edf | 2007-04-29 15:06:44 +1000 | [diff] [blame] | 1766 | #include <stddef.h> |
| 1767 | ]) |
| 1768 | |
Darren Tucker | c7aad00 | 2013-06-02 07:18:47 +1000 | [diff] [blame] | 1769 | # extra bits for select(2) |
| 1770 | AC_CHECK_DECLS([howmany, NFDBITS], [], [], [[ |
| 1771 | #include <sys/param.h> |
| 1772 | #include <sys/types.h> |
| 1773 | #ifdef HAVE_SYS_SYSMACROS_H |
| 1774 | #include <sys/sysmacros.h> |
| 1775 | #endif |
| 1776 | #ifdef HAVE_SYS_SELECT_H |
| 1777 | #include <sys/select.h> |
| 1778 | #endif |
| 1779 | #ifdef HAVE_SYS_TIME_H |
| 1780 | #include <sys/time.h> |
| 1781 | #endif |
| 1782 | #ifdef HAVE_UNISTD_H |
| 1783 | #include <unistd.h> |
| 1784 | #endif |
| 1785 | ]]) |
| 1786 | AC_CHECK_TYPES([fd_mask], [], [], [[ |
| 1787 | #include <sys/param.h> |
| 1788 | #include <sys/types.h> |
| 1789 | #ifdef HAVE_SYS_SELECT_H |
| 1790 | #include <sys/select.h> |
| 1791 | #endif |
| 1792 | #ifdef HAVE_SYS_TIME_H |
| 1793 | #include <sys/time.h> |
| 1794 | #endif |
| 1795 | #ifdef HAVE_UNISTD_H |
| 1796 | #include <unistd.h> |
| 1797 | #endif |
| 1798 | ]]) |
| 1799 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1800 | AC_CHECK_FUNCS([setresuid], [ |
Darren Tucker | 2a6b029 | 2003-12-31 14:59:17 +1100 | [diff] [blame] | 1801 | dnl Some platorms have setresuid that isn't implemented, test for this |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1802 | AC_MSG_CHECKING([if setresuid seems to work]) |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 1803 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1804 | [AC_LANG_PROGRAM([[ |
Darren Tucker | e937be3 | 2003-12-17 18:53:26 +1100 | [diff] [blame] | 1805 | #include <stdlib.h> |
| 1806 | #include <errno.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1807 | ]], [[ |
| 1808 | errno=0; |
| 1809 | setresuid(0,0,0); |
| 1810 | if (errno==ENOSYS) |
| 1811 | exit(1); |
| 1812 | else |
| 1813 | exit(0); |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 1814 | ]])], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1815 | [AC_MSG_RESULT([yes])], |
| 1816 | [AC_DEFINE([BROKEN_SETRESUID], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 1817 | [Define if your setresuid() is broken]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1818 | AC_MSG_RESULT([not implemented])], |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 1819 | [AC_MSG_WARN([cross compiling: not checking setresuid])] |
Darren Tucker | 2a6b029 | 2003-12-31 14:59:17 +1100 | [diff] [blame] | 1820 | ) |
| 1821 | ]) |
Darren Tucker | e937be3 | 2003-12-17 18:53:26 +1100 | [diff] [blame] | 1822 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1823 | AC_CHECK_FUNCS([setresgid], [ |
Darren Tucker | 2a6b029 | 2003-12-31 14:59:17 +1100 | [diff] [blame] | 1824 | dnl Some platorms have setresgid that isn't implemented, test for this |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1825 | AC_MSG_CHECKING([if setresgid seems to work]) |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 1826 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1827 | [AC_LANG_PROGRAM([[ |
Darren Tucker | e937be3 | 2003-12-17 18:53:26 +1100 | [diff] [blame] | 1828 | #include <stdlib.h> |
| 1829 | #include <errno.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1830 | ]], [[ |
| 1831 | errno=0; |
| 1832 | setresgid(0,0,0); |
| 1833 | if (errno==ENOSYS) |
| 1834 | exit(1); |
| 1835 | else |
| 1836 | exit(0); |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 1837 | ]])], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1838 | [AC_MSG_RESULT([yes])], |
| 1839 | [AC_DEFINE([BROKEN_SETRESGID], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 1840 | [Define if your setresgid() is broken]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1841 | AC_MSG_RESULT([not implemented])], |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 1842 | [AC_MSG_WARN([cross compiling: not checking setresuid])] |
Darren Tucker | 2a6b029 | 2003-12-31 14:59:17 +1100 | [diff] [blame] | 1843 | ) |
| 1844 | ]) |
Darren Tucker | e937be3 | 2003-12-17 18:53:26 +1100 | [diff] [blame] | 1845 | |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 1846 | dnl Checks for time functions |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1847 | AC_CHECK_FUNCS([gettimeofday time]) |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 1848 | dnl Checks for utmp functions |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1849 | AC_CHECK_FUNCS([endutent getutent getutid getutline pututline setutent]) |
| 1850 | AC_CHECK_FUNCS([utmpname]) |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 1851 | dnl Checks for utmpx functions |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1852 | AC_CHECK_FUNCS([endutxent getutxent getutxid getutxline getutxuser pututxline]) |
| 1853 | AC_CHECK_FUNCS([setutxdb setutxent utmpxname]) |
Damien Miller | 20e231f | 2009-02-12 13:12:21 +1100 | [diff] [blame] | 1854 | dnl Checks for lastlog functions |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1855 | AC_CHECK_FUNCS([getlastlogxbyname]) |
Damien Miller | cedfecc | 1999-11-15 14:36:53 +1100 | [diff] [blame] | 1856 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1857 | AC_CHECK_FUNC([daemon], |
| 1858 | [AC_DEFINE([HAVE_DAEMON], [1], [Define if your libraries define daemon()])], |
| 1859 | [AC_CHECK_LIB([bsd], [daemon], |
| 1860 | [LIBS="$LIBS -lbsd"; AC_DEFINE([HAVE_DAEMON])])] |
Damien Miller | 04f8014 | 1999-11-19 15:32:34 +1100 | [diff] [blame] | 1861 | ) |
| 1862 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1863 | AC_CHECK_FUNC([getpagesize], |
| 1864 | [AC_DEFINE([HAVE_GETPAGESIZE], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 1865 | [Define if your libraries define getpagesize()])], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1866 | [AC_CHECK_LIB([ucb], [getpagesize], |
| 1867 | [LIBS="$LIBS -lucb"; AC_DEFINE([HAVE_GETPAGESIZE])])] |
Damien Miller | 9fb07e4 | 2000-03-05 16:22:59 +1100 | [diff] [blame] | 1868 | ) |
| 1869 | |
Damien Miller | cb170cb | 2000-07-01 16:52:55 +1000 | [diff] [blame] | 1870 | # Check for broken snprintf |
| 1871 | if test "x$ac_cv_func_snprintf" = "xyes" ; then |
| 1872 | AC_MSG_CHECKING([whether snprintf correctly terminates long strings]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 1873 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1874 | [AC_LANG_PROGRAM([[ #include <stdio.h> ]], |
| 1875 | [[ |
| 1876 | char b[5]; |
| 1877 | snprintf(b,5,"123456789"); |
| 1878 | exit(b[4]!='\0'); |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 1879 | ]])], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1880 | [AC_MSG_RESULT([yes])], |
Damien Miller | cb170cb | 2000-07-01 16:52:55 +1000 | [diff] [blame] | 1881 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1882 | AC_MSG_RESULT([no]) |
| 1883 | AC_DEFINE([BROKEN_SNPRINTF], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 1884 | [Define if your snprintf is busted]) |
Damien Miller | cb170cb | 2000-07-01 16:52:55 +1000 | [diff] [blame] | 1885 | AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 1886 | ], |
| 1887 | [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ] |
Damien Miller | cb170cb | 2000-07-01 16:52:55 +1000 | [diff] [blame] | 1888 | ) |
| 1889 | fi |
| 1890 | |
Damien Miller | d244a58 | 2014-08-23 17:06:49 +1000 | [diff] [blame] | 1891 | # We depend on vsnprintf returning the right thing on overflow: the |
| 1892 | # number of characters it tried to create (as per SUSv3) |
| 1893 | if test "x$ac_cv_func_vsnprintf" = "xyes" ; then |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 1894 | AC_MSG_CHECKING([whether vsnprintf returns correct values on overflow]) |
| 1895 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1896 | [AC_LANG_PROGRAM([[ |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 1897 | #include <sys/types.h> |
| 1898 | #include <stdio.h> |
| 1899 | #include <stdarg.h> |
| 1900 | |
Damien Miller | d244a58 | 2014-08-23 17:06:49 +1000 | [diff] [blame] | 1901 | int x_snprintf(char *str, size_t count, const char *fmt, ...) |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 1902 | { |
Damien Miller | d244a58 | 2014-08-23 17:06:49 +1000 | [diff] [blame] | 1903 | size_t ret; |
| 1904 | va_list ap; |
| 1905 | |
| 1906 | va_start(ap, fmt); |
| 1907 | ret = vsnprintf(str, count, fmt, ap); |
| 1908 | va_end(ap); |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 1909 | return ret; |
| 1910 | } |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1911 | ]], [[ |
Damien Miller | d244a58 | 2014-08-23 17:06:49 +1000 | [diff] [blame] | 1912 | char x[1]; |
| 1913 | if (x_snprintf(x, 1, "%s %d", "hello", 12345) != 11) |
| 1914 | return 1; |
| 1915 | if (x_snprintf(NULL, 0, "%s %d", "hello", 12345) != 11) |
| 1916 | return 1; |
| 1917 | return 0; |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1918 | ]])], |
| 1919 | [AC_MSG_RESULT([yes])], |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 1920 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1921 | AC_MSG_RESULT([no]) |
| 1922 | AC_DEFINE([BROKEN_SNPRINTF], [1], |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 1923 | [Define if your snprintf is busted]) |
| 1924 | AC_MSG_WARN([****** Your vsnprintf() function is broken, complain to your vendor]) |
| 1925 | ], |
| 1926 | [ AC_MSG_WARN([cross compiling: Assuming working vsnprintf()]) ] |
| 1927 | ) |
| 1928 | fi |
| 1929 | |
Darren Tucker | d40c66c | 2005-12-17 22:32:03 +1100 | [diff] [blame] | 1930 | # On systems where [v]snprintf is broken, but is declared in stdio, |
| 1931 | # check that the fmt argument is const char * or just char *. |
| 1932 | # This is only useful for when BROKEN_SNPRINTF |
| 1933 | AC_MSG_CHECKING([whether snprintf can declare const char *fmt]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1934 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
| 1935 | #include <stdio.h> |
| 1936 | int snprintf(char *a, size_t b, const char *c, ...) { return 0; } |
| 1937 | ]], [[ |
| 1938 | snprintf(0, 0, 0); |
| 1939 | ]])], |
| 1940 | [AC_MSG_RESULT([yes]) |
| 1941 | AC_DEFINE([SNPRINTF_CONST], [const], |
Darren Tucker | d40c66c | 2005-12-17 22:32:03 +1100 | [diff] [blame] | 1942 | [Define as const if snprintf() can declare const char *fmt])], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1943 | [AC_MSG_RESULT([no]) |
| 1944 | AC_DEFINE([SNPRINTF_CONST], [/* not const */])]) |
Darren Tucker | d40c66c | 2005-12-17 22:32:03 +1100 | [diff] [blame] | 1945 | |
Damien Miller | b409718 | 2004-05-23 14:09:40 +1000 | [diff] [blame] | 1946 | # Check for missing getpeereid (or equiv) support |
| 1947 | NO_PEERCHECK="" |
Darren Tucker | 164aa30 | 2007-03-21 21:39:57 +1100 | [diff] [blame] | 1948 | if test "x$ac_cv_func_getpeereid" != "xyes" -a "x$ac_cv_func_getpeerucred" != "xyes"; then |
Damien Miller | b409718 | 2004-05-23 14:09:40 +1000 | [diff] [blame] | 1949 | AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1950 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
| 1951 | #include <sys/types.h> |
| 1952 | #include <sys/socket.h>]], [[int i = SO_PEERCRED;]])], |
| 1953 | [ AC_MSG_RESULT([yes]) |
| 1954 | AC_DEFINE([HAVE_SO_PEERCRED], [1], [Have PEERCRED socket option]) |
| 1955 | ], [AC_MSG_RESULT([no]) |
| 1956 | NO_PEERCHECK=1 |
| 1957 | ]) |
Damien Miller | b409718 | 2004-05-23 14:09:40 +1000 | [diff] [blame] | 1958 | fi |
| 1959 | |
Damien Miller | e832819 | 2003-01-07 15:18:32 +1100 | [diff] [blame] | 1960 | dnl see whether mkstemp() requires XXXXXX |
| 1961 | if test "x$ac_cv_func_mkdtemp" = "xyes" ; then |
| 1962 | AC_MSG_CHECKING([for (overly) strict mkstemp]) |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 1963 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1964 | [AC_LANG_PROGRAM([[ |
Damien Miller | e832819 | 2003-01-07 15:18:32 +1100 | [diff] [blame] | 1965 | #include <stdlib.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1966 | ]], [[ |
| 1967 | char template[]="conftest.mkstemp-test"; |
| 1968 | if (mkstemp(template) == -1) |
| 1969 | exit(1); |
| 1970 | unlink(template); |
| 1971 | exit(0); |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 1972 | ]])], |
Damien Miller | e832819 | 2003-01-07 15:18:32 +1100 | [diff] [blame] | 1973 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1974 | AC_MSG_RESULT([no]) |
Damien Miller | e832819 | 2003-01-07 15:18:32 +1100 | [diff] [blame] | 1975 | ], |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 1976 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1977 | AC_MSG_RESULT([yes]) |
| 1978 | AC_DEFINE([HAVE_STRICT_MKSTEMP], [1], [Silly mkstemp()]) |
Damien Miller | e832819 | 2003-01-07 15:18:32 +1100 | [diff] [blame] | 1979 | ], |
| 1980 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1981 | AC_MSG_RESULT([yes]) |
| 1982 | AC_DEFINE([HAVE_STRICT_MKSTEMP]) |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 1983 | ] |
Damien Miller | e832819 | 2003-01-07 15:18:32 +1100 | [diff] [blame] | 1984 | ) |
| 1985 | fi |
| 1986 | |
Darren Tucker | 70a3d55 | 2003-08-21 17:58:29 +1000 | [diff] [blame] | 1987 | dnl make sure that openpty does not reacquire controlling terminal |
| 1988 | if test ! -z "$check_for_openpty_ctty_bug"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1989 | AC_MSG_CHECKING([if openpty correctly handles controlling tty]) |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 1990 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1991 | [AC_LANG_PROGRAM([[ |
Darren Tucker | 70a3d55 | 2003-08-21 17:58:29 +1000 | [diff] [blame] | 1992 | #include <stdio.h> |
| 1993 | #include <sys/fcntl.h> |
| 1994 | #include <sys/types.h> |
| 1995 | #include <sys/wait.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 1996 | ]], [[ |
Darren Tucker | 70a3d55 | 2003-08-21 17:58:29 +1000 | [diff] [blame] | 1997 | pid_t pid; |
| 1998 | int fd, ptyfd, ttyfd, status; |
| 1999 | |
| 2000 | pid = fork(); |
| 2001 | if (pid < 0) { /* failed */ |
| 2002 | exit(1); |
| 2003 | } else if (pid > 0) { /* parent */ |
| 2004 | waitpid(pid, &status, 0); |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 2005 | if (WIFEXITED(status)) |
Darren Tucker | 70a3d55 | 2003-08-21 17:58:29 +1000 | [diff] [blame] | 2006 | exit(WEXITSTATUS(status)); |
| 2007 | else |
| 2008 | exit(2); |
| 2009 | } else { /* child */ |
| 2010 | close(0); close(1); close(2); |
| 2011 | setsid(); |
| 2012 | openpty(&ptyfd, &ttyfd, NULL, NULL, NULL); |
| 2013 | fd = open("/dev/tty", O_RDWR | O_NOCTTY); |
| 2014 | if (fd >= 0) |
| 2015 | exit(3); /* Acquired ctty: broken */ |
| 2016 | else |
| 2017 | exit(0); /* Did not acquire ctty: OK */ |
| 2018 | } |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 2019 | ]])], |
Darren Tucker | 70a3d55 | 2003-08-21 17:58:29 +1000 | [diff] [blame] | 2020 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2021 | AC_MSG_RESULT([yes]) |
Darren Tucker | 70a3d55 | 2003-08-21 17:58:29 +1000 | [diff] [blame] | 2022 | ], |
| 2023 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2024 | AC_MSG_RESULT([no]) |
| 2025 | AC_DEFINE([SSHD_ACQUIRES_CTTY]) |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 2026 | ], |
| 2027 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2028 | AC_MSG_RESULT([cross-compiling, assuming yes]) |
Darren Tucker | 70a3d55 | 2003-08-21 17:58:29 +1000 | [diff] [blame] | 2029 | ] |
| 2030 | ) |
| 2031 | fi |
| 2032 | |
Tim Rice | 8bb561b | 2005-03-17 16:23:19 -0800 | [diff] [blame] | 2033 | if test "x$ac_cv_func_getaddrinfo" = "xyes" && \ |
| 2034 | test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2035 | AC_MSG_CHECKING([if getaddrinfo seems to work]) |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 2036 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2037 | [AC_LANG_PROGRAM([[ |
Darren Tucker | 4398cf5 | 2004-04-06 21:39:02 +1000 | [diff] [blame] | 2038 | #include <stdio.h> |
| 2039 | #include <sys/socket.h> |
| 2040 | #include <netdb.h> |
| 2041 | #include <errno.h> |
| 2042 | #include <netinet/in.h> |
| 2043 | |
| 2044 | #define TEST_PORT "2222" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2045 | ]], [[ |
Darren Tucker | 4398cf5 | 2004-04-06 21:39:02 +1000 | [diff] [blame] | 2046 | int err, sock; |
| 2047 | struct addrinfo *gai_ai, *ai, hints; |
| 2048 | char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL; |
| 2049 | |
| 2050 | memset(&hints, 0, sizeof(hints)); |
| 2051 | hints.ai_family = PF_UNSPEC; |
| 2052 | hints.ai_socktype = SOCK_STREAM; |
| 2053 | hints.ai_flags = AI_PASSIVE; |
| 2054 | |
| 2055 | err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai); |
| 2056 | if (err != 0) { |
| 2057 | fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err)); |
| 2058 | exit(1); |
| 2059 | } |
| 2060 | |
| 2061 | for (ai = gai_ai; ai != NULL; ai = ai->ai_next) { |
| 2062 | if (ai->ai_family != AF_INET6) |
| 2063 | continue; |
| 2064 | |
| 2065 | err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, |
| 2066 | sizeof(ntop), strport, sizeof(strport), |
| 2067 | NI_NUMERICHOST|NI_NUMERICSERV); |
| 2068 | |
| 2069 | if (err != 0) { |
| 2070 | if (err == EAI_SYSTEM) |
| 2071 | perror("getnameinfo EAI_SYSTEM"); |
| 2072 | else |
| 2073 | fprintf(stderr, "getnameinfo failed: %s\n", |
| 2074 | gai_strerror(err)); |
| 2075 | exit(2); |
| 2076 | } |
| 2077 | |
| 2078 | sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); |
| 2079 | if (sock < 0) |
| 2080 | perror("socket"); |
| 2081 | if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) { |
| 2082 | if (errno == EBADF) |
| 2083 | exit(3); |
| 2084 | } |
| 2085 | } |
| 2086 | exit(0); |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 2087 | ]])], |
Darren Tucker | 4398cf5 | 2004-04-06 21:39:02 +1000 | [diff] [blame] | 2088 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2089 | AC_MSG_RESULT([yes]) |
Darren Tucker | 4398cf5 | 2004-04-06 21:39:02 +1000 | [diff] [blame] | 2090 | ], |
| 2091 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2092 | AC_MSG_RESULT([no]) |
| 2093 | AC_DEFINE([BROKEN_GETADDRINFO]) |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 2094 | ], |
| 2095 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2096 | AC_MSG_RESULT([cross-compiling, assuming yes]) |
Darren Tucker | 4398cf5 | 2004-04-06 21:39:02 +1000 | [diff] [blame] | 2097 | ] |
| 2098 | ) |
| 2099 | fi |
| 2100 | |
Tim Rice | 8bb561b | 2005-03-17 16:23:19 -0800 | [diff] [blame] | 2101 | if test "x$ac_cv_func_getaddrinfo" = "xyes" && \ |
| 2102 | test "x$check_for_aix_broken_getaddrinfo" = "x1"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2103 | AC_MSG_CHECKING([if getaddrinfo seems to work]) |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 2104 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2105 | [AC_LANG_PROGRAM([[ |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 2106 | #include <stdio.h> |
| 2107 | #include <sys/socket.h> |
| 2108 | #include <netdb.h> |
| 2109 | #include <errno.h> |
| 2110 | #include <netinet/in.h> |
| 2111 | |
| 2112 | #define TEST_PORT "2222" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2113 | ]], [[ |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 2114 | int err, sock; |
| 2115 | struct addrinfo *gai_ai, *ai, hints; |
| 2116 | char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL; |
| 2117 | |
| 2118 | memset(&hints, 0, sizeof(hints)); |
| 2119 | hints.ai_family = PF_UNSPEC; |
| 2120 | hints.ai_socktype = SOCK_STREAM; |
| 2121 | hints.ai_flags = AI_PASSIVE; |
| 2122 | |
| 2123 | err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai); |
| 2124 | if (err != 0) { |
| 2125 | fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err)); |
| 2126 | exit(1); |
| 2127 | } |
| 2128 | |
| 2129 | for (ai = gai_ai; ai != NULL; ai = ai->ai_next) { |
| 2130 | if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6) |
| 2131 | continue; |
| 2132 | |
| 2133 | err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, |
| 2134 | sizeof(ntop), strport, sizeof(strport), |
| 2135 | NI_NUMERICHOST|NI_NUMERICSERV); |
| 2136 | |
| 2137 | if (ai->ai_family == AF_INET && err != 0) { |
| 2138 | perror("getnameinfo"); |
| 2139 | exit(2); |
| 2140 | } |
| 2141 | } |
| 2142 | exit(0); |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 2143 | ]])], |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 2144 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2145 | AC_MSG_RESULT([yes]) |
| 2146 | AC_DEFINE([AIX_GETNAMEINFO_HACK], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 2147 | [Define if you have a getaddrinfo that fails |
| 2148 | for the all-zeros IPv6 address]) |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 2149 | ], |
| 2150 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2151 | AC_MSG_RESULT([no]) |
| 2152 | AC_DEFINE([BROKEN_GETADDRINFO]) |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 2153 | ], |
Darren Tucker | 8b272ab | 2006-06-27 11:20:28 +1000 | [diff] [blame] | 2154 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2155 | AC_MSG_RESULT([cross-compiling, assuming no]) |
Darren Tucker | 691d523 | 2005-02-15 21:45:57 +1100 | [diff] [blame] | 2156 | ] |
| 2157 | ) |
| 2158 | fi |
| 2159 | |
Darren Tucker | a56f191 | 2004-11-02 20:30:54 +1100 | [diff] [blame] | 2160 | if test "x$check_for_conflicting_getspnam" = "x1"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2161 | AC_MSG_CHECKING([for conflicting getspnam in shadow.h]) |
| 2162 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <shadow.h> ]], |
| 2163 | [[ exit(0); ]])], |
Darren Tucker | a56f191 | 2004-11-02 20:30:54 +1100 | [diff] [blame] | 2164 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2165 | AC_MSG_RESULT([no]) |
Darren Tucker | a56f191 | 2004-11-02 20:30:54 +1100 | [diff] [blame] | 2166 | ], |
| 2167 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2168 | AC_MSG_RESULT([yes]) |
| 2169 | AC_DEFINE([GETSPNAM_CONFLICTING_DEFS], [1], |
Darren Tucker | a56f191 | 2004-11-02 20:30:54 +1100 | [diff] [blame] | 2170 | [Conflicting defs for getspnam]) |
| 2171 | ] |
| 2172 | ) |
| 2173 | fi |
| 2174 | |
Damien Miller | 606f880 | 2000-09-16 15:39:56 +1100 | [diff] [blame] | 2175 | AC_FUNC_GETPGRP |
| 2176 | |
Tim Rice | aef7371 | 2002-05-11 13:17:42 -0700 | [diff] [blame] | 2177 | # Search for OpenSSL |
| 2178 | saved_CPPFLAGS="$CPPFLAGS" |
| 2179 | saved_LDFLAGS="$LDFLAGS" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2180 | AC_ARG_WITH([ssl-dir], |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 2181 | [ --with-ssl-dir=PATH Specify path to OpenSSL installation ], |
| 2182 | [ |
Ben Lindstrom | 23e1371 | 2000-10-29 22:49:19 +0000 | [diff] [blame] | 2183 | if test "x$withval" != "xno" ; then |
Darren Tucker | c7e38d5 | 2005-02-09 22:12:30 +1100 | [diff] [blame] | 2184 | case "$withval" in |
| 2185 | # Relative paths |
| 2186 | ./*|../*) withval="`pwd`/$withval" |
| 2187 | esac |
Tim Rice | aef7371 | 2002-05-11 13:17:42 -0700 | [diff] [blame] | 2188 | if test -d "$withval/lib"; then |
| 2189 | if test -n "${need_dash_r}"; then |
| 2190 | LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}" |
| 2191 | else |
| 2192 | LDFLAGS="-L${withval}/lib ${LDFLAGS}" |
| 2193 | fi |
Darren Tucker | 9f8703b | 2010-04-23 11:12:06 +1000 | [diff] [blame] | 2194 | elif test -d "$withval/lib64"; then |
| 2195 | if test -n "${need_dash_r}"; then |
| 2196 | LDFLAGS="-L${withval}/lib64 -R${withval}/lib64 ${LDFLAGS}" |
| 2197 | else |
| 2198 | LDFLAGS="-L${withval}/lib64 ${LDFLAGS}" |
| 2199 | fi |
Tim Rice | aef7371 | 2002-05-11 13:17:42 -0700 | [diff] [blame] | 2200 | else |
| 2201 | if test -n "${need_dash_r}"; then |
| 2202 | LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}" |
| 2203 | else |
| 2204 | LDFLAGS="-L${withval} ${LDFLAGS}" |
| 2205 | fi |
| 2206 | fi |
| 2207 | if test -d "$withval/include"; then |
| 2208 | CPPFLAGS="-I${withval}/include ${CPPFLAGS}" |
| 2209 | else |
| 2210 | CPPFLAGS="-I${withval} ${CPPFLAGS}" |
| 2211 | fi |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 2212 | fi |
| 2213 | ] |
| 2214 | ) |
Tim Rice | 3d5352e | 2004-02-12 09:27:21 -0800 | [diff] [blame] | 2215 | LIBS="-lcrypto $LIBS" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2216 | AC_TRY_LINK_FUNC([RAND_add], [AC_DEFINE([HAVE_OPENSSL], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 2217 | [Define if your ssl headers are included |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2218 | with #include <openssl/header.h>])], |
Damien Miller | 3b512e1 | 2000-05-17 23:29:18 +1000 | [diff] [blame] | 2219 | [ |
Tim Rice | aef7371 | 2002-05-11 13:17:42 -0700 | [diff] [blame] | 2220 | dnl Check default openssl install dir |
| 2221 | if test -n "${need_dash_r}"; then |
| 2222 | LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}" |
Damien Miller | 3b512e1 | 2000-05-17 23:29:18 +1000 | [diff] [blame] | 2223 | else |
Tim Rice | aef7371 | 2002-05-11 13:17:42 -0700 | [diff] [blame] | 2224 | LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}" |
Damien Miller | 3b512e1 | 2000-05-17 23:29:18 +1000 | [diff] [blame] | 2225 | fi |
Tim Rice | aef7371 | 2002-05-11 13:17:42 -0700 | [diff] [blame] | 2226 | CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}" |
Darren Tucker | 83d8f28 | 2009-08-17 09:35:22 +1000 | [diff] [blame] | 2227 | AC_CHECK_HEADER([openssl/opensslv.h], , |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2228 | [AC_MSG_ERROR([*** OpenSSL headers missing - please install first or check config.log ***])]) |
| 2229 | AC_TRY_LINK_FUNC([RAND_add], [AC_DEFINE([HAVE_OPENSSL])], |
Tim Rice | aef7371 | 2002-05-11 13:17:42 -0700 | [diff] [blame] | 2230 | [ |
| 2231 | AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***]) |
| 2232 | ] |
| 2233 | ) |
| 2234 | ] |
| 2235 | ) |
| 2236 | |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2237 | # Determine OpenSSL header version |
| 2238 | AC_MSG_CHECKING([OpenSSL header version]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 2239 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2240 | [AC_LANG_PROGRAM([[ |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2241 | #include <stdio.h> |
| 2242 | #include <string.h> |
| 2243 | #include <openssl/opensslv.h> |
| 2244 | #define DATA "conftest.sslincver" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2245 | ]], [[ |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 2246 | FILE *fd; |
| 2247 | int rc; |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2248 | |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 2249 | fd = fopen(DATA,"w"); |
| 2250 | if(fd == NULL) |
| 2251 | exit(1); |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2252 | |
Damien Miller | 6d62784 | 2014-08-22 17:36:19 +1000 | [diff] [blame] | 2253 | if ((rc = fprintf(fd ,"%08x (%s)\n", OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT)) <0) |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2254 | exit(1); |
| 2255 | |
| 2256 | exit(0); |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 2257 | ]])], |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2258 | [ |
| 2259 | ssl_header_ver=`cat conftest.sslincver` |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2260 | AC_MSG_RESULT([$ssl_header_ver]) |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2261 | ], |
| 2262 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2263 | AC_MSG_RESULT([not found]) |
| 2264 | AC_MSG_ERROR([OpenSSL version header not found.]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 2265 | ], |
| 2266 | [ |
| 2267 | AC_MSG_WARN([cross compiling: not checking]) |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2268 | ] |
| 2269 | ) |
| 2270 | |
| 2271 | # Determine OpenSSL library version |
| 2272 | AC_MSG_CHECKING([OpenSSL library version]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 2273 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2274 | [AC_LANG_PROGRAM([[ |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2275 | #include <stdio.h> |
| 2276 | #include <string.h> |
| 2277 | #include <openssl/opensslv.h> |
| 2278 | #include <openssl/crypto.h> |
| 2279 | #define DATA "conftest.ssllibver" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2280 | ]], [[ |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 2281 | FILE *fd; |
| 2282 | int rc; |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2283 | |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 2284 | fd = fopen(DATA,"w"); |
| 2285 | if(fd == NULL) |
| 2286 | exit(1); |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2287 | |
Damien Miller | 6d62784 | 2014-08-22 17:36:19 +1000 | [diff] [blame] | 2288 | if ((rc = fprintf(fd ,"%08x (%s)\n", SSLeay(), |
Damien Miller | 2195847 | 2014-08-20 11:05:03 +1000 | [diff] [blame] | 2289 | SSLeay_version(SSLEAY_VERSION))) <0) |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2290 | exit(1); |
| 2291 | |
| 2292 | exit(0); |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 2293 | ]])], |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2294 | [ |
| 2295 | ssl_library_ver=`cat conftest.ssllibver` |
Damien Miller | 2195847 | 2014-08-20 11:05:03 +1000 | [diff] [blame] | 2296 | # Check version is supported. |
| 2297 | case "$ssl_library_ver" in |
Damien Miller | 394a60f | 2014-08-22 18:06:20 +1000 | [diff] [blame] | 2298 | 0090[[0-7]]*|009080[[0-5]]*) |
Damien Miller | 7d0ba53 | 2014-10-30 10:45:41 +1100 | [diff] [blame] | 2299 | AC_MSG_ERROR([OpenSSL >= 0.9.8f required (have "$ssl_library_ver")]) |
Damien Miller | 2195847 | 2014-08-20 11:05:03 +1000 | [diff] [blame] | 2300 | ;; |
| 2301 | *) ;; |
| 2302 | esac |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2303 | AC_MSG_RESULT([$ssl_library_ver]) |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2304 | ], |
| 2305 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2306 | AC_MSG_RESULT([not found]) |
| 2307 | AC_MSG_ERROR([OpenSSL library not found.]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 2308 | ], |
| 2309 | [ |
| 2310 | AC_MSG_WARN([cross compiling: not checking]) |
Tim Rice | d730b78 | 2002-08-13 18:52:10 -0700 | [diff] [blame] | 2311 | ] |
| 2312 | ) |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 2313 | |
Damien Miller | b9c5667 | 2014-05-15 14:43:37 +1000 | [diff] [blame] | 2314 | # XXX make --without-openssl work |
| 2315 | AC_DEFINE_UNQUOTED([WITH_OPENSSL], [1], [use libcrypto for cryptography]) |
Damien Miller | e5b9f0f | 2014-05-15 14:58:07 +1000 | [diff] [blame] | 2316 | AC_DEFINE_UNQUOTED([WITH_SSH1], [1], [include SSH protocol version 1 support]) |
Damien Miller | b9c5667 | 2014-05-15 14:43:37 +1000 | [diff] [blame] | 2317 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2318 | AC_ARG_WITH([openssl-header-check], |
Damien Miller | 9975e48 | 2007-03-05 11:51:27 +1100 | [diff] [blame] | 2319 | [ --without-openssl-header-check Disable OpenSSL version consistency check], |
| 2320 | [ if test "x$withval" = "xno" ; then |
| 2321 | openssl_check_nonfatal=1 |
| 2322 | fi |
| 2323 | ] |
| 2324 | ) |
| 2325 | |
Damien Miller | ec93237 | 2002-01-22 22:16:03 +1100 | [diff] [blame] | 2326 | # Sanity check OpenSSL headers |
| 2327 | AC_MSG_CHECKING([whether OpenSSL's headers match the library]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 2328 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2329 | [AC_LANG_PROGRAM([[ |
Damien Miller | ec93237 | 2002-01-22 22:16:03 +1100 | [diff] [blame] | 2330 | #include <string.h> |
| 2331 | #include <openssl/opensslv.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2332 | ]], [[ |
| 2333 | exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 2334 | ]])], |
Damien Miller | ec93237 | 2002-01-22 22:16:03 +1100 | [diff] [blame] | 2335 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2336 | AC_MSG_RESULT([yes]) |
Damien Miller | ec93237 | 2002-01-22 22:16:03 +1100 | [diff] [blame] | 2337 | ], |
| 2338 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2339 | AC_MSG_RESULT([no]) |
Damien Miller | 9975e48 | 2007-03-05 11:51:27 +1100 | [diff] [blame] | 2340 | if test "x$openssl_check_nonfatal" = "x"; then |
| 2341 | AC_MSG_ERROR([Your OpenSSL headers do not match your |
| 2342 | library. Check config.log for details. |
| 2343 | If you are sure your installation is consistent, you can disable the check |
| 2344 | by running "./configure --without-openssl-header-check". |
| 2345 | Also see contrib/findssl.sh for help identifying header/library mismatches. |
| 2346 | ]) |
| 2347 | else |
| 2348 | AC_MSG_WARN([Your OpenSSL headers do not match your |
| 2349 | library. Check config.log for details. |
Darren Tucker | a0472e0 | 2003-06-24 20:22:09 +1000 | [diff] [blame] | 2350 | Also see contrib/findssl.sh for help identifying header/library mismatches.]) |
Damien Miller | 9975e48 | 2007-03-05 11:51:27 +1100 | [diff] [blame] | 2351 | fi |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 2352 | ], |
| 2353 | [ |
| 2354 | AC_MSG_WARN([cross compiling: not checking]) |
Damien Miller | ec93237 | 2002-01-22 22:16:03 +1100 | [diff] [blame] | 2355 | ] |
| 2356 | ) |
| 2357 | |
Darren Tucker | 639bbe8 | 2006-08-20 20:17:53 +1000 | [diff] [blame] | 2358 | AC_MSG_CHECKING([if programs using OpenSSL functions will link]) |
| 2359 | AC_LINK_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2360 | [AC_LANG_PROGRAM([[ #include <openssl/evp.h> ]], |
| 2361 | [[ SSLeay_add_all_algorithms(); ]])], |
Darren Tucker | 639bbe8 | 2006-08-20 20:17:53 +1000 | [diff] [blame] | 2362 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2363 | AC_MSG_RESULT([yes]) |
Darren Tucker | 639bbe8 | 2006-08-20 20:17:53 +1000 | [diff] [blame] | 2364 | ], |
| 2365 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2366 | AC_MSG_RESULT([no]) |
Darren Tucker | 639bbe8 | 2006-08-20 20:17:53 +1000 | [diff] [blame] | 2367 | saved_LIBS="$LIBS" |
| 2368 | LIBS="$LIBS -ldl" |
| 2369 | AC_MSG_CHECKING([if programs using OpenSSL need -ldl]) |
| 2370 | AC_LINK_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2371 | [AC_LANG_PROGRAM([[ #include <openssl/evp.h> ]], |
| 2372 | [[ SSLeay_add_all_algorithms(); ]])], |
Darren Tucker | 639bbe8 | 2006-08-20 20:17:53 +1000 | [diff] [blame] | 2373 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2374 | AC_MSG_RESULT([yes]) |
Darren Tucker | 639bbe8 | 2006-08-20 20:17:53 +1000 | [diff] [blame] | 2375 | ], |
| 2376 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2377 | AC_MSG_RESULT([no]) |
Darren Tucker | 639bbe8 | 2006-08-20 20:17:53 +1000 | [diff] [blame] | 2378 | LIBS="$saved_LIBS" |
| 2379 | ] |
| 2380 | ) |
| 2381 | ] |
| 2382 | ) |
| 2383 | |
Darren Tucker | c548722 | 2014-01-17 15:12:16 +1100 | [diff] [blame] | 2384 | AC_CHECK_FUNCS([ \ |
| 2385 | BN_is_prime_ex \ |
| 2386 | DSA_generate_parameters_ex \ |
Darren Tucker | d23a91f | 2014-01-17 17:32:30 +1100 | [diff] [blame] | 2387 | EVP_DigestInit_ex \ |
| 2388 | EVP_DigestFinal_ex \ |
| 2389 | EVP_MD_CTX_init \ |
| 2390 | EVP_MD_CTX_cleanup \ |
Darren Tucker | 4a20959 | 2014-02-13 16:38:32 +1100 | [diff] [blame] | 2391 | EVP_MD_CTX_copy_ex \ |
Darren Tucker | c548722 | 2014-01-17 15:12:16 +1100 | [diff] [blame] | 2392 | HMAC_CTX_init \ |
| 2393 | RSA_generate_key_ex \ |
| 2394 | RSA_get_default_method \ |
| 2395 | ]) |
Darren Tucker | ebdef76 | 2010-12-04 23:20:50 +1100 | [diff] [blame] | 2396 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2397 | AC_ARG_WITH([ssl-engine], |
Darren Tucker | fabdb6c | 2006-02-20 20:17:35 +1100 | [diff] [blame] | 2398 | [ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ], |
| 2399 | [ if test "x$withval" != "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2400 | AC_MSG_CHECKING([for OpenSSL ENGINE support]) |
| 2401 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
| 2402 | #include <openssl/engine.h> |
| 2403 | ]], [[ |
| 2404 | ENGINE_load_builtin_engines(); |
| 2405 | ENGINE_register_all_complete(); |
| 2406 | ]])], |
| 2407 | [ AC_MSG_RESULT([yes]) |
| 2408 | AC_DEFINE([USE_OPENSSL_ENGINE], [1], |
Darren Tucker | fabdb6c | 2006-02-20 20:17:35 +1100 | [diff] [blame] | 2409 | [Enable OpenSSL engine support]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2410 | ], [ AC_MSG_ERROR([OpenSSL ENGINE support not found]) |
| 2411 | ]) |
Darren Tucker | fabdb6c | 2006-02-20 20:17:35 +1100 | [diff] [blame] | 2412 | fi ] |
| 2413 | ) |
| 2414 | |
Darren Tucker | 129d0bb | 2005-12-19 17:40:40 +1100 | [diff] [blame] | 2415 | # Check for OpenSSL without EVP_aes_{192,256}_cbc |
| 2416 | AC_MSG_CHECKING([whether OpenSSL has crippled AES support]) |
Darren Tucker | f1f4bdd | 2006-08-04 19:44:23 +1000 | [diff] [blame] | 2417 | AC_LINK_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2418 | [AC_LANG_PROGRAM([[ |
Darren Tucker | 129d0bb | 2005-12-19 17:40:40 +1100 | [diff] [blame] | 2419 | #include <string.h> |
| 2420 | #include <openssl/evp.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2421 | ]], [[ |
| 2422 | exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL); |
Darren Tucker | 129d0bb | 2005-12-19 17:40:40 +1100 | [diff] [blame] | 2423 | ]])], |
| 2424 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2425 | AC_MSG_RESULT([no]) |
Darren Tucker | 129d0bb | 2005-12-19 17:40:40 +1100 | [diff] [blame] | 2426 | ], |
| 2427 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2428 | AC_MSG_RESULT([yes]) |
| 2429 | AC_DEFINE([OPENSSL_LOBOTOMISED_AES], [1], |
Darren Tucker | 129d0bb | 2005-12-19 17:40:40 +1100 | [diff] [blame] | 2430 | [libcrypto is missing AES 192 and 256 bit functions]) |
| 2431 | ] |
| 2432 | ) |
| 2433 | |
Damien Miller | 25a02b0 | 2012-12-13 08:18:56 +1100 | [diff] [blame] | 2434 | # Check for OpenSSL with EVP_aes_*ctr |
| 2435 | AC_MSG_CHECKING([whether OpenSSL has AES CTR via EVP]) |
| 2436 | AC_LINK_IFELSE( |
| 2437 | [AC_LANG_PROGRAM([[ |
| 2438 | #include <string.h> |
| 2439 | #include <openssl/evp.h> |
| 2440 | ]], [[ |
| 2441 | exit(EVP_aes_128_ctr() == NULL || |
| 2442 | EVP_aes_192_cbc() == NULL || |
| 2443 | EVP_aes_256_cbc() == NULL); |
| 2444 | ]])], |
| 2445 | [ |
| 2446 | AC_MSG_RESULT([yes]) |
| 2447 | AC_DEFINE([OPENSSL_HAVE_EVPCTR], [1], |
| 2448 | [libcrypto has EVP AES CTR]) |
| 2449 | ], |
| 2450 | [ |
| 2451 | AC_MSG_RESULT([no]) |
| 2452 | ] |
| 2453 | ) |
| 2454 | |
Damien Miller | d522c68 | 2013-01-09 16:42:47 +1100 | [diff] [blame] | 2455 | # Check for OpenSSL with EVP_aes_*gcm |
| 2456 | AC_MSG_CHECKING([whether OpenSSL has AES GCM via EVP]) |
| 2457 | AC_LINK_IFELSE( |
| 2458 | [AC_LANG_PROGRAM([[ |
| 2459 | #include <string.h> |
| 2460 | #include <openssl/evp.h> |
| 2461 | ]], [[ |
| 2462 | exit(EVP_aes_128_gcm() == NULL || |
Damien Miller | b6f73b3 | 2013-02-11 10:39:12 +1100 | [diff] [blame] | 2463 | EVP_aes_256_gcm() == NULL || |
| 2464 | EVP_CTRL_GCM_SET_IV_FIXED == 0 || |
| 2465 | EVP_CTRL_GCM_IV_GEN == 0 || |
| 2466 | EVP_CTRL_GCM_SET_TAG == 0 || |
| 2467 | EVP_CTRL_GCM_GET_TAG == 0 || |
| 2468 | EVP_CIPHER_CTX_ctrl(NULL, 0, 0, NULL) == 0); |
Damien Miller | d522c68 | 2013-01-09 16:42:47 +1100 | [diff] [blame] | 2469 | ]])], |
| 2470 | [ |
| 2471 | AC_MSG_RESULT([yes]) |
| 2472 | AC_DEFINE([OPENSSL_HAVE_EVPGCM], [1], |
| 2473 | [libcrypto has EVP AES GCM]) |
| 2474 | ], |
| 2475 | [ |
| 2476 | AC_MSG_RESULT([no]) |
Darren Tucker | 6d8bd57 | 2013-06-11 11:26:10 +1000 | [diff] [blame] | 2477 | unsupported_algorithms="$unsupported_cipers \ |
| 2478 | aes128-gcm@openssh.com aes256-gcm@openssh.com" |
Damien Miller | d522c68 | 2013-01-09 16:42:47 +1100 | [diff] [blame] | 2479 | ] |
| 2480 | ) |
| 2481 | |
Damien Miller | b6f73b3 | 2013-02-11 10:39:12 +1100 | [diff] [blame] | 2482 | AC_SEARCH_LIBS([EVP_CIPHER_CTX_ctrl], [crypto], |
| 2483 | [AC_DEFINE([HAVE_EVP_CIPHER_CTX_CTRL], [1], |
| 2484 | [Define if libcrypto has EVP_CIPHER_CTX_ctrl])]) |
| 2485 | |
Darren Tucker | 3e7e15f | 2009-03-07 22:22:35 +1100 | [diff] [blame] | 2486 | AC_MSG_CHECKING([if EVP_DigestUpdate returns an int]) |
| 2487 | AC_LINK_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2488 | [AC_LANG_PROGRAM([[ |
Darren Tucker | 3e7e15f | 2009-03-07 22:22:35 +1100 | [diff] [blame] | 2489 | #include <string.h> |
| 2490 | #include <openssl/evp.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2491 | ]], [[ |
| 2492 | if(EVP_DigestUpdate(NULL, NULL,0)) |
| 2493 | exit(0); |
Darren Tucker | 3e7e15f | 2009-03-07 22:22:35 +1100 | [diff] [blame] | 2494 | ]])], |
| 2495 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2496 | AC_MSG_RESULT([yes]) |
Darren Tucker | 3e7e15f | 2009-03-07 22:22:35 +1100 | [diff] [blame] | 2497 | ], |
| 2498 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2499 | AC_MSG_RESULT([no]) |
| 2500 | AC_DEFINE([OPENSSL_EVP_DIGESTUPDATE_VOID], [1], |
Darren Tucker | 3e7e15f | 2009-03-07 22:22:35 +1100 | [diff] [blame] | 2501 | [Define if EVP_DigestUpdate returns void]) |
| 2502 | ] |
| 2503 | ) |
| 2504 | |
Tim Rice | 3d5352e | 2004-02-12 09:27:21 -0800 | [diff] [blame] | 2505 | # Some systems want crypt() from libcrypt, *not* the version in OpenSSL, |
| 2506 | # because the system crypt() is more featureful. |
| 2507 | if test "x$check_for_libcrypt_before" = "x1"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2508 | AC_CHECK_LIB([crypt], [crypt]) |
Tim Rice | 3d5352e | 2004-02-12 09:27:21 -0800 | [diff] [blame] | 2509 | fi |
| 2510 | |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 2511 | # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the |
Tim Rice | 43fa557 | 2004-02-11 14:46:40 -0800 | [diff] [blame] | 2512 | # version in OpenSSL. |
Damien Miller | 4f9f42a | 2003-05-10 19:28:02 +1000 | [diff] [blame] | 2513 | if test "x$check_for_libcrypt_later" = "x1"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2514 | AC_CHECK_LIB([crypt], [crypt], [LIBS="$LIBS -lcrypt"]) |
Damien Miller | a64b57a | 2001-01-17 10:44:13 +1100 | [diff] [blame] | 2515 | fi |
Darren Tucker | c0c3373 | 2013-06-02 06:28:03 +1000 | [diff] [blame] | 2516 | AC_CHECK_FUNCS([crypt DES_crypt]) |
Damien Miller | a64b57a | 2001-01-17 10:44:13 +1100 | [diff] [blame] | 2517 | |
Damien Miller | af87af1 | 2006-03-15 13:02:28 +1100 | [diff] [blame] | 2518 | # Search for SHA256 support in libc and/or OpenSSL |
Darren Tucker | 4bf7e50 | 2013-11-07 22:33:48 +1100 | [diff] [blame] | 2519 | AC_CHECK_FUNCS([SHA256_Update EVP_sha256], , |
| 2520 | [unsupported_algorithms="$unsupported_algorithms \ |
Darren Tucker | 6d8bd57 | 2013-06-11 11:26:10 +1000 | [diff] [blame] | 2521 | hmac-sha2-256 hmac-sha2-512 \ |
| 2522 | diffie-hellman-group-exchange-sha256 \ |
| 2523 | hmac-sha2-256-etm@openssh.com hmac-sha2-512-etm@openssh.com" |
| 2524 | ] |
| 2525 | ) |
Damien Miller | 8da0fa2 | 2014-07-03 11:54:19 +1000 | [diff] [blame] | 2526 | # Search for RIPE-MD support in OpenSSL |
| 2527 | AC_CHECK_FUNCS([EVP_ripemd160], , |
| 2528 | [unsupported_algorithms="$unsupported_algorithms \ |
| 2529 | hmac-ripemd160 |
| 2530 | hmac-ripemd160@openssh.com |
| 2531 | hmac-ripemd160-etm@openssh.com" |
| 2532 | ] |
| 2533 | ) |
Damien Miller | af87af1 | 2006-03-15 13:02:28 +1100 | [diff] [blame] | 2534 | |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 2535 | # Check complete ECC support in OpenSSL |
Darren Tucker | 37bcef5 | 2013-11-09 18:39:25 +1100 | [diff] [blame] | 2536 | AC_MSG_CHECKING([whether OpenSSL has NID_X9_62_prime256v1]) |
| 2537 | AC_LINK_IFELSE( |
| 2538 | [AC_LANG_PROGRAM([[ |
| 2539 | #include <openssl/ec.h> |
| 2540 | #include <openssl/ecdh.h> |
| 2541 | #include <openssl/ecdsa.h> |
| 2542 | #include <openssl/evp.h> |
| 2543 | #include <openssl/objects.h> |
| 2544 | #include <openssl/opensslv.h> |
| 2545 | #if OPENSSL_VERSION_NUMBER < 0x0090807f /* 0.9.8g */ |
| 2546 | # error "OpenSSL < 0.9.8g has unreliable ECC code" |
| 2547 | #endif |
| 2548 | ]], [[ |
| 2549 | EC_KEY *e = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1); |
| 2550 | const EVP_MD *m = EVP_sha256(); /* We need this too */ |
| 2551 | ]])], |
| 2552 | [ AC_MSG_RESULT([yes]) |
| 2553 | enable_nistp256=1 ], |
| 2554 | [ AC_MSG_RESULT([no]) ] |
| 2555 | ) |
| 2556 | |
| 2557 | AC_MSG_CHECKING([whether OpenSSL has NID_secp384r1]) |
| 2558 | AC_LINK_IFELSE( |
| 2559 | [AC_LANG_PROGRAM([[ |
| 2560 | #include <openssl/ec.h> |
| 2561 | #include <openssl/ecdh.h> |
| 2562 | #include <openssl/ecdsa.h> |
| 2563 | #include <openssl/evp.h> |
| 2564 | #include <openssl/objects.h> |
| 2565 | #include <openssl/opensslv.h> |
| 2566 | #if OPENSSL_VERSION_NUMBER < 0x0090807f /* 0.9.8g */ |
| 2567 | # error "OpenSSL < 0.9.8g has unreliable ECC code" |
| 2568 | #endif |
| 2569 | ]], [[ |
| 2570 | EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp384r1); |
| 2571 | const EVP_MD *m = EVP_sha384(); /* We need this too */ |
| 2572 | ]])], |
| 2573 | [ AC_MSG_RESULT([yes]) |
| 2574 | enable_nistp384=1 ], |
| 2575 | [ AC_MSG_RESULT([no]) ] |
| 2576 | ) |
| 2577 | |
| 2578 | AC_MSG_CHECKING([whether OpenSSL has NID_secp521r1]) |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 2579 | AC_LINK_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2580 | [AC_LANG_PROGRAM([[ |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 2581 | #include <openssl/ec.h> |
Damien Miller | e323ebc | 2011-01-19 23:12:27 +1100 | [diff] [blame] | 2582 | #include <openssl/ecdh.h> |
| 2583 | #include <openssl/ecdsa.h> |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 2584 | #include <openssl/evp.h> |
| 2585 | #include <openssl/objects.h> |
Damien Miller | e323ebc | 2011-01-19 23:12:27 +1100 | [diff] [blame] | 2586 | #include <openssl/opensslv.h> |
| 2587 | #if OPENSSL_VERSION_NUMBER < 0x0090807f /* 0.9.8g */ |
| 2588 | # error "OpenSSL < 0.9.8g has unreliable ECC code" |
| 2589 | #endif |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2590 | ]], [[ |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 2591 | EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1); |
| 2592 | const EVP_MD *m = EVP_sha512(); /* We need this too */ |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 2593 | ]])], |
Darren Tucker | 37bcef5 | 2013-11-09 18:39:25 +1100 | [diff] [blame] | 2594 | [ AC_MSG_RESULT([yes]) |
| 2595 | AC_MSG_CHECKING([if OpenSSL's NID_secp521r1 is functional]) |
| 2596 | AC_RUN_IFELSE( |
| 2597 | [AC_LANG_PROGRAM([[ |
| 2598 | #include <openssl/ec.h> |
| 2599 | #include <openssl/ecdh.h> |
| 2600 | #include <openssl/ecdsa.h> |
| 2601 | #include <openssl/evp.h> |
| 2602 | #include <openssl/objects.h> |
| 2603 | #include <openssl/opensslv.h> |
| 2604 | ]],[[ |
| 2605 | EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1); |
| 2606 | const EVP_MD *m = EVP_sha512(); /* We need this too */ |
| 2607 | exit(e == NULL || m == NULL); |
| 2608 | ]])], |
| 2609 | [ AC_MSG_RESULT([yes]) |
| 2610 | enable_nistp521=1 ], |
| 2611 | [ AC_MSG_RESULT([no]) ], |
Darren Tucker | 95cb2d4 | 2013-11-09 22:02:31 +1100 | [diff] [blame] | 2612 | [ AC_MSG_WARN([cross-compiling: assuming yes]) |
Darren Tucker | 37bcef5 | 2013-11-09 18:39:25 +1100 | [diff] [blame] | 2613 | enable_nistp521=1 ] |
Darren Tucker | 95cb2d4 | 2013-11-09 22:02:31 +1100 | [diff] [blame] | 2614 | )], |
Darren Tucker | 37bcef5 | 2013-11-09 18:39:25 +1100 | [diff] [blame] | 2615 | AC_MSG_RESULT([no]) |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 2616 | ) |
Darren Tucker | 37bcef5 | 2013-11-09 18:39:25 +1100 | [diff] [blame] | 2617 | |
| 2618 | COMMENT_OUT_ECC="#no ecc#" |
| 2619 | TEST_SSH_ECC=no |
| 2620 | |
| 2621 | if test x$enable_nistp256 = x1 || test x$enable_nistp384 = x1 || \ |
Darren Tucker | dd5264d | 2013-11-09 22:32:51 +1100 | [diff] [blame] | 2622 | test x$enable_nistp521 = x1; then |
Darren Tucker | 37bcef5 | 2013-11-09 18:39:25 +1100 | [diff] [blame] | 2623 | AC_DEFINE(OPENSSL_HAS_ECC, [1], [OpenSSL has ECC]) |
| 2624 | fi |
| 2625 | if test x$enable_nistp256 = x1; then |
| 2626 | AC_DEFINE([OPENSSL_HAS_NISTP256], [1], |
| 2627 | [libcrypto has NID_X9_62_prime256v1]) |
| 2628 | TEST_SSH_ECC=yes |
| 2629 | COMMENT_OUT_ECC="" |
| 2630 | else |
| 2631 | unsupported_algorithms="$unsupported_algorithms ecdsa-sha2-nistp256 \ |
| 2632 | ecdh-sha2-nistp256 ecdsa-sha2-nistp256-cert-v01@openssh.com" |
| 2633 | fi |
| 2634 | if test x$enable_nistp384 = x1; then |
| 2635 | AC_DEFINE([OPENSSL_HAS_NISTP384], [1], [libcrypto has NID_secp384r1]) |
| 2636 | TEST_SSH_ECC=yes |
| 2637 | COMMENT_OUT_ECC="" |
| 2638 | else |
| 2639 | unsupported_algorithms="$unsupported_algorithms ecdsa-sha2-nistp384 \ |
| 2640 | ecdh-sha2-nistp384 ecdsa-sha2-nistp384-cert-v01@openssh.com" |
| 2641 | fi |
| 2642 | if test x$enable_nistp521 = x1; then |
| 2643 | AC_DEFINE([OPENSSL_HAS_NISTP521], [1], [libcrypto has NID_secp521r1]) |
| 2644 | TEST_SSH_ECC=yes |
| 2645 | COMMENT_OUT_ECC="" |
| 2646 | else |
| 2647 | unsupported_algorithms="$unsupported_algorithms ecdh-sha2-nistp521 \ |
| 2648 | ecdsa-sha2-nistp521 ecdsa-sha2-nistp521-cert-v01@openssh.com" |
| 2649 | fi |
| 2650 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2651 | AC_SUBST([TEST_SSH_ECC]) |
| 2652 | AC_SUBST([COMMENT_OUT_ECC]) |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 2653 | |
Damien Miller | 00f9cd2 | 2014-07-15 10:41:38 +1000 | [diff] [blame] | 2654 | AC_CHECK_FUNCS([ \ |
| 2655 | arc4random \ |
| 2656 | arc4random_buf \ |
| 2657 | arc4random_stir \ |
| 2658 | arc4random_uniform \ |
| 2659 | ]) |
| 2660 | |
Tim Rice | 99203ec | 2007-03-26 09:35:28 -0700 | [diff] [blame] | 2661 | saved_LIBS="$LIBS" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2662 | AC_CHECK_LIB([iaf], [ia_openinfo], [ |
Tim Rice | 99203ec | 2007-03-26 09:35:28 -0700 | [diff] [blame] | 2663 | LIBS="$LIBS -liaf" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2664 | AC_CHECK_FUNCS([set_id], [SSHDLIBS="$SSHDLIBS -liaf" |
| 2665 | AC_DEFINE([HAVE_LIBIAF], [1], |
Tim Rice | 0eeaf12 | 2007-09-10 16:24:17 -0700 | [diff] [blame] | 2666 | [Define if system has libiaf that supports set_id]) |
| 2667 | ]) |
Tim Rice | 99203ec | 2007-03-26 09:35:28 -0700 | [diff] [blame] | 2668 | ]) |
| 2669 | LIBS="$saved_LIBS" |
Damien Miller | 6c21c51 | 2002-01-22 21:57:53 +1100 | [diff] [blame] | 2670 | |
| 2671 | ### Configure cryptographic random number support |
| 2672 | |
| 2673 | # Check wheter OpenSSL seeds itself |
| 2674 | AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 2675 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2676 | [AC_LANG_PROGRAM([[ |
Damien Miller | 6c21c51 | 2002-01-22 21:57:53 +1100 | [diff] [blame] | 2677 | #include <string.h> |
| 2678 | #include <openssl/rand.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2679 | ]], [[ |
| 2680 | exit(RAND_status() == 1 ? 0 : 1); |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 2681 | ]])], |
Damien Miller | 6c21c51 | 2002-01-22 21:57:53 +1100 | [diff] [blame] | 2682 | [ |
| 2683 | OPENSSL_SEEDS_ITSELF=yes |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2684 | AC_MSG_RESULT([yes]) |
Damien Miller | 6c21c51 | 2002-01-22 21:57:53 +1100 | [diff] [blame] | 2685 | ], |
| 2686 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2687 | AC_MSG_RESULT([no]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 2688 | ], |
| 2689 | [ |
| 2690 | AC_MSG_WARN([cross compiling: assuming yes]) |
Damien Miller | f22019b | 2011-05-05 13:48:37 +1000 | [diff] [blame] | 2691 | # This is safe, since we will fatal() at runtime if |
| 2692 | # OpenSSL is not seeded correctly. |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 2693 | OPENSSL_SEEDS_ITSELF=yes |
Damien Miller | 6c21c51 | 2002-01-22 21:57:53 +1100 | [diff] [blame] | 2694 | ] |
| 2695 | ) |
| 2696 | |
Damien Miller | f22019b | 2011-05-05 13:48:37 +1000 | [diff] [blame] | 2697 | # PRNGD TCP socket |
| 2698 | AC_ARG_WITH([prngd-port], |
| 2699 | [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT], |
| 2700 | [ |
| 2701 | case "$withval" in |
| 2702 | no) |
| 2703 | withval="" |
| 2704 | ;; |
| 2705 | [[0-9]]*) |
| 2706 | ;; |
| 2707 | *) |
| 2708 | AC_MSG_ERROR([You must specify a numeric port number for --with-prngd-port]) |
| 2709 | ;; |
| 2710 | esac |
| 2711 | if test ! -z "$withval" ; then |
| 2712 | PRNGD_PORT="$withval" |
| 2713 | AC_DEFINE_UNQUOTED([PRNGD_PORT], [$PRNGD_PORT], |
| 2714 | [Port number of PRNGD/EGD random number socket]) |
| 2715 | fi |
| 2716 | ] |
| 2717 | ) |
| 2718 | |
| 2719 | # PRNGD Unix domain socket |
| 2720 | AC_ARG_WITH([prngd-socket], |
| 2721 | [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)], |
| 2722 | [ |
| 2723 | case "$withval" in |
| 2724 | yes) |
| 2725 | withval="/var/run/egd-pool" |
| 2726 | ;; |
| 2727 | no) |
| 2728 | withval="" |
| 2729 | ;; |
| 2730 | /*) |
| 2731 | ;; |
| 2732 | *) |
| 2733 | AC_MSG_ERROR([You must specify an absolute path to the entropy socket]) |
| 2734 | ;; |
| 2735 | esac |
| 2736 | |
| 2737 | if test ! -z "$withval" ; then |
| 2738 | if test ! -z "$PRNGD_PORT" ; then |
| 2739 | AC_MSG_ERROR([You may not specify both a PRNGD/EGD port and socket]) |
| 2740 | fi |
| 2741 | if test ! -r "$withval" ; then |
| 2742 | AC_MSG_WARN([Entropy socket is not readable]) |
| 2743 | fi |
| 2744 | PRNGD_SOCKET="$withval" |
| 2745 | AC_DEFINE_UNQUOTED([PRNGD_SOCKET], ["$PRNGD_SOCKET"], |
| 2746 | [Location of PRNGD/EGD random number socket]) |
| 2747 | fi |
| 2748 | ], |
| 2749 | [ |
| 2750 | # Check for existing socket only if we don't have a random device already |
| 2751 | if test "x$OPENSSL_SEEDS_ITSELF" != "xyes" ; then |
| 2752 | AC_MSG_CHECKING([for PRNGD/EGD socket]) |
| 2753 | # Insert other locations here |
| 2754 | for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do |
| 2755 | if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then |
| 2756 | PRNGD_SOCKET="$sock" |
| 2757 | AC_DEFINE_UNQUOTED([PRNGD_SOCKET], ["$PRNGD_SOCKET"]) |
| 2758 | break; |
| 2759 | fi |
| 2760 | done |
| 2761 | if test ! -z "$PRNGD_SOCKET" ; then |
| 2762 | AC_MSG_RESULT([$PRNGD_SOCKET]) |
| 2763 | else |
| 2764 | AC_MSG_RESULT([not found]) |
| 2765 | fi |
| 2766 | fi |
| 2767 | ] |
| 2768 | ) |
| 2769 | |
| 2770 | # Which randomness source do we use? |
| 2771 | if test ! -z "$PRNGD_PORT" ; then |
| 2772 | RAND_MSG="PRNGd port $PRNGD_PORT" |
| 2773 | elif test ! -z "$PRNGD_SOCKET" ; then |
| 2774 | RAND_MSG="PRNGd socket $PRNGD_SOCKET" |
| 2775 | elif test ! -z "$OPENSSL_SEEDS_ITSELF" ; then |
| 2776 | AC_DEFINE([OPENSSL_PRNG_ONLY], [1], |
| 2777 | [Define if you want OpenSSL's internally seeded PRNG only]) |
| 2778 | RAND_MSG="OpenSSL internal ONLY" |
| 2779 | else |
| 2780 | 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]) |
| 2781 | fi |
| 2782 | |
Darren Tucker | 3e6bde4 | 2006-08-20 20:03:50 +1000 | [diff] [blame] | 2783 | # Check for PAM libs |
| 2784 | PAM_MSG="no" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2785 | AC_ARG_WITH([pam], |
Darren Tucker | 3e6bde4 | 2006-08-20 20:03:50 +1000 | [diff] [blame] | 2786 | [ --with-pam Enable PAM support ], |
| 2787 | [ |
| 2788 | if test "x$withval" != "xno" ; then |
| 2789 | if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \ |
| 2790 | test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then |
| 2791 | AC_MSG_ERROR([PAM headers not found]) |
| 2792 | fi |
| 2793 | |
| 2794 | saved_LIBS="$LIBS" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2795 | AC_CHECK_LIB([dl], [dlopen], , ) |
| 2796 | AC_CHECK_LIB([pam], [pam_set_item], , [AC_MSG_ERROR([*** libpam missing])]) |
| 2797 | AC_CHECK_FUNCS([pam_getenvlist]) |
| 2798 | AC_CHECK_FUNCS([pam_putenv]) |
Darren Tucker | 3e6bde4 | 2006-08-20 20:03:50 +1000 | [diff] [blame] | 2799 | LIBS="$saved_LIBS" |
| 2800 | |
| 2801 | PAM_MSG="yes" |
| 2802 | |
Darren Tucker | 20e9f97 | 2007-03-25 18:26:01 +1000 | [diff] [blame] | 2803 | SSHDLIBS="$SSHDLIBS -lpam" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2804 | AC_DEFINE([USE_PAM], [1], |
Darren Tucker | 3e6bde4 | 2006-08-20 20:03:50 +1000 | [diff] [blame] | 2805 | [Define if you want to enable PAM support]) |
Darren Tucker | 639bbe8 | 2006-08-20 20:17:53 +1000 | [diff] [blame] | 2806 | |
Darren Tucker | 3e6bde4 | 2006-08-20 20:03:50 +1000 | [diff] [blame] | 2807 | if test $ac_cv_lib_dl_dlopen = yes; then |
Darren Tucker | 639bbe8 | 2006-08-20 20:17:53 +1000 | [diff] [blame] | 2808 | case "$LIBS" in |
| 2809 | *-ldl*) |
| 2810 | # libdl already in LIBS |
| 2811 | ;; |
| 2812 | *) |
Darren Tucker | 20e9f97 | 2007-03-25 18:26:01 +1000 | [diff] [blame] | 2813 | SSHDLIBS="$SSHDLIBS -ldl" |
Darren Tucker | 639bbe8 | 2006-08-20 20:17:53 +1000 | [diff] [blame] | 2814 | ;; |
| 2815 | esac |
Darren Tucker | 3e6bde4 | 2006-08-20 20:03:50 +1000 | [diff] [blame] | 2816 | fi |
Darren Tucker | 3e6bde4 | 2006-08-20 20:03:50 +1000 | [diff] [blame] | 2817 | fi |
| 2818 | ] |
| 2819 | ) |
| 2820 | |
| 2821 | # Check for older PAM |
| 2822 | if test "x$PAM_MSG" = "xyes" ; then |
| 2823 | # Check PAM strerror arguments (old PAM) |
| 2824 | AC_MSG_CHECKING([whether pam_strerror takes only one argument]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2825 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Darren Tucker | 3e6bde4 | 2006-08-20 20:03:50 +1000 | [diff] [blame] | 2826 | #include <stdlib.h> |
| 2827 | #if defined(HAVE_SECURITY_PAM_APPL_H) |
| 2828 | #include <security/pam_appl.h> |
| 2829 | #elif defined (HAVE_PAM_PAM_APPL_H) |
| 2830 | #include <pam/pam_appl.h> |
| 2831 | #endif |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2832 | ]], [[ |
| 2833 | (void)pam_strerror((pam_handle_t *)NULL, -1); |
| 2834 | ]])], [AC_MSG_RESULT([no])], [ |
| 2835 | AC_DEFINE([HAVE_OLD_PAM], [1], |
Darren Tucker | 3e6bde4 | 2006-08-20 20:03:50 +1000 | [diff] [blame] | 2836 | [Define if you have an old version of PAM |
| 2837 | which takes only one argument to pam_strerror]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2838 | AC_MSG_RESULT([yes]) |
Darren Tucker | 3e6bde4 | 2006-08-20 20:03:50 +1000 | [diff] [blame] | 2839 | PAM_MSG="yes (old library)" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2840 | |
| 2841 | ]) |
Darren Tucker | 3e6bde4 | 2006-08-20 20:03:50 +1000 | [diff] [blame] | 2842 | fi |
Damien Miller | 6c21c51 | 2002-01-22 21:57:53 +1100 | [diff] [blame] | 2843 | |
Damien Miller | 6482d90 | 2014-05-27 14:34:42 +1000 | [diff] [blame] | 2844 | case "$host" in |
| 2845 | *-*-cygwin*) |
| 2846 | SSH_PRIVSEP_USER=CYGWIN_SSH_PRIVSEP_USER |
| 2847 | ;; |
| 2848 | *) |
| 2849 | SSH_PRIVSEP_USER=sshd |
| 2850 | ;; |
| 2851 | esac |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2852 | AC_ARG_WITH([privsep-user], |
Kevin Steves | c81e129 | 2002-05-13 03:51:40 +0000 | [diff] [blame] | 2853 | [ --with-privsep-user=user Specify non-privileged user for privilege separation], |
Kevin Steves | 7ff9112 | 2002-04-07 19:22:54 +0000 | [diff] [blame] | 2854 | [ |
Tim Rice | 35cc69d | 2005-03-17 16:44:25 -0800 | [diff] [blame] | 2855 | if test -n "$withval" && test "x$withval" != "xno" && \ |
| 2856 | test "x${withval}" != "xyes"; then |
Damien Miller | d3f6ad2 | 2002-06-25 10:24:47 +1000 | [diff] [blame] | 2857 | SSH_PRIVSEP_USER=$withval |
Kevin Steves | 7ff9112 | 2002-04-07 19:22:54 +0000 | [diff] [blame] | 2858 | fi |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 2859 | ] |
Kevin Steves | 7ff9112 | 2002-04-07 19:22:54 +0000 | [diff] [blame] | 2860 | ) |
Damien Miller | 6482d90 | 2014-05-27 14:34:42 +1000 | [diff] [blame] | 2861 | if test "x$SSH_PRIVSEP_USER" = "xCYGWIN_SSH_PRIVSEP_USER" ; then |
| 2862 | AC_DEFINE_UNQUOTED([SSH_PRIVSEP_USER], [CYGWIN_SSH_PRIVSEP_USER], |
| 2863 | [Cygwin function to fetch non-privileged user for privilege separation]) |
| 2864 | else |
| 2865 | AC_DEFINE_UNQUOTED([SSH_PRIVSEP_USER], ["$SSH_PRIVSEP_USER"], |
| 2866 | [non-privileged user for privilege separation]) |
| 2867 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 2868 | AC_SUBST([SSH_PRIVSEP_USER]) |
Kevin Steves | 7ff9112 | 2002-04-07 19:22:54 +0000 | [diff] [blame] | 2869 | |
Damien Miller | 91f40d8 | 2013-02-22 11:37:00 +1100 | [diff] [blame] | 2870 | if test "x$have_linux_no_new_privs" = "x1" ; then |
| 2871 | AC_CHECK_DECL([SECCOMP_MODE_FILTER], [have_seccomp_filter=1], , [ |
| 2872 | #include <sys/types.h> |
| 2873 | #include <linux/seccomp.h> |
| 2874 | ]) |
| 2875 | fi |
| 2876 | if test "x$have_seccomp_filter" = "x1" ; then |
| 2877 | AC_MSG_CHECKING([kernel for seccomp_filter support]) |
| 2878 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[ |
| 2879 | #include <errno.h> |
| 2880 | #include <elf.h> |
| 2881 | #include <linux/audit.h> |
| 2882 | #include <linux/seccomp.h> |
| 2883 | #include <stdlib.h> |
| 2884 | #include <sys/prctl.h> |
| 2885 | ]], |
| 2886 | [[ int i = $seccomp_audit_arch; |
| 2887 | errno = 0; |
| 2888 | prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, NULL, 0, 0); |
| 2889 | exit(errno == EFAULT ? 0 : 1); ]])], |
| 2890 | [ AC_MSG_RESULT([yes]) ], [ |
| 2891 | AC_MSG_RESULT([no]) |
| 2892 | # Disable seccomp filter as a target |
| 2893 | have_seccomp_filter=0 |
| 2894 | ] |
| 2895 | ) |
| 2896 | fi |
| 2897 | |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 2898 | # Decide which sandbox style to use |
| 2899 | sandbox_arg="" |
| 2900 | AC_ARG_WITH([sandbox], |
Damien Miller | 868ea1e | 2014-01-17 16:47:04 +1100 | [diff] [blame] | 2901 | [ --with-sandbox=style Specify privilege separation sandbox (no, darwin, rlimit, systrace, seccomp_filter, capsicum)], |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 2902 | [ |
| 2903 | if test "x$withval" = "xyes" ; then |
| 2904 | sandbox_arg="" |
| 2905 | else |
| 2906 | sandbox_arg="$withval" |
| 2907 | fi |
| 2908 | ] |
| 2909 | ) |
Darren Tucker | 60395f9 | 2012-07-03 14:31:18 +1000 | [diff] [blame] | 2910 | |
| 2911 | # Some platforms (seems to be the ones that have a kernel poll(2)-type |
| 2912 | # function with which they implement select(2)) use an extra file descriptor |
| 2913 | # when calling select(2), which means we can't use the rlimit sandbox. |
| 2914 | AC_MSG_CHECKING([if select works with descriptor rlimit]) |
| 2915 | AC_RUN_IFELSE( |
| 2916 | [AC_LANG_PROGRAM([[ |
| 2917 | #include <sys/types.h> |
| 2918 | #ifdef HAVE_SYS_TIME_H |
| 2919 | # include <sys/time.h> |
| 2920 | #endif |
| 2921 | #include <sys/resource.h> |
| 2922 | #ifdef HAVE_SYS_SELECT_H |
| 2923 | # include <sys/select.h> |
| 2924 | #endif |
| 2925 | #include <errno.h> |
| 2926 | #include <fcntl.h> |
| 2927 | #include <stdlib.h> |
| 2928 | ]],[[ |
| 2929 | struct rlimit rl_zero; |
| 2930 | int fd, r; |
| 2931 | fd_set fds; |
Damien Miller | e4f4347 | 2013-03-08 12:14:22 +1100 | [diff] [blame] | 2932 | struct timeval tv; |
Darren Tucker | 60395f9 | 2012-07-03 14:31:18 +1000 | [diff] [blame] | 2933 | |
| 2934 | fd = open("/dev/null", O_RDONLY); |
| 2935 | FD_ZERO(&fds); |
| 2936 | FD_SET(fd, &fds); |
| 2937 | rl_zero.rlim_cur = rl_zero.rlim_max = 0; |
| 2938 | setrlimit(RLIMIT_FSIZE, &rl_zero); |
| 2939 | setrlimit(RLIMIT_NOFILE, &rl_zero); |
Damien Miller | e4f4347 | 2013-03-08 12:14:22 +1100 | [diff] [blame] | 2940 | tv.tv_sec = 1; |
| 2941 | tv.tv_usec = 0; |
| 2942 | r = select(fd+1, &fds, NULL, NULL, &tv); |
Darren Tucker | 60395f9 | 2012-07-03 14:31:18 +1000 | [diff] [blame] | 2943 | exit (r == -1 ? 1 : 0); |
| 2944 | ]])], |
| 2945 | [AC_MSG_RESULT([yes]) |
| 2946 | select_works_with_rlimit=yes], |
| 2947 | [AC_MSG_RESULT([no]) |
| 2948 | select_works_with_rlimit=no], |
| 2949 | [AC_MSG_WARN([cross compiling: assuming yes])] |
| 2950 | ) |
| 2951 | |
Darren Tucker | ff008de | 2013-03-06 17:48:48 +1100 | [diff] [blame] | 2952 | AC_MSG_CHECKING([if setrlimit(RLIMIT_NOFILE,{0,0}) works]) |
| 2953 | AC_RUN_IFELSE( |
| 2954 | [AC_LANG_PROGRAM([[ |
| 2955 | #include <sys/types.h> |
| 2956 | #ifdef HAVE_SYS_TIME_H |
| 2957 | # include <sys/time.h> |
| 2958 | #endif |
| 2959 | #include <sys/resource.h> |
| 2960 | #include <errno.h> |
| 2961 | #include <stdlib.h> |
| 2962 | ]],[[ |
| 2963 | struct rlimit rl_zero; |
| 2964 | int fd, r; |
| 2965 | fd_set fds; |
| 2966 | |
| 2967 | rl_zero.rlim_cur = rl_zero.rlim_max = 0; |
| 2968 | r = setrlimit(RLIMIT_NOFILE, &rl_zero); |
| 2969 | exit (r == -1 ? 1 : 0); |
| 2970 | ]])], |
| 2971 | [AC_MSG_RESULT([yes]) |
| 2972 | rlimit_nofile_zero_works=yes], |
| 2973 | [AC_MSG_RESULT([no]) |
| 2974 | rlimit_nofile_zero_works=no], |
| 2975 | [AC_MSG_WARN([cross compiling: assuming yes])] |
| 2976 | ) |
| 2977 | |
Darren Tucker | d545a4b | 2012-07-03 22:48:31 +1000 | [diff] [blame] | 2978 | AC_MSG_CHECKING([if setrlimit RLIMIT_FSIZE works]) |
| 2979 | AC_RUN_IFELSE( |
| 2980 | [AC_LANG_PROGRAM([[ |
| 2981 | #include <sys/types.h> |
| 2982 | #include <sys/resource.h> |
| 2983 | #include <stdlib.h> |
| 2984 | ]],[[ |
| 2985 | struct rlimit rl_zero; |
| 2986 | |
| 2987 | rl_zero.rlim_cur = rl_zero.rlim_max = 0; |
| 2988 | exit(setrlimit(RLIMIT_FSIZE, &rl_zero) != 0); |
| 2989 | ]])], |
| 2990 | [AC_MSG_RESULT([yes])], |
| 2991 | [AC_MSG_RESULT([no]) |
| 2992 | AC_DEFINE(SANDBOX_SKIP_RLIMIT_FSIZE, 1, |
| 2993 | [setrlimit RLIMIT_FSIZE works])], |
| 2994 | [AC_MSG_WARN([cross compiling: assuming yes])] |
| 2995 | ) |
| 2996 | |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 2997 | if test "x$sandbox_arg" = "xsystrace" || \ |
| 2998 | ( test -z "$sandbox_arg" && test "x$have_systr_policy_kill" = "x1" ) ; then |
Damien Miller | 1a91c0f | 2011-08-17 11:59:25 +1000 | [diff] [blame] | 2999 | test "x$have_systr_policy_kill" != "x1" && \ |
| 3000 | AC_MSG_ERROR([systrace sandbox requires systrace headers and SYSTR_POLICY_KILL support]) |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 3001 | SANDBOX_STYLE="systrace" |
| 3002 | AC_DEFINE([SANDBOX_SYSTRACE], [1], [Sandbox using systrace(4)]) |
Damien Miller | cd5e52e | 2011-06-27 07:18:18 +1000 | [diff] [blame] | 3003 | elif test "x$sandbox_arg" = "xdarwin" || \ |
| 3004 | ( test -z "$sandbox_arg" && test "x$ac_cv_func_sandbox_init" = "xyes" && \ |
| 3005 | test "x$ac_cv_header_sandbox_h" = "xyes") ; then |
Damien Miller | 1a91c0f | 2011-08-17 11:59:25 +1000 | [diff] [blame] | 3006 | test "x$ac_cv_func_sandbox_init" != "xyes" -o \ |
| 3007 | "x$ac_cv_header_sandbox_h" != "xyes" && \ |
| 3008 | AC_MSG_ERROR([Darwin seatbelt sandbox requires sandbox.h and sandbox_init function]) |
Damien Miller | cd5e52e | 2011-06-27 07:18:18 +1000 | [diff] [blame] | 3009 | SANDBOX_STYLE="darwin" |
| 3010 | AC_DEFINE([SANDBOX_DARWIN], [1], [Sandbox using Darwin sandbox_init(3)]) |
Damien Miller | e0956e3 | 2012-04-04 11:27:54 +1000 | [diff] [blame] | 3011 | elif test "x$sandbox_arg" = "xseccomp_filter" || \ |
| 3012 | ( test -z "$sandbox_arg" && \ |
Darren Tucker | d0494fd | 2012-05-19 14:25:39 +1000 | [diff] [blame] | 3013 | test "x$have_seccomp_filter" = "x1" && \ |
Damien Miller | 91f40d8 | 2013-02-22 11:37:00 +1100 | [diff] [blame] | 3014 | test "x$ac_cv_header_elf_h" = "xyes" && \ |
Damien Miller | e0956e3 | 2012-04-04 11:27:54 +1000 | [diff] [blame] | 3015 | test "x$ac_cv_header_linux_audit_h" = "xyes" && \ |
Damien Miller | 91f40d8 | 2013-02-22 11:37:00 +1100 | [diff] [blame] | 3016 | test "x$ac_cv_header_linux_filter_h" = "xyes" && \ |
| 3017 | test "x$seccomp_audit_arch" != "x" && \ |
Damien Miller | e0956e3 | 2012-04-04 11:27:54 +1000 | [diff] [blame] | 3018 | test "x$have_linux_no_new_privs" = "x1" && \ |
| 3019 | test "x$ac_cv_func_prctl" = "xyes" ) ; then |
Damien Miller | 91f40d8 | 2013-02-22 11:37:00 +1100 | [diff] [blame] | 3020 | test "x$seccomp_audit_arch" = "x" && \ |
Damien Miller | e0956e3 | 2012-04-04 11:27:54 +1000 | [diff] [blame] | 3021 | AC_MSG_ERROR([seccomp_filter sandbox not supported on $host]) |
| 3022 | test "x$have_linux_no_new_privs" != "x1" && \ |
| 3023 | AC_MSG_ERROR([seccomp_filter sandbox requires PR_SET_NO_NEW_PRIVS]) |
| 3024 | test "x$have_seccomp_filter" != "x1" && \ |
| 3025 | AC_MSG_ERROR([seccomp_filter sandbox requires seccomp headers]) |
| 3026 | test "x$ac_cv_func_prctl" != "xyes" && \ |
| 3027 | AC_MSG_ERROR([seccomp_filter sandbox requires prctl function]) |
| 3028 | SANDBOX_STYLE="seccomp_filter" |
| 3029 | AC_DEFINE([SANDBOX_SECCOMP_FILTER], [1], [Sandbox using seccomp filter]) |
Damien Miller | f62ecef | 2014-01-25 12:34:38 +1100 | [diff] [blame] | 3030 | elif test "x$sandbox_arg" = "xcapsicum" || \ |
| 3031 | ( test -z "$sandbox_arg" && \ |
Damien Miller | 603b8f4 | 2014-01-25 13:16:59 +1100 | [diff] [blame] | 3032 | test "x$ac_cv_header_sys_capability_h" = "xyes" && \ |
| 3033 | test "x$ac_cv_func_cap_rights_limit" = "xyes") ; then |
| 3034 | test "x$ac_cv_header_sys_capability_h" != "xyes" && \ |
Damien Miller | c96d853 | 2014-01-25 13:12:28 +1100 | [diff] [blame] | 3035 | AC_MSG_ERROR([capsicum sandbox requires sys/capability.h header]) |
Damien Miller | 603b8f4 | 2014-01-25 13:16:59 +1100 | [diff] [blame] | 3036 | test "x$ac_cv_func_cap_rights_limit" != "xyes" && \ |
Damien Miller | c96d853 | 2014-01-25 13:12:28 +1100 | [diff] [blame] | 3037 | AC_MSG_ERROR([capsicum sandbox requires cap_rights_limit function]) |
Damien Miller | f62ecef | 2014-01-25 12:34:38 +1100 | [diff] [blame] | 3038 | SANDBOX_STYLE="capsicum" |
| 3039 | AC_DEFINE([SANDBOX_CAPSICUM], [1], [Sandbox using capsicum]) |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 3040 | elif test "x$sandbox_arg" = "xrlimit" || \ |
Darren Tucker | 60395f9 | 2012-07-03 14:31:18 +1000 | [diff] [blame] | 3041 | ( test -z "$sandbox_arg" && test "x$ac_cv_func_setrlimit" = "xyes" && \ |
Darren Tucker | ff008de | 2013-03-06 17:48:48 +1100 | [diff] [blame] | 3042 | test "x$select_works_with_rlimit" = "xyes" && \ |
| 3043 | test "x$rlimit_nofile_zero_works" = "xyes" ) ; then |
Damien Miller | 1a91c0f | 2011-08-17 11:59:25 +1000 | [diff] [blame] | 3044 | test "x$ac_cv_func_setrlimit" != "xyes" && \ |
| 3045 | AC_MSG_ERROR([rlimit sandbox requires setrlimit function]) |
Darren Tucker | 60395f9 | 2012-07-03 14:31:18 +1000 | [diff] [blame] | 3046 | test "x$select_works_with_rlimit" != "xyes" && \ |
| 3047 | AC_MSG_ERROR([rlimit sandbox requires select to work with rlimit]) |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 3048 | SANDBOX_STYLE="rlimit" |
| 3049 | AC_DEFINE([SANDBOX_RLIMIT], [1], [Sandbox using setrlimit(2)]) |
| 3050 | elif test -z "$sandbox_arg" || test "x$sandbox_arg" = "xno" || \ |
| 3051 | test "x$sandbox_arg" = "xnone" || test "x$sandbox_arg" = "xnull" ; then |
| 3052 | SANDBOX_STYLE="none" |
| 3053 | AC_DEFINE([SANDBOX_NULL], [1], [no privsep sandboxing]) |
| 3054 | else |
Tim Rice | a6e6061 | 2011-08-17 21:48:22 -0700 | [diff] [blame] | 3055 | AC_MSG_ERROR([unsupported --with-sandbox]) |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 3056 | fi |
| 3057 | |
Ben Lindstrom | b562864 | 2000-10-18 00:02:25 +0000 | [diff] [blame] | 3058 | # Cheap hack to ensure NEWS-OS libraries are arranged right. |
| 3059 | if test ! -z "$SONY" ; then |
| 3060 | LIBS="$LIBS -liberty"; |
| 3061 | fi |
| 3062 | |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 3063 | # Check for long long datatypes |
| 3064 | AC_CHECK_TYPES([long long, unsigned long long, long double]) |
| 3065 | |
| 3066 | # Check datatype sizes |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3067 | AC_CHECK_SIZEOF([short int], [2]) |
| 3068 | AC_CHECK_SIZEOF([int], [4]) |
| 3069 | AC_CHECK_SIZEOF([long int], [4]) |
| 3070 | AC_CHECK_SIZEOF([long long int], [8]) |
Damien Miller | c6398ef | 1999-11-20 12:18:40 +1100 | [diff] [blame] | 3071 | |
Damien Miller | fa2bb69 | 2002-04-23 23:22:25 +1000 | [diff] [blame] | 3072 | # Sanity check long long for some platforms (AIX) |
| 3073 | if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then |
| 3074 | ac_cv_sizeof_long_long_int=0 |
| 3075 | fi |
| 3076 | |
Darren Tucker | 537f1ed | 2005-10-25 18:38:33 +1000 | [diff] [blame] | 3077 | # compute LLONG_MIN and LLONG_MAX if we don't know them. |
| 3078 | if test -z "$have_llong_max"; then |
| 3079 | AC_MSG_CHECKING([for max value of long long]) |
| 3080 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3081 | [AC_LANG_PROGRAM([[ |
Darren Tucker | 537f1ed | 2005-10-25 18:38:33 +1000 | [diff] [blame] | 3082 | #include <stdio.h> |
| 3083 | /* Why is this so damn hard? */ |
| 3084 | #ifdef __GNUC__ |
| 3085 | # undef __GNUC__ |
| 3086 | #endif |
| 3087 | #define __USE_ISOC99 |
| 3088 | #include <limits.h> |
| 3089 | #define DATA "conftest.llminmax" |
Darren Tucker | d1450db | 2006-03-13 19:06:51 +1100 | [diff] [blame] | 3090 | #define my_abs(a) ((a) < 0 ? ((a) * -1) : (a)) |
| 3091 | |
| 3092 | /* |
| 3093 | * printf in libc on some platforms (eg old Tru64) does not understand %lld so |
| 3094 | * we do this the hard way. |
| 3095 | */ |
| 3096 | static int |
| 3097 | fprint_ll(FILE *f, long long n) |
| 3098 | { |
| 3099 | unsigned int i; |
| 3100 | int l[sizeof(long long) * 8]; |
| 3101 | |
| 3102 | if (n < 0) |
| 3103 | if (fprintf(f, "-") < 0) |
| 3104 | return -1; |
| 3105 | for (i = 0; n != 0; i++) { |
| 3106 | l[i] = my_abs(n % 10); |
| 3107 | n /= 10; |
| 3108 | } |
| 3109 | do { |
| 3110 | if (fprintf(f, "%d", l[--i]) < 0) |
| 3111 | return -1; |
| 3112 | } while (i != 0); |
| 3113 | if (fprintf(f, " ") < 0) |
| 3114 | return -1; |
| 3115 | return 0; |
| 3116 | } |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3117 | ]], [[ |
Darren Tucker | 537f1ed | 2005-10-25 18:38:33 +1000 | [diff] [blame] | 3118 | FILE *f; |
| 3119 | long long i, llmin, llmax = 0; |
| 3120 | |
| 3121 | if((f = fopen(DATA,"w")) == NULL) |
| 3122 | exit(1); |
| 3123 | |
| 3124 | #if defined(LLONG_MIN) && defined(LLONG_MAX) |
| 3125 | fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n"); |
| 3126 | llmin = LLONG_MIN; |
| 3127 | llmax = LLONG_MAX; |
| 3128 | #else |
| 3129 | fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n"); |
| 3130 | /* This will work on one's complement and two's complement */ |
| 3131 | for (i = 1; i > llmax; i <<= 1, i++) |
| 3132 | llmax = i; |
| 3133 | llmin = llmax + 1LL; /* wrap */ |
| 3134 | #endif |
| 3135 | |
| 3136 | /* Sanity check */ |
| 3137 | if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax |
Darren Tucker | d1450db | 2006-03-13 19:06:51 +1100 | [diff] [blame] | 3138 | || llmax - 1 > llmax || llmin == llmax || llmin == 0 |
| 3139 | || llmax == 0 || llmax < LONG_MAX || llmin > LONG_MIN) { |
Darren Tucker | 537f1ed | 2005-10-25 18:38:33 +1000 | [diff] [blame] | 3140 | fprintf(f, "unknown unknown\n"); |
| 3141 | exit(2); |
| 3142 | } |
| 3143 | |
Darren Tucker | d1450db | 2006-03-13 19:06:51 +1100 | [diff] [blame] | 3144 | if (fprint_ll(f, llmin) < 0) |
Darren Tucker | 537f1ed | 2005-10-25 18:38:33 +1000 | [diff] [blame] | 3145 | exit(3); |
Darren Tucker | d1450db | 2006-03-13 19:06:51 +1100 | [diff] [blame] | 3146 | if (fprint_ll(f, llmax) < 0) |
| 3147 | exit(4); |
| 3148 | if (fclose(f) < 0) |
| 3149 | exit(5); |
Darren Tucker | 537f1ed | 2005-10-25 18:38:33 +1000 | [diff] [blame] | 3150 | exit(0); |
Darren Tucker | 537f1ed | 2005-10-25 18:38:33 +1000 | [diff] [blame] | 3151 | ]])], |
| 3152 | [ |
| 3153 | llong_min=`$AWK '{print $1}' conftest.llminmax` |
| 3154 | llong_max=`$AWK '{print $2}' conftest.llminmax` |
| 3155 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3156 | AC_MSG_RESULT([$llong_max]) |
| 3157 | AC_DEFINE_UNQUOTED([LLONG_MAX], [${llong_max}LL], |
Darren Tucker | 537f1ed | 2005-10-25 18:38:33 +1000 | [diff] [blame] | 3158 | [max value of long long calculated by configure]) |
| 3159 | AC_MSG_CHECKING([for min value of long long]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3160 | AC_MSG_RESULT([$llong_min]) |
| 3161 | AC_DEFINE_UNQUOTED([LLONG_MIN], [${llong_min}LL], |
Darren Tucker | 537f1ed | 2005-10-25 18:38:33 +1000 | [diff] [blame] | 3162 | [min value of long long calculated by configure]) |
| 3163 | ], |
| 3164 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3165 | AC_MSG_RESULT([not found]) |
Darren Tucker | 537f1ed | 2005-10-25 18:38:33 +1000 | [diff] [blame] | 3166 | ], |
| 3167 | [ |
| 3168 | AC_MSG_WARN([cross compiling: not checking]) |
| 3169 | ] |
| 3170 | ) |
| 3171 | fi |
| 3172 | |
| 3173 | |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 3174 | # More checks for data types |
Damien Miller | caf6dd6 | 2000-08-29 11:33:50 +1100 | [diff] [blame] | 3175 | AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3176 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]], |
| 3177 | [[ u_int a; a = 1;]])], |
| 3178 | [ ac_cv_have_u_int="yes" ], [ ac_cv_have_u_int="no" |
| 3179 | ]) |
Damien Miller | caf6dd6 | 2000-08-29 11:33:50 +1100 | [diff] [blame] | 3180 | ]) |
| 3181 | if test "x$ac_cv_have_u_int" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3182 | AC_DEFINE([HAVE_U_INT], [1], [define if you have u_int data type]) |
Damien Miller | caf6dd6 | 2000-08-29 11:33:50 +1100 | [diff] [blame] | 3183 | have_u_int=1 |
| 3184 | fi |
| 3185 | |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3186 | AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3187 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]], |
| 3188 | [[ int8_t a; int16_t b; int32_t c; a = b = c = 1;]])], |
| 3189 | [ ac_cv_have_intxx_t="yes" ], [ ac_cv_have_intxx_t="no" |
| 3190 | ]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3191 | ]) |
| 3192 | if test "x$ac_cv_have_intxx_t" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3193 | AC_DEFINE([HAVE_INTXX_T], [1], [define if you have intxx_t data type]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3194 | have_intxx_t=1 |
| 3195 | fi |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3196 | |
| 3197 | if (test -z "$have_intxx_t" && \ |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3198 | test "x$ac_cv_header_stdint_h" = "xyes") |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3199 | then |
| 3200 | AC_MSG_CHECKING([for intXX_t types in stdint.h]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3201 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdint.h> ]], |
| 3202 | [[ int8_t a; int16_t b; int32_t c; a = b = c = 1;]])], |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3203 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3204 | AC_DEFINE([HAVE_INTXX_T]) |
| 3205 | AC_MSG_RESULT([yes]) |
| 3206 | ], [ AC_MSG_RESULT([no]) |
| 3207 | ]) |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3208 | fi |
| 3209 | |
Damien Miller | 578783e | 2000-09-23 14:12:24 +1100 | [diff] [blame] | 3210 | AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3211 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Tim Rice | 907881e | 2002-07-18 11:44:50 -0700 | [diff] [blame] | 3212 | #include <sys/types.h> |
| 3213 | #ifdef HAVE_STDINT_H |
| 3214 | # include <stdint.h> |
| 3215 | #endif |
| 3216 | #include <sys/socket.h> |
| 3217 | #ifdef HAVE_SYS_BITYPES_H |
| 3218 | # include <sys/bitypes.h> |
| 3219 | #endif |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3220 | ]], [[ |
| 3221 | int64_t a; a = 1; |
| 3222 | ]])], |
| 3223 | [ ac_cv_have_int64_t="yes" ], [ ac_cv_have_int64_t="no" |
| 3224 | ]) |
Damien Miller | 578783e | 2000-09-23 14:12:24 +1100 | [diff] [blame] | 3225 | ]) |
| 3226 | if test "x$ac_cv_have_int64_t" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3227 | AC_DEFINE([HAVE_INT64_T], [1], [define if you have int64_t data type]) |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 3228 | fi |
| 3229 | |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3230 | AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3231 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]], |
| 3232 | [[ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;]])], |
| 3233 | [ ac_cv_have_u_intxx_t="yes" ], [ ac_cv_have_u_intxx_t="no" |
| 3234 | ]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3235 | ]) |
| 3236 | if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3237 | AC_DEFINE([HAVE_U_INTXX_T], [1], [define if you have u_intxx_t data type]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3238 | have_u_intxx_t=1 |
| 3239 | fi |
Damien Miller | c6398ef | 1999-11-20 12:18:40 +1100 | [diff] [blame] | 3240 | |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3241 | if test -z "$have_u_intxx_t" ; then |
| 3242 | AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3243 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/socket.h> ]], |
| 3244 | [[ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;]])], |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3245 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3246 | AC_DEFINE([HAVE_U_INTXX_T]) |
| 3247 | AC_MSG_RESULT([yes]) |
| 3248 | ], [ AC_MSG_RESULT([no]) |
| 3249 | ]) |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3250 | fi |
| 3251 | |
Damien Miller | 578783e | 2000-09-23 14:12:24 +1100 | [diff] [blame] | 3252 | AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3253 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]], |
| 3254 | [[ u_int64_t a; a = 1;]])], |
| 3255 | [ ac_cv_have_u_int64_t="yes" ], [ ac_cv_have_u_int64_t="no" |
| 3256 | ]) |
Damien Miller | 578783e | 2000-09-23 14:12:24 +1100 | [diff] [blame] | 3257 | ]) |
| 3258 | if test "x$ac_cv_have_u_int64_t" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3259 | AC_DEFINE([HAVE_U_INT64_T], [1], [define if you have u_int64_t data type]) |
Damien Miller | 578783e | 2000-09-23 14:12:24 +1100 | [diff] [blame] | 3260 | have_u_int64_t=1 |
| 3261 | fi |
| 3262 | |
Damien Miller | c286819 | 2014-01-30 10:21:19 +1100 | [diff] [blame] | 3263 | if (test -z "$have_u_int64_t" && \ |
| 3264 | test "x$ac_cv_header_sys_bitypes_h" = "xyes") |
| 3265 | then |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 3266 | AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3267 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/bitypes.h> ]], |
| 3268 | [[ u_int64_t a; a = 1]])], |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 3269 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3270 | AC_DEFINE([HAVE_U_INT64_T]) |
| 3271 | AC_MSG_RESULT([yes]) |
| 3272 | ], [ AC_MSG_RESULT([no]) |
| 3273 | ]) |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 3274 | fi |
| 3275 | |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3276 | if test -z "$have_u_intxx_t" ; then |
| 3277 | AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3278 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3279 | #include <sys/types.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3280 | ]], [[ |
| 3281 | uint8_t a; |
| 3282 | uint16_t b; |
| 3283 | uint32_t c; |
| 3284 | a = b = c = 1; |
| 3285 | ]])], |
| 3286 | [ ac_cv_have_uintxx_t="yes" ], [ ac_cv_have_uintxx_t="no" |
| 3287 | ]) |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3288 | ]) |
| 3289 | if test "x$ac_cv_have_uintxx_t" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3290 | AC_DEFINE([HAVE_UINTXX_T], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3291 | [define if you have uintxx_t data type]) |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3292 | fi |
| 3293 | fi |
| 3294 | |
Damien Miller | c286819 | 2014-01-30 10:21:19 +1100 | [diff] [blame] | 3295 | if (test -z "$have_uintxx_t" && \ |
| 3296 | test "x$ac_cv_header_stdint_h" = "xyes") |
| 3297 | then |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3298 | AC_MSG_CHECKING([for uintXX_t types in stdint.h]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3299 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdint.h> ]], |
| 3300 | [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])], |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3301 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3302 | AC_DEFINE([HAVE_UINTXX_T]) |
| 3303 | AC_MSG_RESULT([yes]) |
| 3304 | ], [ AC_MSG_RESULT([no]) |
| 3305 | ]) |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 3306 | fi |
| 3307 | |
Damien Miller | c286819 | 2014-01-30 10:21:19 +1100 | [diff] [blame] | 3308 | if (test -z "$have_uintxx_t" && \ |
| 3309 | test "x$ac_cv_header_inttypes_h" = "xyes") |
| 3310 | then |
Darren Tucker | 6d72568 | 2014-01-17 19:17:34 +1100 | [diff] [blame] | 3311 | AC_MSG_CHECKING([for uintXX_t types in inttypes.h]) |
| 3312 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <inttypes.h> ]], |
| 3313 | [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])], |
| 3314 | [ |
| 3315 | AC_DEFINE([HAVE_UINTXX_T]) |
| 3316 | AC_MSG_RESULT([yes]) |
| 3317 | ], [ AC_MSG_RESULT([no]) |
| 3318 | ]) |
| 3319 | fi |
| 3320 | |
Damien Miller | edb8292 | 2000-06-20 13:25:52 +1000 | [diff] [blame] | 3321 | if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \ |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3322 | test "x$ac_cv_header_sys_bitypes_h" = "xyes") |
Damien Miller | b29ea91 | 2000-01-15 14:12:03 +1100 | [diff] [blame] | 3323 | then |
| 3324 | AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3325 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3326 | #include <sys/bitypes.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3327 | ]], [[ |
Damien Miller | 70494d1 | 2000-04-03 15:57:06 +1000 | [diff] [blame] | 3328 | int8_t a; int16_t b; int32_t c; |
| 3329 | u_int8_t e; u_int16_t f; u_int32_t g; |
| 3330 | a = b = c = e = f = g = 1; |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3331 | ]])], |
Damien Miller | b29ea91 | 2000-01-15 14:12:03 +1100 | [diff] [blame] | 3332 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3333 | AC_DEFINE([HAVE_U_INTXX_T]) |
| 3334 | AC_DEFINE([HAVE_INTXX_T]) |
| 3335 | AC_MSG_RESULT([yes]) |
| 3336 | ], [AC_MSG_RESULT([no]) |
| 3337 | ]) |
Damien Miller | b29ea91 | 2000-01-15 14:12:03 +1100 | [diff] [blame] | 3338 | fi |
| 3339 | |
Damien Miller | 58be738 | 2001-09-15 21:31:54 +1000 | [diff] [blame] | 3340 | |
| 3341 | AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3342 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]], |
| 3343 | [[ u_char foo; foo = 125; ]])], |
| 3344 | [ ac_cv_have_u_char="yes" ], [ ac_cv_have_u_char="no" |
| 3345 | ]) |
Damien Miller | 58be738 | 2001-09-15 21:31:54 +1000 | [diff] [blame] | 3346 | ]) |
| 3347 | if test "x$ac_cv_have_u_char" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3348 | AC_DEFINE([HAVE_U_CHAR], [1], [define if you have u_char data type]) |
Damien Miller | 58be738 | 2001-09-15 21:31:54 +1000 | [diff] [blame] | 3349 | fi |
| 3350 | |
Darren Tucker | 007e3b3 | 2013-11-03 18:43:55 +1100 | [diff] [blame] | 3351 | AC_CHECK_TYPES([intmax_t, uintmax_t], , , [ |
| 3352 | #include <sys/types.h> |
| 3353 | #include <stdint.h> |
| 3354 | ]) |
| 3355 | |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 3356 | TYPE_SOCKLEN_T |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 3357 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3358 | AC_CHECK_TYPES([sig_atomic_t], , , [#include <signal.h>]) |
| 3359 | AC_CHECK_TYPES([fsblkcnt_t, fsfilcnt_t], , , [ |
Darren Tucker | 598eaa6 | 2008-06-09 03:32:29 +1000 | [diff] [blame] | 3360 | #include <sys/types.h> |
| 3361 | #ifdef HAVE_SYS_BITYPES_H |
| 3362 | #include <sys/bitypes.h> |
| 3363 | #endif |
| 3364 | #ifdef HAVE_SYS_STATFS_H |
| 3365 | #include <sys/statfs.h> |
| 3366 | #endif |
| 3367 | #ifdef HAVE_SYS_STATVFS_H |
| 3368 | #include <sys/statvfs.h> |
| 3369 | #endif |
| 3370 | ]) |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 3371 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3372 | AC_CHECK_TYPES([in_addr_t, in_port_t], , , |
Damien Miller | 848b993 | 2005-02-24 12:12:34 +1100 | [diff] [blame] | 3373 | [#include <sys/types.h> |
| 3374 | #include <netinet/in.h>]) |
Darren Tucker | d9f8891 | 2005-02-20 21:01:48 +1100 | [diff] [blame] | 3375 | |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3376 | AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3377 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]], |
| 3378 | [[ size_t foo; foo = 1235; ]])], |
| 3379 | [ ac_cv_have_size_t="yes" ], [ ac_cv_have_size_t="no" |
| 3380 | ]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3381 | ]) |
| 3382 | if test "x$ac_cv_have_size_t" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3383 | AC_DEFINE([HAVE_SIZE_T], [1], [define if you have size_t data type]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3384 | fi |
Damien Miller | 9505851 | 1999-12-29 10:36:45 +1100 | [diff] [blame] | 3385 | |
Damien Miller | 615f939 | 2000-05-17 22:53:33 +1000 | [diff] [blame] | 3386 | AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3387 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]], |
| 3388 | [[ ssize_t foo; foo = 1235; ]])], |
| 3389 | [ ac_cv_have_ssize_t="yes" ], [ ac_cv_have_ssize_t="no" |
| 3390 | ]) |
Damien Miller | 615f939 | 2000-05-17 22:53:33 +1000 | [diff] [blame] | 3391 | ]) |
| 3392 | if test "x$ac_cv_have_ssize_t" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3393 | AC_DEFINE([HAVE_SSIZE_T], [1], [define if you have ssize_t data type]) |
Damien Miller | 615f939 | 2000-05-17 22:53:33 +1000 | [diff] [blame] | 3394 | fi |
| 3395 | |
Ben Lindstrom | 0d5af60 | 2001-01-09 00:50:29 +0000 | [diff] [blame] | 3396 | AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3397 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <time.h> ]], |
| 3398 | [[ clock_t foo; foo = 1235; ]])], |
| 3399 | [ ac_cv_have_clock_t="yes" ], [ ac_cv_have_clock_t="no" |
| 3400 | ]) |
Ben Lindstrom | 0d5af60 | 2001-01-09 00:50:29 +0000 | [diff] [blame] | 3401 | ]) |
| 3402 | if test "x$ac_cv_have_clock_t" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3403 | AC_DEFINE([HAVE_CLOCK_T], [1], [define if you have clock_t data type]) |
Ben Lindstrom | 0d5af60 | 2001-01-09 00:50:29 +0000 | [diff] [blame] | 3404 | fi |
| 3405 | |
Damien Miller | b54b40e | 2000-06-23 08:23:34 +1000 | [diff] [blame] | 3406 | AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3407 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Damien Miller | b54b40e | 2000-06-23 08:23:34 +1000 | [diff] [blame] | 3408 | #include <sys/types.h> |
| 3409 | #include <sys/socket.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3410 | ]], [[ sa_family_t foo; foo = 1235; ]])], |
| 3411 | [ ac_cv_have_sa_family_t="yes" ], |
| 3412 | [ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 3413 | #include <sys/types.h> |
| 3414 | #include <sys/socket.h> |
| 3415 | #include <netinet/in.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3416 | ]], [[ sa_family_t foo; foo = 1235; ]])], |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 3417 | [ ac_cv_have_sa_family_t="yes" ], |
Damien Miller | b54b40e | 2000-06-23 08:23:34 +1000 | [diff] [blame] | 3418 | [ ac_cv_have_sa_family_t="no" ] |
| 3419 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3420 | ]) |
Damien Miller | b54b40e | 2000-06-23 08:23:34 +1000 | [diff] [blame] | 3421 | ]) |
| 3422 | if test "x$ac_cv_have_sa_family_t" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3423 | AC_DEFINE([HAVE_SA_FAMILY_T], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3424 | [define if you have sa_family_t data type]) |
Damien Miller | b54b40e | 2000-06-23 08:23:34 +1000 | [diff] [blame] | 3425 | fi |
| 3426 | |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 3427 | AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3428 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]], |
| 3429 | [[ pid_t foo; foo = 1235; ]])], |
| 3430 | [ ac_cv_have_pid_t="yes" ], [ ac_cv_have_pid_t="no" |
| 3431 | ]) |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 3432 | ]) |
| 3433 | if test "x$ac_cv_have_pid_t" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3434 | AC_DEFINE([HAVE_PID_T], [1], [define if you have pid_t data type]) |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 3435 | fi |
| 3436 | |
| 3437 | AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3438 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]], |
| 3439 | [[ mode_t foo; foo = 1235; ]])], |
| 3440 | [ ac_cv_have_mode_t="yes" ], [ ac_cv_have_mode_t="no" |
| 3441 | ]) |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 3442 | ]) |
| 3443 | if test "x$ac_cv_have_mode_t" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3444 | AC_DEFINE([HAVE_MODE_T], [1], [define if you have mode_t data type]) |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 3445 | fi |
| 3446 | |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3447 | |
| 3448 | AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3449 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Damien Miller | 8117111 | 2000-04-23 11:14:01 +1000 | [diff] [blame] | 3450 | #include <sys/types.h> |
| 3451 | #include <sys/socket.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3452 | ]], [[ struct sockaddr_storage s; ]])], |
| 3453 | [ ac_cv_have_struct_sockaddr_storage="yes" ], |
| 3454 | [ ac_cv_have_struct_sockaddr_storage="no" |
| 3455 | ]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3456 | ]) |
| 3457 | if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3458 | AC_DEFINE([HAVE_STRUCT_SOCKADDR_STORAGE], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3459 | [define if you have struct sockaddr_storage data type]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3460 | fi |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 3461 | |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3462 | AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3463 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Damien Miller | 7b22d65 | 2000-06-18 14:07:04 +1000 | [diff] [blame] | 3464 | #include <sys/types.h> |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3465 | #include <netinet/in.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3466 | ]], [[ struct sockaddr_in6 s; s.sin6_family = 0; ]])], |
| 3467 | [ ac_cv_have_struct_sockaddr_in6="yes" ], |
| 3468 | [ ac_cv_have_struct_sockaddr_in6="no" |
| 3469 | ]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3470 | ]) |
| 3471 | if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3472 | AC_DEFINE([HAVE_STRUCT_SOCKADDR_IN6], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3473 | [define if you have struct sockaddr_in6 data type]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3474 | fi |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 3475 | |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3476 | AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3477 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Damien Miller | 7b22d65 | 2000-06-18 14:07:04 +1000 | [diff] [blame] | 3478 | #include <sys/types.h> |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3479 | #include <netinet/in.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3480 | ]], [[ struct in6_addr s; s.s6_addr[0] = 0; ]])], |
| 3481 | [ ac_cv_have_struct_in6_addr="yes" ], |
| 3482 | [ ac_cv_have_struct_in6_addr="no" |
| 3483 | ]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3484 | ]) |
| 3485 | if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3486 | AC_DEFINE([HAVE_STRUCT_IN6_ADDR], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3487 | [define if you have struct in6_addr data type]) |
Tim Rice | 0f4d2c0 | 2008-11-18 21:26:41 -0800 | [diff] [blame] | 3488 | |
| 3489 | dnl Now check for sin6_scope_id |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3490 | AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id], , , |
Tim Rice | 0f4d2c0 | 2008-11-18 21:26:41 -0800 | [diff] [blame] | 3491 | [ |
| 3492 | #ifdef HAVE_SYS_TYPES_H |
| 3493 | #include <sys/types.h> |
| 3494 | #endif |
| 3495 | #include <netinet/in.h> |
| 3496 | ]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3497 | fi |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 3498 | |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3499 | AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3500 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Damien Miller | 8117111 | 2000-04-23 11:14:01 +1000 | [diff] [blame] | 3501 | #include <sys/types.h> |
| 3502 | #include <sys/socket.h> |
| 3503 | #include <netdb.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3504 | ]], [[ struct addrinfo s; s.ai_flags = AI_PASSIVE; ]])], |
| 3505 | [ ac_cv_have_struct_addrinfo="yes" ], |
| 3506 | [ ac_cv_have_struct_addrinfo="no" |
| 3507 | ]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3508 | ]) |
| 3509 | if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3510 | AC_DEFINE([HAVE_STRUCT_ADDRINFO], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3511 | [define if you have struct addrinfo data type]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3512 | fi |
| 3513 | |
Ben Lindstrom | 42202bc | 2001-01-15 02:34:37 +0000 | [diff] [blame] | 3514 | AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3515 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/time.h> ]], |
| 3516 | [[ struct timeval tv; tv.tv_sec = 1;]])], |
| 3517 | [ ac_cv_have_struct_timeval="yes" ], |
| 3518 | [ ac_cv_have_struct_timeval="no" |
| 3519 | ]) |
Ben Lindstrom | 42202bc | 2001-01-15 02:34:37 +0000 | [diff] [blame] | 3520 | ]) |
| 3521 | if test "x$ac_cv_have_struct_timeval" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3522 | AC_DEFINE([HAVE_STRUCT_TIMEVAL], [1], [define if you have struct timeval]) |
Ben Lindstrom | 42202bc | 2001-01-15 02:34:37 +0000 | [diff] [blame] | 3523 | have_struct_timeval=1 |
| 3524 | fi |
| 3525 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3526 | AC_CHECK_TYPES([struct timespec]) |
Tim Rice | 4e4dc56 | 2003-03-18 10:21:40 -0800 | [diff] [blame] | 3527 | |
Ben Lindstrom | 5bd6eb7 | 2003-03-21 00:34:34 +0000 | [diff] [blame] | 3528 | # We need int64_t or else certian parts of the compile will fail. |
Tim Rice | 8bb561b | 2005-03-17 16:23:19 -0800 | [diff] [blame] | 3529 | if test "x$ac_cv_have_int64_t" = "xno" && \ |
| 3530 | test "x$ac_cv_sizeof_long_int" != "x8" && \ |
| 3531 | test "x$ac_cv_sizeof_long_long_int" = "x0" ; then |
Ben Lindstrom | 5bd6eb7 | 2003-03-21 00:34:34 +0000 | [diff] [blame] | 3532 | echo "OpenSSH requires int64_t support. Contact your vendor or install" |
| 3533 | echo "an alternative compiler (I.E., GCC) before continuing." |
| 3534 | echo "" |
| 3535 | exit 1; |
Tim Rice | bee3f22 | 2001-03-11 17:32:12 -0800 | [diff] [blame] | 3536 | else |
| 3537 | dnl test snprintf (broken on SCO w/gcc) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 3538 | AC_RUN_IFELSE( |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 3539 | [AC_LANG_SOURCE([[ |
Tim Rice | bee3f22 | 2001-03-11 17:32:12 -0800 | [diff] [blame] | 3540 | #include <stdio.h> |
| 3541 | #include <string.h> |
| 3542 | #ifdef HAVE_SNPRINTF |
| 3543 | main() |
| 3544 | { |
| 3545 | char buf[50]; |
| 3546 | char expected_out[50]; |
| 3547 | int mazsize = 50 ; |
| 3548 | #if (SIZEOF_LONG_INT == 8) |
| 3549 | long int num = 0x7fffffffffffffff; |
| 3550 | #else |
Kevin Steves | 6482ec8 | 2001-07-15 02:09:28 +0000 | [diff] [blame] | 3551 | long long num = 0x7fffffffffffffffll; |
Tim Rice | bee3f22 | 2001-03-11 17:32:12 -0800 | [diff] [blame] | 3552 | #endif |
| 3553 | strcpy(expected_out, "9223372036854775807"); |
| 3554 | snprintf(buf, mazsize, "%lld", num); |
| 3555 | if(strcmp(buf, expected_out) != 0) |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3556 | exit(1); |
Tim Rice | bee3f22 | 2001-03-11 17:32:12 -0800 | [diff] [blame] | 3557 | exit(0); |
| 3558 | } |
| 3559 | #else |
| 3560 | main() { exit(0); } |
| 3561 | #endif |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3562 | ]])], [ true ], [ AC_DEFINE([BROKEN_SNPRINTF]) ], |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 3563 | AC_MSG_WARN([cross compiling: Assuming working snprintf()]) |
Tim Rice | bee3f22 | 2001-03-11 17:32:12 -0800 | [diff] [blame] | 3564 | ) |
Ben Lindstrom | 3ad650a | 2001-01-03 06:02:51 +0000 | [diff] [blame] | 3565 | fi |
| 3566 | |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 3567 | dnl Checks for structure members |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3568 | OSSH_CHECK_HEADER_FOR_FIELD([ut_host], [utmp.h], [HAVE_HOST_IN_UTMP]) |
| 3569 | OSSH_CHECK_HEADER_FOR_FIELD([ut_host], [utmpx.h], [HAVE_HOST_IN_UTMPX]) |
| 3570 | OSSH_CHECK_HEADER_FOR_FIELD([syslen], [utmpx.h], [HAVE_SYSLEN_IN_UTMPX]) |
| 3571 | OSSH_CHECK_HEADER_FOR_FIELD([ut_pid], [utmp.h], [HAVE_PID_IN_UTMP]) |
| 3572 | OSSH_CHECK_HEADER_FOR_FIELD([ut_type], [utmp.h], [HAVE_TYPE_IN_UTMP]) |
| 3573 | OSSH_CHECK_HEADER_FOR_FIELD([ut_type], [utmpx.h], [HAVE_TYPE_IN_UTMPX]) |
| 3574 | OSSH_CHECK_HEADER_FOR_FIELD([ut_tv], [utmp.h], [HAVE_TV_IN_UTMP]) |
| 3575 | OSSH_CHECK_HEADER_FOR_FIELD([ut_id], [utmp.h], [HAVE_ID_IN_UTMP]) |
| 3576 | OSSH_CHECK_HEADER_FOR_FIELD([ut_id], [utmpx.h], [HAVE_ID_IN_UTMPX]) |
| 3577 | OSSH_CHECK_HEADER_FOR_FIELD([ut_addr], [utmp.h], [HAVE_ADDR_IN_UTMP]) |
| 3578 | OSSH_CHECK_HEADER_FOR_FIELD([ut_addr], [utmpx.h], [HAVE_ADDR_IN_UTMPX]) |
| 3579 | OSSH_CHECK_HEADER_FOR_FIELD([ut_addr_v6], [utmp.h], [HAVE_ADDR_V6_IN_UTMP]) |
| 3580 | OSSH_CHECK_HEADER_FOR_FIELD([ut_addr_v6], [utmpx.h], [HAVE_ADDR_V6_IN_UTMPX]) |
| 3581 | OSSH_CHECK_HEADER_FOR_FIELD([ut_exit], [utmp.h], [HAVE_EXIT_IN_UTMP]) |
| 3582 | OSSH_CHECK_HEADER_FOR_FIELD([ut_time], [utmp.h], [HAVE_TIME_IN_UTMP]) |
| 3583 | OSSH_CHECK_HEADER_FOR_FIELD([ut_time], [utmpx.h], [HAVE_TIME_IN_UTMPX]) |
| 3584 | OSSH_CHECK_HEADER_FOR_FIELD([ut_tv], [utmpx.h], [HAVE_TV_IN_UTMPX]) |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 3585 | |
| 3586 | AC_CHECK_MEMBERS([struct stat.st_blksize]) |
Damien Miller | 6332da2 | 2013-04-23 14:25:52 +1000 | [diff] [blame] | 3587 | AC_CHECK_MEMBERS([struct passwd.pw_gecos, struct passwd.pw_class, |
| 3588 | struct passwd.pw_change, struct passwd.pw_expire], |
| 3589 | [], [], [[ |
| 3590 | #include <sys/types.h> |
| 3591 | #include <pwd.h> |
| 3592 | ]]) |
| 3593 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3594 | AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE([__res_state], [state], |
Darren Tucker | 58e298d | 2005-11-25 13:14:58 +1100 | [diff] [blame] | 3595 | [Define if we don't have struct __res_state in resolv.h])], |
Damien Miller | 6332da2 | 2013-04-23 14:25:52 +1000 | [diff] [blame] | 3596 | [[ |
Darren Tucker | 58e298d | 2005-11-25 13:14:58 +1100 | [diff] [blame] | 3597 | #include <stdio.h> |
| 3598 | #if HAVE_SYS_TYPES_H |
| 3599 | # include <sys/types.h> |
| 3600 | #endif |
| 3601 | #include <netinet/in.h> |
| 3602 | #include <arpa/nameser.h> |
| 3603 | #include <resolv.h> |
Damien Miller | 6332da2 | 2013-04-23 14:25:52 +1000 | [diff] [blame] | 3604 | ]]) |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 3605 | |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3606 | AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage], |
| 3607 | ac_cv_have_ss_family_in_struct_ss, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3608 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Damien Miller | 8117111 | 2000-04-23 11:14:01 +1000 | [diff] [blame] | 3609 | #include <sys/types.h> |
| 3610 | #include <sys/socket.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3611 | ]], [[ struct sockaddr_storage s; s.ss_family = 1; ]])], |
| 3612 | [ ac_cv_have_ss_family_in_struct_ss="yes" ], |
| 3613 | [ ac_cv_have_ss_family_in_struct_ss="no" ]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3614 | ]) |
| 3615 | if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3616 | AC_DEFINE([HAVE_SS_FAMILY_IN_SS], [1], [Fields in struct sockaddr_storage]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3617 | fi |
| 3618 | |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3619 | AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage], |
| 3620 | ac_cv_have___ss_family_in_struct_ss, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3621 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Damien Miller | 8117111 | 2000-04-23 11:14:01 +1000 | [diff] [blame] | 3622 | #include <sys/types.h> |
| 3623 | #include <sys/socket.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3624 | ]], [[ struct sockaddr_storage s; s.__ss_family = 1; ]])], |
| 3625 | [ ac_cv_have___ss_family_in_struct_ss="yes" ], |
| 3626 | [ ac_cv_have___ss_family_in_struct_ss="no" |
| 3627 | ]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3628 | ]) |
| 3629 | if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3630 | AC_DEFINE([HAVE___SS_FAMILY_IN_SS], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3631 | [Fields in struct sockaddr_storage]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3632 | fi |
Damien Miller | bf1c9b2 | 1999-12-09 10:16:54 +1100 | [diff] [blame] | 3633 | |
Tim Rice | 28bbb0c | 2002-05-27 17:37:32 -0700 | [diff] [blame] | 3634 | dnl make sure we're using the real structure members and not defines |
Kevin Steves | 939c9db | 2002-03-22 17:23:25 +0000 | [diff] [blame] | 3635 | AC_CACHE_CHECK([for msg_accrights field in struct msghdr], |
| 3636 | ac_cv_have_accrights_in_msghdr, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3637 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Tim Rice | ae49fe6 | 2002-04-12 10:26:21 -0700 | [diff] [blame] | 3638 | #include <sys/types.h> |
Kevin Steves | 939c9db | 2002-03-22 17:23:25 +0000 | [diff] [blame] | 3639 | #include <sys/socket.h> |
| 3640 | #include <sys/uio.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3641 | ]], [[ |
Tim Rice | 28bbb0c | 2002-05-27 17:37:32 -0700 | [diff] [blame] | 3642 | #ifdef msg_accrights |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 3643 | #error "msg_accrights is a macro" |
Tim Rice | 28bbb0c | 2002-05-27 17:37:32 -0700 | [diff] [blame] | 3644 | exit(1); |
| 3645 | #endif |
| 3646 | struct msghdr m; |
| 3647 | m.msg_accrights = 0; |
| 3648 | exit(0); |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3649 | ]])], |
Kevin Steves | 939c9db | 2002-03-22 17:23:25 +0000 | [diff] [blame] | 3650 | [ ac_cv_have_accrights_in_msghdr="yes" ], |
| 3651 | [ ac_cv_have_accrights_in_msghdr="no" ] |
| 3652 | ) |
| 3653 | ]) |
| 3654 | if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3655 | AC_DEFINE([HAVE_ACCRIGHTS_IN_MSGHDR], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3656 | [Define if your system uses access rights style |
| 3657 | file descriptor passing]) |
Kevin Steves | 939c9db | 2002-03-22 17:23:25 +0000 | [diff] [blame] | 3658 | fi |
| 3659 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3660 | AC_MSG_CHECKING([if struct statvfs.f_fsid is integral type]) |
| 3661 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Darren Tucker | e1a3ddf | 2012-05-04 11:05:45 +1000 | [diff] [blame] | 3662 | #include <sys/param.h> |
Darren Tucker | 3278062 | 2009-06-16 16:11:02 +1000 | [diff] [blame] | 3663 | #include <sys/stat.h> |
| 3664 | #ifdef HAVE_SYS_TIME_H |
| 3665 | # include <sys/time.h> |
| 3666 | #endif |
| 3667 | #ifdef HAVE_SYS_MOUNT_H |
| 3668 | #include <sys/mount.h> |
| 3669 | #endif |
| 3670 | #ifdef HAVE_SYS_STATVFS_H |
| 3671 | #include <sys/statvfs.h> |
| 3672 | #endif |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3673 | ]], [[ struct statvfs s; s.f_fsid = 0; ]])], |
| 3674 | [ AC_MSG_RESULT([yes]) ], |
| 3675 | [ AC_MSG_RESULT([no]) |
Darren Tucker | 3278062 | 2009-06-16 16:11:02 +1000 | [diff] [blame] | 3676 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3677 | AC_MSG_CHECKING([if fsid_t has member val]) |
| 3678 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Darren Tucker | 3278062 | 2009-06-16 16:11:02 +1000 | [diff] [blame] | 3679 | #include <sys/types.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3680 | #include <sys/statvfs.h> |
| 3681 | ]], [[ fsid_t t; t.val[0] = 0; ]])], |
| 3682 | [ AC_MSG_RESULT([yes]) |
| 3683 | AC_DEFINE([FSID_HAS_VAL], [1], [fsid_t has member val]) ], |
| 3684 | [ AC_MSG_RESULT([no]) ]) |
Darren Tucker | 3278062 | 2009-06-16 16:11:02 +1000 | [diff] [blame] | 3685 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3686 | AC_MSG_CHECKING([if f_fsid has member __val]) |
| 3687 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Darren Tucker | 3278062 | 2009-06-16 16:11:02 +1000 | [diff] [blame] | 3688 | #include <sys/types.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3689 | #include <sys/statvfs.h> |
| 3690 | ]], [[ fsid_t t; t.__val[0] = 0; ]])], |
| 3691 | [ AC_MSG_RESULT([yes]) |
| 3692 | AC_DEFINE([FSID_HAS___VAL], [1], [fsid_t has member __val]) ], |
| 3693 | [ AC_MSG_RESULT([no]) ]) |
Darren Tucker | 3278062 | 2009-06-16 16:11:02 +1000 | [diff] [blame] | 3694 | ]) |
Darren Tucker | 7700138 | 2008-06-09 06:17:53 +1000 | [diff] [blame] | 3695 | |
Kevin Steves | a44e035 | 2002-04-07 16:18:03 +0000 | [diff] [blame] | 3696 | AC_CACHE_CHECK([for msg_control field in struct msghdr], |
| 3697 | ac_cv_have_control_in_msghdr, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3698 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Tim Rice | ae49fe6 | 2002-04-12 10:26:21 -0700 | [diff] [blame] | 3699 | #include <sys/types.h> |
Kevin Steves | a44e035 | 2002-04-07 16:18:03 +0000 | [diff] [blame] | 3700 | #include <sys/socket.h> |
| 3701 | #include <sys/uio.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3702 | ]], [[ |
Tim Rice | 28bbb0c | 2002-05-27 17:37:32 -0700 | [diff] [blame] | 3703 | #ifdef msg_control |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 3704 | #error "msg_control is a macro" |
Tim Rice | 28bbb0c | 2002-05-27 17:37:32 -0700 | [diff] [blame] | 3705 | exit(1); |
| 3706 | #endif |
| 3707 | struct msghdr m; |
| 3708 | m.msg_control = 0; |
| 3709 | exit(0); |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3710 | ]])], |
Kevin Steves | a44e035 | 2002-04-07 16:18:03 +0000 | [diff] [blame] | 3711 | [ ac_cv_have_control_in_msghdr="yes" ], |
| 3712 | [ ac_cv_have_control_in_msghdr="no" ] |
| 3713 | ) |
| 3714 | ]) |
| 3715 | if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3716 | AC_DEFINE([HAVE_CONTROL_IN_MSGHDR], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3717 | [Define if your system uses ancillary data style |
| 3718 | file descriptor passing]) |
Kevin Steves | a44e035 | 2002-04-07 16:18:03 +0000 | [diff] [blame] | 3719 | fi |
| 3720 | |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3721 | AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3722 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], |
| 3723 | [[ extern char *__progname; printf("%s", __progname); ]])], |
| 3724 | [ ac_cv_libc_defines___progname="yes" ], |
| 3725 | [ ac_cv_libc_defines___progname="no" |
| 3726 | ]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3727 | ]) |
| 3728 | if test "x$ac_cv_libc_defines___progname" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3729 | AC_DEFINE([HAVE___PROGNAME], [1], [Define if libc defines __progname]) |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 3730 | fi |
| 3731 | |
Kevin Steves | 4846f4a | 2002-03-22 18:19:53 +0000 | [diff] [blame] | 3732 | AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3733 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]], |
| 3734 | [[ printf("%s", __FUNCTION__); ]])], |
| 3735 | [ ac_cv_cc_implements___FUNCTION__="yes" ], |
| 3736 | [ ac_cv_cc_implements___FUNCTION__="no" |
| 3737 | ]) |
Kevin Steves | 4846f4a | 2002-03-22 18:19:53 +0000 | [diff] [blame] | 3738 | ]) |
| 3739 | if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3740 | AC_DEFINE([HAVE___FUNCTION__], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3741 | [Define if compiler implements __FUNCTION__]) |
Kevin Steves | 4846f4a | 2002-03-22 18:19:53 +0000 | [diff] [blame] | 3742 | fi |
| 3743 | |
| 3744 | AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3745 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]], |
| 3746 | [[ printf("%s", __func__); ]])], |
| 3747 | [ ac_cv_cc_implements___func__="yes" ], |
| 3748 | [ ac_cv_cc_implements___func__="no" |
| 3749 | ]) |
Kevin Steves | 4846f4a | 2002-03-22 18:19:53 +0000 | [diff] [blame] | 3750 | ]) |
| 3751 | if test "x$ac_cv_cc_implements___func__" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3752 | AC_DEFINE([HAVE___func__], [1], [Define if compiler implements __func__]) |
Kevin Steves | 4846f4a | 2002-03-22 18:19:53 +0000 | [diff] [blame] | 3753 | fi |
| 3754 | |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 3755 | AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3756 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[ |
| 3757 | #include <stdarg.h> |
| 3758 | va_list x,y; |
| 3759 | ]], [[ va_copy(x,y); ]])], |
| 3760 | [ ac_cv_have_va_copy="yes" ], |
| 3761 | [ ac_cv_have_va_copy="no" |
| 3762 | ]) |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 3763 | ]) |
| 3764 | if test "x$ac_cv_have_va_copy" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3765 | AC_DEFINE([HAVE_VA_COPY], [1], [Define if va_copy exists]) |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 3766 | fi |
| 3767 | |
| 3768 | AC_CACHE_CHECK([whether __va_copy exists], ac_cv_have___va_copy, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3769 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[ |
| 3770 | #include <stdarg.h> |
| 3771 | va_list x,y; |
| 3772 | ]], [[ __va_copy(x,y); ]])], |
| 3773 | [ ac_cv_have___va_copy="yes" ], [ ac_cv_have___va_copy="no" |
| 3774 | ]) |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 3775 | ]) |
| 3776 | if test "x$ac_cv_have___va_copy" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3777 | AC_DEFINE([HAVE___VA_COPY], [1], [Define if __va_copy exists]) |
Damien Miller | 57f3915 | 2005-11-24 19:58:19 +1100 | [diff] [blame] | 3778 | fi |
| 3779 | |
Damien Miller | 4f8e669 | 2001-07-14 13:22:53 +1000 | [diff] [blame] | 3780 | AC_CACHE_CHECK([whether getopt has optreset support], |
| 3781 | ac_cv_have_getopt_optreset, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3782 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <getopt.h> ]], |
| 3783 | [[ extern int optreset; optreset = 0; ]])], |
| 3784 | [ ac_cv_have_getopt_optreset="yes" ], |
| 3785 | [ ac_cv_have_getopt_optreset="no" |
| 3786 | ]) |
Damien Miller | 4f8e669 | 2001-07-14 13:22:53 +1000 | [diff] [blame] | 3787 | ]) |
| 3788 | if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3789 | AC_DEFINE([HAVE_GETOPT_OPTRESET], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3790 | [Define if your getopt(3) defines and uses optreset]) |
Damien Miller | 4f8e669 | 2001-07-14 13:22:53 +1000 | [diff] [blame] | 3791 | fi |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 3792 | |
Damien Miller | ecbb26d | 2000-07-15 14:59:14 +1000 | [diff] [blame] | 3793 | AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3794 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], |
| 3795 | [[ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);]])], |
| 3796 | [ ac_cv_libc_defines_sys_errlist="yes" ], |
| 3797 | [ ac_cv_libc_defines_sys_errlist="no" |
| 3798 | ]) |
Damien Miller | ecbb26d | 2000-07-15 14:59:14 +1000 | [diff] [blame] | 3799 | ]) |
| 3800 | if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3801 | AC_DEFINE([HAVE_SYS_ERRLIST], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3802 | [Define if your system defines sys_errlist[]]) |
Damien Miller | ecbb26d | 2000-07-15 14:59:14 +1000 | [diff] [blame] | 3803 | fi |
| 3804 | |
| 3805 | |
Damien Miller | 11fa2cc | 2000-08-16 10:35:58 +1000 | [diff] [blame] | 3806 | AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3807 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], |
| 3808 | [[ extern int sys_nerr; printf("%i", sys_nerr);]])], |
| 3809 | [ ac_cv_libc_defines_sys_nerr="yes" ], |
| 3810 | [ ac_cv_libc_defines_sys_nerr="no" |
| 3811 | ]) |
Damien Miller | 11fa2cc | 2000-08-16 10:35:58 +1000 | [diff] [blame] | 3812 | ]) |
| 3813 | if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3814 | AC_DEFINE([HAVE_SYS_NERR], [1], [Define if your system defines sys_nerr]) |
Damien Miller | 11fa2cc | 2000-08-16 10:35:58 +1000 | [diff] [blame] | 3815 | fi |
| 3816 | |
Darren Tucker | 5f88d34 | 2003-10-15 16:57:57 +1000 | [diff] [blame] | 3817 | # Check libraries needed by DNS fingerprint support |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3818 | AC_SEARCH_LIBS([getrrsetbyname], [resolv], |
| 3819 | [AC_DEFINE([HAVE_GETRRSETBYNAME], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3820 | [Define if getrrsetbyname() exists])], |
Damien Miller | 7abe09b | 2003-05-15 10:53:49 +1000 | [diff] [blame] | 3821 | [ |
Darren Tucker | 5f88d34 | 2003-10-15 16:57:57 +1000 | [diff] [blame] | 3822 | # Needed by our getrrsetbyname() |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3823 | AC_SEARCH_LIBS([res_query], [resolv]) |
| 3824 | AC_SEARCH_LIBS([dn_expand], [resolv]) |
| 3825 | AC_MSG_CHECKING([if res_query will link]) |
| 3826 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[ |
Darren Tucker | e02b49a | 2009-09-11 14:56:08 +1000 | [diff] [blame] | 3827 | #include <sys/types.h> |
| 3828 | #include <netinet/in.h> |
| 3829 | #include <arpa/nameser.h> |
| 3830 | #include <netdb.h> |
| 3831 | #include <resolv.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3832 | ]], [[ |
Darren Tucker | e02b49a | 2009-09-11 14:56:08 +1000 | [diff] [blame] | 3833 | res_query (0, 0, 0, 0, 0); |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3834 | ]])], |
| 3835 | AC_MSG_RESULT([yes]), |
| 3836 | [AC_MSG_RESULT([no]) |
Darren Tucker | 8e968a5 | 2004-05-13 11:56:16 +1000 | [diff] [blame] | 3837 | saved_LIBS="$LIBS" |
| 3838 | LIBS="$LIBS -lresolv" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3839 | AC_MSG_CHECKING([for res_query in -lresolv]) |
| 3840 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[ |
Darren Tucker | e02b49a | 2009-09-11 14:56:08 +1000 | [diff] [blame] | 3841 | #include <sys/types.h> |
| 3842 | #include <netinet/in.h> |
| 3843 | #include <arpa/nameser.h> |
| 3844 | #include <netdb.h> |
Darren Tucker | 8e968a5 | 2004-05-13 11:56:16 +1000 | [diff] [blame] | 3845 | #include <resolv.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3846 | ]], [[ |
Darren Tucker | 8e968a5 | 2004-05-13 11:56:16 +1000 | [diff] [blame] | 3847 | res_query (0, 0, 0, 0, 0); |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3848 | ]])], |
| 3849 | [AC_MSG_RESULT([yes])], |
Darren Tucker | 8e968a5 | 2004-05-13 11:56:16 +1000 | [diff] [blame] | 3850 | [LIBS="$saved_LIBS" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3851 | AC_MSG_RESULT([no])]) |
Darren Tucker | 8e968a5 | 2004-05-13 11:56:16 +1000 | [diff] [blame] | 3852 | ]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3853 | AC_CHECK_FUNCS([_getshort _getlong]) |
Darren Tucker | d886e1c | 2005-06-01 18:57:45 +1000 | [diff] [blame] | 3854 | AC_CHECK_DECLS([_getshort, _getlong], , , |
Tim Rice | fcc7ff1 | 2005-06-02 20:28:29 -0700 | [diff] [blame] | 3855 | [#include <sys/types.h> |
| 3856 | #include <arpa/nameser.h>]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3857 | AC_CHECK_MEMBER([HEADER.ad], |
| 3858 | [AC_DEFINE([HAVE_HEADER_AD], [1], |
| 3859 | [Define if HEADER.ad exists in arpa/nameser.h])], , |
Darren Tucker | 5f88d34 | 2003-10-15 16:57:57 +1000 | [diff] [blame] | 3860 | [#include <arpa/nameser.h>]) |
| 3861 | ]) |
Damien Miller | 7abe09b | 2003-05-15 10:53:49 +1000 | [diff] [blame] | 3862 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3863 | AC_MSG_CHECKING([if struct __res_state _res is an extern]) |
| 3864 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[ |
Darren Tucker | cc40d5e | 2007-04-29 13:58:06 +1000 | [diff] [blame] | 3865 | #include <stdio.h> |
| 3866 | #if HAVE_SYS_TYPES_H |
| 3867 | # include <sys/types.h> |
| 3868 | #endif |
| 3869 | #include <netinet/in.h> |
| 3870 | #include <arpa/nameser.h> |
| 3871 | #include <resolv.h> |
| 3872 | extern struct __res_state _res; |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3873 | ]], [[ ]])], |
| 3874 | [AC_MSG_RESULT([yes]) |
| 3875 | AC_DEFINE([HAVE__RES_EXTERN], [1], |
Darren Tucker | cc40d5e | 2007-04-29 13:58:06 +1000 | [diff] [blame] | 3876 | [Define if you have struct __res_state _res as an extern]) |
| 3877 | ], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3878 | [ AC_MSG_RESULT([no]) ] |
Darren Tucker | cc40d5e | 2007-04-29 13:58:06 +1000 | [diff] [blame] | 3879 | ) |
| 3880 | |
Damien Miller | 73b42d2 | 2006-04-22 21:26:08 +1000 | [diff] [blame] | 3881 | # Check whether user wants SELinux support |
| 3882 | SELINUX_MSG="no" |
| 3883 | LIBSELINUX="" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3884 | AC_ARG_WITH([selinux], |
Damien Miller | 5b1c8b3 | 2008-03-27 12:33:07 +1100 | [diff] [blame] | 3885 | [ --with-selinux Enable SELinux support], |
Damien Miller | 73b42d2 | 2006-04-22 21:26:08 +1000 | [diff] [blame] | 3886 | [ if test "x$withval" != "xno" ; then |
Darren Tucker | 20e9f97 | 2007-03-25 18:26:01 +1000 | [diff] [blame] | 3887 | save_LIBS="$LIBS" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3888 | AC_DEFINE([WITH_SELINUX], [1], |
| 3889 | [Define if you want SELinux support.]) |
Damien Miller | 73b42d2 | 2006-04-22 21:26:08 +1000 | [diff] [blame] | 3890 | SELINUX_MSG="yes" |
| 3891 | AC_CHECK_HEADER([selinux/selinux.h], , |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3892 | AC_MSG_ERROR([SELinux support requires selinux.h header])) |
| 3893 | AC_CHECK_LIB([selinux], [setexeccon], |
Damien Miller | 1d2bfc4 | 2010-02-10 10:19:29 +1100 | [diff] [blame] | 3894 | [ LIBSELINUX="-lselinux" |
| 3895 | LIBS="$LIBS -lselinux" |
| 3896 | ], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3897 | AC_MSG_ERROR([SELinux support requires libselinux library])) |
Damien Miller | 71adf12 | 2011-01-25 12:16:15 +1100 | [diff] [blame] | 3898 | SSHLIBS="$SSHLIBS $LIBSELINUX" |
Darren Tucker | 20e9f97 | 2007-03-25 18:26:01 +1000 | [diff] [blame] | 3899 | SSHDLIBS="$SSHDLIBS $LIBSELINUX" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3900 | AC_CHECK_FUNCS([getseuserbyname get_default_context_with_level]) |
Darren Tucker | adc947d | 2006-10-07 09:07:20 +1000 | [diff] [blame] | 3901 | LIBS="$save_LIBS" |
Damien Miller | 73b42d2 | 2006-04-22 21:26:08 +1000 | [diff] [blame] | 3902 | fi ] |
| 3903 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3904 | AC_SUBST([SSHLIBS]) |
| 3905 | AC_SUBST([SSHDLIBS]) |
Damien Miller | 73b42d2 | 2006-04-22 21:26:08 +1000 | [diff] [blame] | 3906 | |
Damien Miller | fd4c9ee | 2002-04-13 11:04:40 +1000 | [diff] [blame] | 3907 | # Check whether user wants Kerberos 5 support |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3908 | KRB5_MSG="no" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3909 | AC_ARG_WITH([kerberos5], |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3910 | [ --with-kerberos5=PATH Enable Kerberos 5 support], |
Darren Tucker | 1d3ca58 | 2004-01-22 12:05:34 +1100 | [diff] [blame] | 3911 | [ if test "x$withval" != "xno" ; then |
| 3912 | if test "x$withval" = "xyes" ; then |
| 3913 | KRB5ROOT="/usr/local" |
| 3914 | else |
| 3915 | KRB5ROOT=${withval} |
| 3916 | fi |
| 3917 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3918 | AC_DEFINE([KRB5], [1], [Define if you want Kerberos 5 support]) |
Darren Tucker | 1d3ca58 | 2004-01-22 12:05:34 +1100 | [diff] [blame] | 3919 | KRB5_MSG="yes" |
| 3920 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3921 | AC_PATH_PROG([KRB5CONF], [krb5-config], |
Darren Tucker | dad48e7 | 2009-09-01 18:26:00 +1000 | [diff] [blame] | 3922 | [$KRB5ROOT/bin/krb5-config], |
| 3923 | [$KRB5ROOT/bin:$PATH]) |
| 3924 | if test -x $KRB5CONF ; then |
Darren Tucker | 964de18 | 2013-02-22 10:39:59 +1100 | [diff] [blame] | 3925 | K5CFLAGS="`$KRB5CONF --cflags`" |
| 3926 | K5LIBS="`$KRB5CONF --libs`" |
| 3927 | CPPFLAGS="$CPPFLAGS $K5CFLAGS" |
Darren Tucker | 1d3ca58 | 2004-01-22 12:05:34 +1100 | [diff] [blame] | 3928 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3929 | AC_MSG_CHECKING([for gssapi support]) |
Darren Tucker | 1d3ca58 | 2004-01-22 12:05:34 +1100 | [diff] [blame] | 3930 | if $KRB5CONF | grep gssapi >/dev/null ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3931 | AC_MSG_RESULT([yes]) |
| 3932 | AC_DEFINE([GSSAPI], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 3933 | [Define this if you want GSSAPI |
| 3934 | support in the version 2 protocol]) |
Darren Tucker | 964de18 | 2013-02-22 10:39:59 +1100 | [diff] [blame] | 3935 | GSSCFLAGS="`$KRB5CONF --cflags gssapi`" |
| 3936 | GSSLIBS="`$KRB5CONF --libs gssapi`" |
| 3937 | CPPFLAGS="$CPPFLAGS $GSSCFLAGS" |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3938 | else |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3939 | AC_MSG_RESULT([no]) |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3940 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3941 | AC_MSG_CHECKING([whether we are using Heimdal]) |
| 3942 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <krb5.h> |
| 3943 | ]], [[ char *tmp = heimdal_version; ]])], |
| 3944 | [ AC_MSG_RESULT([yes]) |
| 3945 | AC_DEFINE([HEIMDAL], [1], |
| 3946 | [Define this if you are using the Heimdal |
| 3947 | version of Kerberos V5]) ], |
| 3948 | [AC_MSG_RESULT([no]) |
| 3949 | ]) |
Darren Tucker | 1d3ca58 | 2004-01-22 12:05:34 +1100 | [diff] [blame] | 3950 | else |
Damien Miller | fd4c9ee | 2002-04-13 11:04:40 +1000 | [diff] [blame] | 3951 | CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include" |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3952 | LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3953 | AC_MSG_CHECKING([whether we are using Heimdal]) |
| 3954 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <krb5.h> |
| 3955 | ]], [[ char *tmp = heimdal_version; ]])], |
| 3956 | [ AC_MSG_RESULT([yes]) |
| 3957 | AC_DEFINE([HEIMDAL]) |
Damien Miller | 41bccf7 | 2011-01-02 21:53:07 +1100 | [diff] [blame] | 3958 | K5LIBS="-lkrb5" |
Damien Miller | 5561e0b | 2004-04-20 20:28:55 +1000 | [diff] [blame] | 3959 | K5LIBS="$K5LIBS -lcom_err -lasn1" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3960 | AC_CHECK_LIB([roken], [net_write], |
Damien Miller | 5561e0b | 2004-04-20 20:28:55 +1000 | [diff] [blame] | 3961 | [K5LIBS="$K5LIBS -lroken"]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3962 | AC_CHECK_LIB([des], [des_cbc_encrypt], |
Damien Miller | 41bccf7 | 2011-01-02 21:53:07 +1100 | [diff] [blame] | 3963 | [K5LIBS="$K5LIBS -ldes"]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3964 | ], [ AC_MSG_RESULT([no]) |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3965 | K5LIBS="-lkrb5 -lk5crypto -lcom_err" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3966 | |
| 3967 | ]) |
| 3968 | AC_SEARCH_LIBS([dn_expand], [resolv]) |
Damien Miller | fd4c9ee | 2002-04-13 11:04:40 +1000 | [diff] [blame] | 3969 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3970 | AC_CHECK_LIB([gssapi_krb5], [gss_init_sec_context], |
| 3971 | [ AC_DEFINE([GSSAPI]) |
Darren Tucker | 964de18 | 2013-02-22 10:39:59 +1100 | [diff] [blame] | 3972 | GSSLIBS="-lgssapi_krb5" ], |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3973 | [ AC_CHECK_LIB([gssapi], [gss_init_sec_context], |
| 3974 | [ AC_DEFINE([GSSAPI]) |
Darren Tucker | 964de18 | 2013-02-22 10:39:59 +1100 | [diff] [blame] | 3975 | GSSLIBS="-lgssapi" ], |
Darren Tucker | a2b5a4c | 2013-02-22 10:43:15 +1100 | [diff] [blame] | 3976 | [ AC_CHECK_LIB([gss], [gss_init_sec_context], |
| 3977 | [ AC_DEFINE([GSSAPI]) |
| 3978 | GSSLIBS="-lgss" ], |
| 3979 | AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail])) |
| 3980 | ]) |
Darren Tucker | 964de18 | 2013-02-22 10:39:59 +1100 | [diff] [blame] | 3981 | ]) |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 3982 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3983 | AC_CHECK_HEADER([gssapi.h], , |
Darren Tucker | 49aaf4a | 2003-08-26 11:58:16 +1000 | [diff] [blame] | 3984 | [ unset ac_cv_header_gssapi_h |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3985 | CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3986 | AC_CHECK_HEADERS([gssapi.h], , |
Darren Tucker | 49aaf4a | 2003-08-26 11:58:16 +1000 | [diff] [blame] | 3987 | AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail]) |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3988 | ) |
Darren Tucker | 49aaf4a | 2003-08-26 11:58:16 +1000 | [diff] [blame] | 3989 | ] |
| 3990 | ) |
| 3991 | |
| 3992 | oldCPP="$CPPFLAGS" |
| 3993 | CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 3994 | AC_CHECK_HEADER([gssapi_krb5.h], , |
Darren Tucker | 49aaf4a | 2003-08-26 11:58:16 +1000 | [diff] [blame] | 3995 | [ CPPFLAGS="$oldCPP" ]) |
| 3996 | |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 3997 | fi |
Darren Tucker | 1d3ca58 | 2004-01-22 12:05:34 +1100 | [diff] [blame] | 3998 | if test ! -z "$need_dash_r" ; then |
| 3999 | LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib" |
| 4000 | fi |
| 4001 | if test ! -z "$blibpath" ; then |
| 4002 | blibpath="$blibpath:${KRB5ROOT}/lib" |
| 4003 | fi |
Tim Rice | fd9e9e3 | 2005-09-12 17:36:10 -0700 | [diff] [blame] | 4004 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4005 | AC_CHECK_HEADERS([gssapi.h gssapi/gssapi.h]) |
| 4006 | AC_CHECK_HEADERS([gssapi_krb5.h gssapi/gssapi_krb5.h]) |
| 4007 | AC_CHECK_HEADERS([gssapi_generic.h gssapi/gssapi_generic.h]) |
Tim Rice | fd9e9e3 | 2005-09-12 17:36:10 -0700 | [diff] [blame] | 4008 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4009 | AC_SEARCH_LIBS([k_hasafs], [kafs], [AC_DEFINE([USE_AFS], [1], |
| 4010 | [Define this if you want to use libkafs' AFS support])]) |
Darren Tucker | 03978c6 | 2013-02-25 11:24:44 +1100 | [diff] [blame] | 4011 | |
| 4012 | AC_CHECK_DECLS([GSS_C_NT_HOSTBASED_SERVICE], [], [], [[ |
| 4013 | #ifdef HAVE_GSSAPI_H |
| 4014 | # include <gssapi.h> |
| 4015 | #elif defined(HAVE_GSSAPI_GSSAPI_H) |
| 4016 | # include <gssapi/gssapi.h> |
| 4017 | #endif |
| 4018 | |
| 4019 | #ifdef HAVE_GSSAPI_GENERIC_H |
| 4020 | # include <gssapi_generic.h> |
| 4021 | #elif defined(HAVE_GSSAPI_GSSAPI_GENERIC_H) |
| 4022 | # include <gssapi/gssapi_generic.h> |
| 4023 | #endif |
| 4024 | ]]) |
Darren Tucker | f3ab2c5 | 2013-08-04 21:48:41 +1000 | [diff] [blame] | 4025 | saved_LIBS="$LIBS" |
| 4026 | LIBS="$LIBS $K5LIBS" |
| 4027 | AC_CHECK_FUNCS([krb5_cc_new_unique krb5_get_error_message krb5_free_error_message]) |
| 4028 | LIBS="$saved_LIBS" |
| 4029 | |
Darren Tucker | 0d27ed1 | 2004-02-24 10:37:33 +1100 | [diff] [blame] | 4030 | fi |
Darren Tucker | 0d27ed1 | 2004-02-24 10:37:33 +1100 | [diff] [blame] | 4031 | ] |
Damien Miller | fd4c9ee | 2002-04-13 11:04:40 +1000 | [diff] [blame] | 4032 | ) |
Darren Tucker | 964de18 | 2013-02-22 10:39:59 +1100 | [diff] [blame] | 4033 | AC_SUBST([GSSLIBS]) |
| 4034 | AC_SUBST([K5LIBS]) |
Damien Miller | c79bc0d | 2001-03-28 13:03:42 +1000 | [diff] [blame] | 4035 | |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4036 | # Looking for programs, paths and files |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4037 | |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4038 | PRIVSEP_PATH=/var/empty |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4039 | AC_ARG_WITH([privsep-path], |
Tim Rice | cbb9066 | 2002-07-08 19:17:10 -0700 | [diff] [blame] | 4040 | [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)], |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4041 | [ |
Tim Rice | 35cc69d | 2005-03-17 16:44:25 -0800 | [diff] [blame] | 4042 | if test -n "$withval" && test "x$withval" != "xno" && \ |
| 4043 | test "x${withval}" != "xyes"; then |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4044 | PRIVSEP_PATH=$withval |
| 4045 | fi |
| 4046 | ] |
| 4047 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4048 | AC_SUBST([PRIVSEP_PATH]) |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4049 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4050 | AC_ARG_WITH([xauth], |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4051 | [ --with-xauth=PATH Specify path to xauth program ], |
| 4052 | [ |
Tim Rice | 35cc69d | 2005-03-17 16:44:25 -0800 | [diff] [blame] | 4053 | if test -n "$withval" && test "x$withval" != "xno" && \ |
| 4054 | test "x${withval}" != "xyes"; then |
Damien Miller | 7b22d65 | 2000-06-18 14:07:04 +1000 | [diff] [blame] | 4055 | xauth_path=$withval |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4056 | fi |
| 4057 | ], |
| 4058 | [ |
Tim Rice | e22be3b | 2002-07-17 19:20:07 -0700 | [diff] [blame] | 4059 | TestPath="$PATH" |
| 4060 | TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin" |
| 4061 | TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11" |
| 4062 | TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin" |
| 4063 | TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4064 | AC_PATH_PROG([xauth_path], [xauth], , [$TestPath]) |
Damien Miller | edb8292 | 2000-06-20 13:25:52 +1000 | [diff] [blame] | 4065 | if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4066 | xauth_path="/usr/openwin/bin/xauth" |
| 4067 | fi |
| 4068 | ] |
| 4069 | ) |
| 4070 | |
Damien Miller | 7d90127 | 2003-01-13 16:55:22 +1100 | [diff] [blame] | 4071 | STRIP_OPT=-s |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4072 | AC_ARG_ENABLE([strip], |
Damien Miller | 7d90127 | 2003-01-13 16:55:22 +1100 | [diff] [blame] | 4073 | [ --disable-strip Disable calling strip(1) on install], |
| 4074 | [ |
| 4075 | if test "x$enableval" = "xno" ; then |
| 4076 | STRIP_OPT= |
| 4077 | fi |
| 4078 | ] |
| 4079 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4080 | AC_SUBST([STRIP_OPT]) |
Damien Miller | 7d90127 | 2003-01-13 16:55:22 +1100 | [diff] [blame] | 4081 | |
Damien Miller | a19cf47 | 2000-11-29 13:28:50 +1100 | [diff] [blame] | 4082 | if test -z "$xauth_path" ; then |
| 4083 | XAUTH_PATH="undefined" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4084 | AC_SUBST([XAUTH_PATH]) |
Damien Miller | a19cf47 | 2000-11-29 13:28:50 +1100 | [diff] [blame] | 4085 | else |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4086 | AC_DEFINE_UNQUOTED([XAUTH_PATH], ["$xauth_path"], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4087 | [Define if xauth is found in your path]) |
Damien Miller | a19cf47 | 2000-11-29 13:28:50 +1100 | [diff] [blame] | 4088 | XAUTH_PATH=$xauth_path |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4089 | AC_SUBST([XAUTH_PATH]) |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4090 | fi |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4091 | |
Tim Rice | 90f42b0 | 2011-06-02 18:17:49 -0700 | [diff] [blame] | 4092 | dnl # --with-maildir=/path/to/mail gets top priority. |
| 4093 | dnl # if maildir is set in the platform case statement above we use that. |
| 4094 | dnl # Otherwise we run a program to get the dir from system headers. |
| 4095 | dnl # We first look for _PATH_MAILDIR then MAILDIR then _PATH_MAIL |
| 4096 | dnl # If we find _PATH_MAILDIR we do nothing because that is what |
| 4097 | dnl # session.c expects anyway. Otherwise we set to the value found |
| 4098 | dnl # stripping any trailing slash. If for some strage reason our program |
| 4099 | dnl # does not find what it needs, we default to /var/spool/mail. |
| 4100 | # Check for mail directory |
| 4101 | AC_ARG_WITH([maildir], |
| 4102 | [ --with-maildir=/path/to/mail Specify your system mail directory], |
| 4103 | [ |
| 4104 | if test "X$withval" != X && test "x$withval" != xno && \ |
| 4105 | test "x${withval}" != xyes; then |
| 4106 | AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$withval"], |
| 4107 | [Set this to your mail directory if you do not have _PATH_MAILDIR]) |
| 4108 | fi |
| 4109 | ],[ |
| 4110 | if test "X$maildir" != "X"; then |
| 4111 | AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$maildir"]) |
| 4112 | else |
| 4113 | AC_MSG_CHECKING([Discovering system mail directory]) |
| 4114 | AC_RUN_IFELSE( |
| 4115 | [AC_LANG_PROGRAM([[ |
| 4116 | #include <stdio.h> |
| 4117 | #include <string.h> |
| 4118 | #ifdef HAVE_PATHS_H |
| 4119 | #include <paths.h> |
| 4120 | #endif |
| 4121 | #ifdef HAVE_MAILLOCK_H |
| 4122 | #include <maillock.h> |
| 4123 | #endif |
| 4124 | #define DATA "conftest.maildir" |
| 4125 | ]], [[ |
| 4126 | FILE *fd; |
| 4127 | int rc; |
| 4128 | |
| 4129 | fd = fopen(DATA,"w"); |
| 4130 | if(fd == NULL) |
| 4131 | exit(1); |
| 4132 | |
| 4133 | #if defined (_PATH_MAILDIR) |
| 4134 | if ((rc = fprintf(fd ,"_PATH_MAILDIR:%s\n", _PATH_MAILDIR)) <0) |
| 4135 | exit(1); |
| 4136 | #elif defined (MAILDIR) |
| 4137 | if ((rc = fprintf(fd ,"MAILDIR:%s\n", MAILDIR)) <0) |
| 4138 | exit(1); |
| 4139 | #elif defined (_PATH_MAIL) |
| 4140 | if ((rc = fprintf(fd ,"_PATH_MAIL:%s\n", _PATH_MAIL)) <0) |
| 4141 | exit(1); |
| 4142 | #else |
| 4143 | exit (2); |
| 4144 | #endif |
| 4145 | |
| 4146 | exit(0); |
| 4147 | ]])], |
| 4148 | [ |
| 4149 | maildir_what=`awk -F: '{print $1}' conftest.maildir` |
| 4150 | maildir=`awk -F: '{print $2}' conftest.maildir \ |
| 4151 | | sed 's|/$||'` |
| 4152 | AC_MSG_RESULT([Using: $maildir from $maildir_what]) |
| 4153 | if test "x$maildir_what" != "x_PATH_MAILDIR"; then |
| 4154 | AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$maildir"]) |
| 4155 | fi |
| 4156 | ], |
| 4157 | [ |
| 4158 | if test "X$ac_status" = "X2";then |
| 4159 | # our test program didn't find it. Default to /var/spool/mail |
| 4160 | AC_MSG_RESULT([Using: default value of /var/spool/mail]) |
| 4161 | AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["/var/spool/mail"]) |
| 4162 | else |
| 4163 | AC_MSG_RESULT([*** not found ***]) |
| 4164 | fi |
| 4165 | ], |
| 4166 | [ |
| 4167 | AC_MSG_WARN([cross compiling: use --with-maildir=/path/to/mail]) |
| 4168 | ] |
| 4169 | ) |
| 4170 | fi |
| 4171 | ] |
| 4172 | ) # maildir |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4173 | |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 4174 | if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 4175 | AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test]) |
| 4176 | disable_ptmx_check=yes |
| 4177 | fi |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4178 | if test -z "$no_dev_ptmx" ; then |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 4179 | if test "x$disable_ptmx_check" != "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4180 | AC_CHECK_FILE(["/dev/ptmx"], |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 4181 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4182 | AC_DEFINE_UNQUOTED([HAVE_DEV_PTMX], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4183 | [Define if you have /dev/ptmx]) |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 4184 | have_dev_ptmx=1 |
| 4185 | ] |
| 4186 | ) |
| 4187 | fi |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4188 | fi |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 4189 | |
Darren Tucker | 623d92f | 2004-09-12 22:36:15 +1000 | [diff] [blame] | 4190 | if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4191 | AC_CHECK_FILE(["/dev/ptc"], |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 4192 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4193 | AC_DEFINE_UNQUOTED([HAVE_DEV_PTS_AND_PTC], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4194 | [Define if you have /dev/ptc]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 4195 | have_dev_ptc=1 |
| 4196 | ] |
| 4197 | ) |
| 4198 | else |
| 4199 | AC_MSG_WARN([cross compiling: Disabling /dev/ptc test]) |
| 4200 | fi |
Damien Miller | 204ad07 | 2000-03-02 23:56:12 +1100 | [diff] [blame] | 4201 | |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4202 | # Options from here on. Some of these are preset by platform above |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4203 | AC_ARG_WITH([mantype], |
Damien Miller | 897741e | 2001-04-16 10:41:46 +1000 | [diff] [blame] | 4204 | [ --with-mantype=man|cat|doc Set man page type], |
Damien Miller | 670a4b8 | 2000-01-22 13:53:11 +1100 | [diff] [blame] | 4205 | [ |
Damien Miller | 897741e | 2001-04-16 10:41:46 +1000 | [diff] [blame] | 4206 | case "$withval" in |
| 4207 | man|cat|doc) |
| 4208 | MANTYPE=$withval |
| 4209 | ;; |
| 4210 | *) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4211 | AC_MSG_ERROR([invalid man type: $withval]) |
Damien Miller | 897741e | 2001-04-16 10:41:46 +1000 | [diff] [blame] | 4212 | ;; |
| 4213 | esac |
Damien Miller | 670a4b8 | 2000-01-22 13:53:11 +1100 | [diff] [blame] | 4214 | ] |
| 4215 | ) |
Ben Lindstrom | bc70992 | 2001-04-18 18:04:21 +0000 | [diff] [blame] | 4216 | if test -z "$MANTYPE"; then |
Tim Rice | e22be3b | 2002-07-17 19:20:07 -0700 | [diff] [blame] | 4217 | TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4218 | AC_PATH_PROGS([NROFF], [nroff awf], [/bin/false], [$TestPath]) |
Ben Lindstrom | bc70992 | 2001-04-18 18:04:21 +0000 | [diff] [blame] | 4219 | if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then |
| 4220 | MANTYPE=doc |
| 4221 | elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then |
| 4222 | MANTYPE=man |
| 4223 | else |
| 4224 | MANTYPE=cat |
| 4225 | fi |
| 4226 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4227 | AC_SUBST([MANTYPE]) |
Ben Lindstrom | bc70992 | 2001-04-18 18:04:21 +0000 | [diff] [blame] | 4228 | if test "$MANTYPE" = "doc"; then |
| 4229 | mansubdir=man; |
| 4230 | else |
| 4231 | mansubdir=$MANTYPE; |
| 4232 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4233 | AC_SUBST([mansubdir]) |
Damien Miller | 8bdeee2 | 1999-12-30 15:50:54 +1100 | [diff] [blame] | 4234 | |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4235 | # Check whether to enable MD5 passwords |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 4236 | MD5_MSG="no" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4237 | AC_ARG_WITH([md5-passwords], |
Damien Miller | dd1c7ba | 1999-11-19 15:53:20 +1100 | [diff] [blame] | 4238 | [ --with-md5-passwords Enable use of MD5 passwords], |
Damien Miller | 8bdeee2 | 1999-12-30 15:50:54 +1100 | [diff] [blame] | 4239 | [ |
Damien Miller | b85dcad | 2000-03-11 11:37:00 +1100 | [diff] [blame] | 4240 | if test "x$withval" != "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4241 | AC_DEFINE([HAVE_MD5_PASSWORDS], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4242 | [Define if you want to allow MD5 passwords]) |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 4243 | MD5_MSG="yes" |
Damien Miller | 8bdeee2 | 1999-12-30 15:50:54 +1100 | [diff] [blame] | 4244 | fi |
| 4245 | ] |
Damien Miller | dd1c7ba | 1999-11-19 15:53:20 +1100 | [diff] [blame] | 4246 | ) |
| 4247 | |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4248 | # Whether to disable shadow password support |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4249 | AC_ARG_WITH([shadow], |
Damien Miller | 76112de | 1999-12-21 11:18:08 +1100 | [diff] [blame] | 4250 | [ --without-shadow Disable shadow password support], |
| 4251 | [ |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4252 | if test "x$withval" = "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4253 | AC_DEFINE([DISABLE_SHADOW]) |
Damien Miller | 1f335fb | 2000-06-26 11:31:33 +1000 | [diff] [blame] | 4254 | disable_shadow=yes |
Damien Miller | 76112de | 1999-12-21 11:18:08 +1100 | [diff] [blame] | 4255 | fi |
| 4256 | ] |
| 4257 | ) |
| 4258 | |
Damien Miller | 1f335fb | 2000-06-26 11:31:33 +1000 | [diff] [blame] | 4259 | if test -z "$disable_shadow" ; then |
| 4260 | AC_MSG_CHECKING([if the systems has expire shadow information]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4261 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Damien Miller | 1f335fb | 2000-06-26 11:31:33 +1000 | [diff] [blame] | 4262 | #include <sys/types.h> |
| 4263 | #include <shadow.h> |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4264 | struct spwd sp; |
| 4265 | ]], [[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ]])], |
| 4266 | [ sp_expire_available=yes ], [ |
| 4267 | ]) |
Damien Miller | 1f335fb | 2000-06-26 11:31:33 +1000 | [diff] [blame] | 4268 | |
| 4269 | if test "x$sp_expire_available" = "xyes" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4270 | AC_MSG_RESULT([yes]) |
| 4271 | AC_DEFINE([HAS_SHADOW_EXPIRE], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4272 | [Define if you want to use shadow password expire field]) |
Damien Miller | 1f335fb | 2000-06-26 11:31:33 +1000 | [diff] [blame] | 4273 | else |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4274 | AC_MSG_RESULT([no]) |
Damien Miller | 1f335fb | 2000-06-26 11:31:33 +1000 | [diff] [blame] | 4275 | fi |
| 4276 | fi |
| 4277 | |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4278 | # Use ip address instead of hostname in $DISPLAY |
Damien Miller | 9a94734 | 2000-08-30 10:03:33 +1100 | [diff] [blame] | 4279 | if test ! -z "$IPADDR_IN_DISPLAY" ; then |
| 4280 | DISPLAY_HACK_MSG="yes" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4281 | AC_DEFINE([IPADDR_IN_DISPLAY], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4282 | [Define if you need to use IP address |
| 4283 | instead of hostname in $DISPLAY]) |
Damien Miller | 9a94734 | 2000-08-30 10:03:33 +1100 | [diff] [blame] | 4284 | else |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 4285 | DISPLAY_HACK_MSG="no" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4286 | AC_ARG_WITH([ipaddr-display], |
Damien Miller | 9a94734 | 2000-08-30 10:03:33 +1100 | [diff] [blame] | 4287 | [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY], |
| 4288 | [ |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4289 | if test "x$withval" != "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4290 | AC_DEFINE([IPADDR_IN_DISPLAY]) |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 4291 | DISPLAY_HACK_MSG="yes" |
Damien Miller | 9a94734 | 2000-08-30 10:03:33 +1100 | [diff] [blame] | 4292 | fi |
| 4293 | ] |
| 4294 | ) |
| 4295 | fi |
Damien Miller | 76112de | 1999-12-21 11:18:08 +1100 | [diff] [blame] | 4296 | |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4297 | # check for /etc/default/login and use it if present. |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4298 | AC_ARG_ENABLE([etc-default-login], |
Darren Tucker | 1b6f229 | 2005-02-11 16:11:49 +1100 | [diff] [blame] | 4299 | [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]], |
Darren Tucker | 2f9573d | 2005-02-10 22:28:54 +1100 | [diff] [blame] | 4300 | [ if test "x$enableval" = "xno"; then |
| 4301 | AC_MSG_NOTICE([/etc/default/login handling disabled]) |
| 4302 | etc_default_login=no |
| 4303 | else |
| 4304 | etc_default_login=yes |
| 4305 | fi ], |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 4306 | [ if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; |
| 4307 | then |
| 4308 | AC_MSG_WARN([cross compiling: not checking /etc/default/login]) |
| 4309 | etc_default_login=no |
| 4310 | else |
| 4311 | etc_default_login=yes |
| 4312 | fi ] |
Darren Tucker | 2f9573d | 2005-02-10 22:28:54 +1100 | [diff] [blame] | 4313 | ) |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4314 | |
Darren Tucker | 2f9573d | 2005-02-10 22:28:54 +1100 | [diff] [blame] | 4315 | if test "x$etc_default_login" != "xno"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4316 | AC_CHECK_FILE(["/etc/default/login"], |
Darren Tucker | 2f9573d | 2005-02-10 22:28:54 +1100 | [diff] [blame] | 4317 | [ external_path_file=/etc/default/login ]) |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 4318 | if test "x$external_path_file" = "x/etc/default/login"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4319 | AC_DEFINE([HAVE_ETC_DEFAULT_LOGIN], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4320 | [Define if your system has /etc/default/login]) |
Darren Tucker | a0c2b39 | 2004-09-11 23:26:37 +1000 | [diff] [blame] | 4321 | fi |
Darren Tucker | 2f9573d | 2005-02-10 22:28:54 +1100 | [diff] [blame] | 4322 | fi |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4323 | |
Tim Rice | 43a1c13 | 2002-04-17 21:19:14 -0700 | [diff] [blame] | 4324 | dnl BSD systems use /etc/login.conf so --with-default-path= has no effect |
Tim Rice | 8bb561b | 2005-03-17 16:23:19 -0800 | [diff] [blame] | 4325 | if test $ac_cv_func_login_getcapbool = "yes" && \ |
| 4326 | test $ac_cv_header_login_cap_h = "yes" ; then |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4327 | external_path_file=/etc/login.conf |
Tim Rice | 43a1c13 | 2002-04-17 21:19:14 -0700 | [diff] [blame] | 4328 | fi |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4329 | |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4330 | # Whether to mess with the default path |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 4331 | SERVER_PATH_MSG="(default)" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4332 | AC_ARG_WITH([default-path], |
Damien Miller | f71d2a5 | 2002-05-13 15:14:08 +1000 | [diff] [blame] | 4333 | [ --with-default-path= Specify default \$PATH environment for server], |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 4334 | [ |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4335 | if test "x$external_path_file" = "x/etc/login.conf" ; then |
Tim Rice | 43a1c13 | 2002-04-17 21:19:14 -0700 | [diff] [blame] | 4336 | AC_MSG_WARN([ |
| 4337 | --with-default-path=PATH has no effect on this system. |
| 4338 | Edit /etc/login.conf instead.]) |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4339 | elif test "x$withval" != "xno" ; then |
Tim Rice | b925b4b | 2003-09-15 22:40:49 -0700 | [diff] [blame] | 4340 | if test ! -z "$external_path_file" ; then |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4341 | AC_MSG_WARN([ |
| 4342 | --with-default-path=PATH will only be used if PATH is not defined in |
| 4343 | $external_path_file .]) |
| 4344 | fi |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 4345 | user_path="$withval" |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 4346 | SERVER_PATH_MSG="$withval" |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 4347 | fi |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 4348 | ], |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4349 | [ if test "x$external_path_file" = "x/etc/login.conf" ; then |
| 4350 | AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf]) |
Tim Rice | 43a1c13 | 2002-04-17 21:19:14 -0700 | [diff] [blame] | 4351 | else |
Tim Rice | b925b4b | 2003-09-15 22:40:49 -0700 | [diff] [blame] | 4352 | if test ! -z "$external_path_file" ; then |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4353 | AC_MSG_WARN([ |
| 4354 | If PATH is defined in $external_path_file, ensure the path to scp is included, |
| 4355 | otherwise scp will not work.]) |
| 4356 | fi |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 4357 | AC_RUN_IFELSE( |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4358 | [AC_LANG_PROGRAM([[ |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 4359 | /* find out what STDPATH is */ |
| 4360 | #include <stdio.h> |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 4361 | #ifdef HAVE_PATHS_H |
| 4362 | # include <paths.h> |
| 4363 | #endif |
| 4364 | #ifndef _PATH_STDPATH |
Tim Rice | 1c9e688 | 2002-11-22 13:29:01 -0800 | [diff] [blame] | 4365 | # ifdef _PATH_USERPATH /* Irix */ |
| 4366 | # define _PATH_STDPATH _PATH_USERPATH |
| 4367 | # else |
| 4368 | # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin" |
| 4369 | # endif |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 4370 | #endif |
| 4371 | #include <sys/types.h> |
| 4372 | #include <sys/stat.h> |
| 4373 | #include <fcntl.h> |
| 4374 | #define DATA "conftest.stdpath" |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4375 | ]], [[ |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 4376 | FILE *fd; |
| 4377 | int rc; |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4378 | |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 4379 | fd = fopen(DATA,"w"); |
| 4380 | if(fd == NULL) |
| 4381 | exit(1); |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4382 | |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 4383 | if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0) |
| 4384 | exit(1); |
| 4385 | |
| 4386 | exit(0); |
Darren Tucker | 314d89e | 2005-10-17 23:29:23 +1000 | [diff] [blame] | 4387 | ]])], |
| 4388 | [ user_path=`cat conftest.stdpath` ], |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 4389 | [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ], |
| 4390 | [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ] |
| 4391 | ) |
| 4392 | # make sure $bindir is in USER_PATH so scp will work |
Damien Miller | 77eab7b | 2012-07-06 11:49:28 +1000 | [diff] [blame] | 4393 | t_bindir="${bindir}" |
| 4394 | while echo "${t_bindir}" | egrep '\$\{|NONE/' >/dev/null 2>&1; do |
| 4395 | t_bindir=`eval echo ${t_bindir}` |
| 4396 | case $t_bindir in |
| 4397 | NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;; |
| 4398 | esac |
| 4399 | case $t_bindir in |
| 4400 | NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;; |
| 4401 | esac |
| 4402 | done |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 4403 | echo $user_path | grep ":$t_bindir" > /dev/null 2>&1 |
| 4404 | if test $? -ne 0 ; then |
| 4405 | echo $user_path | grep "^$t_bindir" > /dev/null 2>&1 |
| 4406 | if test $? -ne 0 ; then |
| 4407 | user_path=$user_path:$t_bindir |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4408 | AC_MSG_RESULT([Adding $t_bindir to USER_PATH so scp will work]) |
Tim Rice | 59ea0a0 | 2001-03-10 13:50:45 -0800 | [diff] [blame] | 4409 | fi |
| 4410 | fi |
Tim Rice | 43a1c13 | 2002-04-17 21:19:14 -0700 | [diff] [blame] | 4411 | fi ] |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 4412 | ) |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4413 | if test "x$external_path_file" != "x/etc/login.conf" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4414 | AC_DEFINE_UNQUOTED([USER_PATH], ["$user_path"], [Specify default $PATH]) |
| 4415 | AC_SUBST([user_path]) |
Tim Rice | 43a1c13 | 2002-04-17 21:19:14 -0700 | [diff] [blame] | 4416 | fi |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 4417 | |
Damien Miller | a18bbd3 | 2002-05-13 10:48:57 +1000 | [diff] [blame] | 4418 | # Set superuser path separately to user path |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4419 | AC_ARG_WITH([superuser-path], |
Damien Miller | a18bbd3 | 2002-05-13 10:48:57 +1000 | [diff] [blame] | 4420 | [ --with-superuser-path= Specify different path for super-user], |
| 4421 | [ |
Tim Rice | 35cc69d | 2005-03-17 16:44:25 -0800 | [diff] [blame] | 4422 | if test -n "$withval" && test "x$withval" != "xno" && \ |
| 4423 | test "x${withval}" != "xyes"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4424 | AC_DEFINE_UNQUOTED([SUPERUSER_PATH], ["$withval"], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4425 | [Define if you want a different $PATH |
| 4426 | for the superuser]) |
Damien Miller | a18bbd3 | 2002-05-13 10:48:57 +1000 | [diff] [blame] | 4427 | superuser_path=$withval |
| 4428 | fi |
| 4429 | ] |
| 4430 | ) |
| 4431 | |
| 4432 | |
Damien Miller | 61e50f1 | 2000-05-08 20:49:37 +1000 | [diff] [blame] | 4433 | AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses]) |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 4434 | IPV4_IN6_HACK_MSG="no" |
Damien Miller | 7bcb089 | 2000-03-11 20:45:40 +1100 | [diff] [blame] | 4435 | AC_ARG_WITH(4in6, |
| 4436 | [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses], |
| 4437 | [ |
| 4438 | if test "x$withval" != "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4439 | AC_MSG_RESULT([yes]) |
| 4440 | AC_DEFINE([IPV4_IN_IPV6], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4441 | [Detect IPv4 in IPv6 mapped addresses |
| 4442 | and treat as IPv4]) |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 4443 | IPV4_IN6_HACK_MSG="yes" |
Damien Miller | 7bcb089 | 2000-03-11 20:45:40 +1100 | [diff] [blame] | 4444 | else |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4445 | AC_MSG_RESULT([no]) |
Damien Miller | 7bcb089 | 2000-03-11 20:45:40 +1100 | [diff] [blame] | 4446 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4447 | ], [ |
Damien Miller | 7bcb089 | 2000-03-11 20:45:40 +1100 | [diff] [blame] | 4448 | if test "x$inet6_default_4in6" = "xyes"; then |
| 4449 | AC_MSG_RESULT([yes (default)]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4450 | AC_DEFINE([IPV4_IN_IPV6]) |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 4451 | IPV4_IN6_HACK_MSG="yes" |
Damien Miller | 7bcb089 | 2000-03-11 20:45:40 +1100 | [diff] [blame] | 4452 | else |
| 4453 | AC_MSG_RESULT([no (default)]) |
| 4454 | fi |
| 4455 | ] |
| 4456 | ) |
| 4457 | |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 4458 | # Whether to enable BSD auth support |
Damien Miller | 6c21c51 | 2002-01-22 21:57:53 +1100 | [diff] [blame] | 4459 | BSD_AUTH_MSG=no |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4460 | AC_ARG_WITH([bsd-auth], |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 4461 | [ --with-bsd-auth Enable BSD auth support], |
| 4462 | [ |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4463 | if test "x$withval" != "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4464 | AC_DEFINE([BSD_AUTH], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4465 | [Define if you have BSD auth support]) |
Damien Miller | 6c21c51 | 2002-01-22 21:57:53 +1100 | [diff] [blame] | 4466 | BSD_AUTH_MSG=yes |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 4467 | fi |
| 4468 | ] |
| 4469 | ) |
| 4470 | |
Damien Miller | a22ba01 | 2000-03-02 23:09:20 +1100 | [diff] [blame] | 4471 | # Where to place sshd.pid |
Damien Miller | b13c73e | 2000-01-17 22:02:17 +1100 | [diff] [blame] | 4472 | piddir=/var/run |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 4473 | # make sure the directory exists |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4474 | if test ! -d $piddir ; then |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 4475 | piddir=`eval echo ${sysconfdir}` |
| 4476 | case $piddir in |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 4477 | NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;; |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 4478 | esac |
| 4479 | fi |
| 4480 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4481 | AC_ARG_WITH([pid-dir], |
Tim Rice | 88f2ab5 | 2002-03-17 12:17:34 -0800 | [diff] [blame] | 4482 | [ --with-pid-dir=PATH Specify location of ssh.pid file], |
| 4483 | [ |
Tim Rice | 35cc69d | 2005-03-17 16:44:25 -0800 | [diff] [blame] | 4484 | if test -n "$withval" && test "x$withval" != "xno" && \ |
| 4485 | test "x${withval}" != "xyes"; then |
Tim Rice | 88f2ab5 | 2002-03-17 12:17:34 -0800 | [diff] [blame] | 4486 | piddir=$withval |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4487 | if test ! -d $piddir ; then |
Tim Rice | 88f2ab5 | 2002-03-17 12:17:34 -0800 | [diff] [blame] | 4488 | AC_MSG_WARN([** no $piddir directory on this system **]) |
| 4489 | fi |
| 4490 | fi |
| 4491 | ] |
| 4492 | ) |
| 4493 | |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4494 | AC_DEFINE_UNQUOTED([_PATH_SSH_PIDDIR], ["$piddir"], |
| 4495 | [Specify location of ssh.pid]) |
| 4496 | AC_SUBST([piddir]) |
Damien Miller | 5eed6a2 | 2000-01-16 12:05:18 +1100 | [diff] [blame] | 4497 | |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4498 | dnl allow user to disable some login recording features |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4499 | AC_ARG_ENABLE([lastlog], |
andre | 43ca7e2 | 2000-06-19 08:23:46 +0000 | [diff] [blame] | 4500 | [ --disable-lastlog disable use of lastlog even if detected [no]], |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4501 | [ |
| 4502 | if test "x$enableval" = "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4503 | AC_DEFINE([DISABLE_LASTLOG]) |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4504 | fi |
| 4505 | ] |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4506 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4507 | AC_ARG_ENABLE([utmp], |
andre | 43ca7e2 | 2000-06-19 08:23:46 +0000 | [diff] [blame] | 4508 | [ --disable-utmp disable use of utmp even if detected [no]], |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4509 | [ |
| 4510 | if test "x$enableval" = "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4511 | AC_DEFINE([DISABLE_UTMP]) |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4512 | fi |
| 4513 | ] |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4514 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4515 | AC_ARG_ENABLE([utmpx], |
andre | 43ca7e2 | 2000-06-19 08:23:46 +0000 | [diff] [blame] | 4516 | [ --disable-utmpx disable use of utmpx even if detected [no]], |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4517 | [ |
| 4518 | if test "x$enableval" = "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4519 | AC_DEFINE([DISABLE_UTMPX], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4520 | [Define if you don't want to use utmpx]) |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4521 | fi |
| 4522 | ] |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4523 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4524 | AC_ARG_ENABLE([wtmp], |
andre | 43ca7e2 | 2000-06-19 08:23:46 +0000 | [diff] [blame] | 4525 | [ --disable-wtmp disable use of wtmp even if detected [no]], |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4526 | [ |
| 4527 | if test "x$enableval" = "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4528 | AC_DEFINE([DISABLE_WTMP]) |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4529 | fi |
| 4530 | ] |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4531 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4532 | AC_ARG_ENABLE([wtmpx], |
andre | 43ca7e2 | 2000-06-19 08:23:46 +0000 | [diff] [blame] | 4533 | [ --disable-wtmpx disable use of wtmpx even if detected [no]], |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4534 | [ |
| 4535 | if test "x$enableval" = "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4536 | AC_DEFINE([DISABLE_WTMPX], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4537 | [Define if you don't want to use wtmpx]) |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4538 | fi |
| 4539 | ] |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4540 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4541 | AC_ARG_ENABLE([libutil], |
andre | 43ca7e2 | 2000-06-19 08:23:46 +0000 | [diff] [blame] | 4542 | [ --disable-libutil disable use of libutil (login() etc.) [no]], |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4543 | [ |
| 4544 | if test "x$enableval" = "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4545 | AC_DEFINE([DISABLE_LOGIN]) |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4546 | fi |
| 4547 | ] |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4548 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4549 | AC_ARG_ENABLE([pututline], |
andre | 43ca7e2 | 2000-06-19 08:23:46 +0000 | [diff] [blame] | 4550 | [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]], |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4551 | [ |
| 4552 | if test "x$enableval" = "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4553 | AC_DEFINE([DISABLE_PUTUTLINE], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4554 | [Define if you don't want to use pututline() |
| 4555 | etc. to write [uw]tmp]) |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4556 | fi |
| 4557 | ] |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4558 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4559 | AC_ARG_ENABLE([pututxline], |
andre | 43ca7e2 | 2000-06-19 08:23:46 +0000 | [diff] [blame] | 4560 | [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]], |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4561 | [ |
| 4562 | if test "x$enableval" = "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4563 | AC_DEFINE([DISABLE_PUTUTXLINE], [1], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4564 | [Define if you don't want to use pututxline() |
| 4565 | etc. to write [uw]tmpx]) |
Darren Tucker | a3020db | 2003-06-28 12:54:33 +1000 | [diff] [blame] | 4566 | fi |
| 4567 | ] |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4568 | ) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4569 | AC_ARG_WITH([lastlog], |
andre | 43ca7e2 | 2000-06-19 08:23:46 +0000 | [diff] [blame] | 4570 | [ --with-lastlog=FILE|DIR specify lastlog location [common locations]], |
Damien Miller | 709528a | 2001-01-31 09:57:55 +1100 | [diff] [blame] | 4571 | [ |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4572 | if test "x$withval" = "xno" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4573 | AC_DEFINE([DISABLE_LASTLOG]) |
Tim Rice | 35cc69d | 2005-03-17 16:44:25 -0800 | [diff] [blame] | 4574 | elif test -n "$withval" && test "x${withval}" != "xyes"; then |
Damien Miller | 709528a | 2001-01-31 09:57:55 +1100 | [diff] [blame] | 4575 | conf_lastlog_location=$withval |
| 4576 | fi |
| 4577 | ] |
| 4578 | ) |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4579 | |
| 4580 | dnl lastlog, [uw]tmpx? detection |
| 4581 | dnl NOTE: set the paths in the platform section to avoid the |
| 4582 | dnl need for command-line parameters |
| 4583 | dnl lastlog and [uw]tmp are subject to a file search if all else fails |
| 4584 | |
| 4585 | dnl lastlog detection |
| 4586 | dnl NOTE: the code itself will detect if lastlog is a directory |
| 4587 | AC_MSG_CHECKING([if your system defines LASTLOG_FILE]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4588 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4589 | #include <sys/types.h> |
| 4590 | #include <utmp.h> |
| 4591 | #ifdef HAVE_LASTLOG_H |
| 4592 | # include <lastlog.h> |
| 4593 | #endif |
Damien Miller | 2994e08 | 2000-06-04 15:51:47 +1000 | [diff] [blame] | 4594 | #ifdef HAVE_PATHS_H |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4595 | # include <paths.h> |
| 4596 | #endif |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 4597 | #ifdef HAVE_LOGIN_H |
| 4598 | # include <login.h> |
| 4599 | #endif |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4600 | ]], [[ char *lastlog = LASTLOG_FILE; ]])], |
| 4601 | [ AC_MSG_RESULT([yes]) ], |
| 4602 | [ |
| 4603 | AC_MSG_RESULT([no]) |
Damien Miller | 2994e08 | 2000-06-04 15:51:47 +1000 | [diff] [blame] | 4604 | AC_MSG_CHECKING([if your system defines _PATH_LASTLOG]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4605 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Damien Miller | 2994e08 | 2000-06-04 15:51:47 +1000 | [diff] [blame] | 4606 | #include <sys/types.h> |
| 4607 | #include <utmp.h> |
| 4608 | #ifdef HAVE_LASTLOG_H |
| 4609 | # include <lastlog.h> |
| 4610 | #endif |
| 4611 | #ifdef HAVE_PATHS_H |
| 4612 | # include <paths.h> |
| 4613 | #endif |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4614 | ]], [[ char *lastlog = _PATH_LASTLOG; ]])], |
| 4615 | [ AC_MSG_RESULT([yes]) ], |
Damien Miller | 2994e08 | 2000-06-04 15:51:47 +1000 | [diff] [blame] | 4616 | [ |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4617 | AC_MSG_RESULT([no]) |
Damien Miller | 2994e08 | 2000-06-04 15:51:47 +1000 | [diff] [blame] | 4618 | system_lastlog_path=no |
| 4619 | ]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4620 | ]) |
Damien Miller | 2994e08 | 2000-06-04 15:51:47 +1000 | [diff] [blame] | 4621 | |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4622 | if test -z "$conf_lastlog_location"; then |
| 4623 | if test x"$system_lastlog_path" = x"no" ; then |
| 4624 | for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do |
Damien Miller | edb8292 | 2000-06-20 13:25:52 +1000 | [diff] [blame] | 4625 | if (test -d "$f" || test -f "$f") ; then |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4626 | conf_lastlog_location=$f |
| 4627 | fi |
| 4628 | done |
| 4629 | if test -z "$conf_lastlog_location"; then |
andre | 45cad51 | 2000-06-12 23:27:31 +0000 | [diff] [blame] | 4630 | AC_MSG_WARN([** Cannot find lastlog **]) |
| 4631 | dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4632 | fi |
| 4633 | fi |
| 4634 | fi |
| 4635 | |
| 4636 | if test -n "$conf_lastlog_location"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4637 | AC_DEFINE_UNQUOTED([CONF_LASTLOG_FILE], ["$conf_lastlog_location"], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4638 | [Define if you want to specify the path to your lastlog file]) |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4639 | fi |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4640 | |
| 4641 | dnl utmp detection |
| 4642 | AC_MSG_CHECKING([if your system defines UTMP_FILE]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4643 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4644 | #include <sys/types.h> |
| 4645 | #include <utmp.h> |
Damien Miller | 2994e08 | 2000-06-04 15:51:47 +1000 | [diff] [blame] | 4646 | #ifdef HAVE_PATHS_H |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4647 | # include <paths.h> |
| 4648 | #endif |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4649 | ]], [[ char *utmp = UTMP_FILE; ]])], |
| 4650 | [ AC_MSG_RESULT([yes]) ], |
| 4651 | [ AC_MSG_RESULT([no]) |
| 4652 | system_utmp_path=no |
| 4653 | ]) |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4654 | if test -z "$conf_utmp_location"; then |
| 4655 | if test x"$system_utmp_path" = x"no" ; then |
| 4656 | for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do |
| 4657 | if test -f $f ; then |
| 4658 | conf_utmp_location=$f |
| 4659 | fi |
| 4660 | done |
| 4661 | if test -z "$conf_utmp_location"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4662 | AC_DEFINE([DISABLE_UTMP]) |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4663 | fi |
| 4664 | fi |
| 4665 | fi |
| 4666 | if test -n "$conf_utmp_location"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4667 | AC_DEFINE_UNQUOTED([CONF_UTMP_FILE], ["$conf_utmp_location"], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4668 | [Define if you want to specify the path to your utmp file]) |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4669 | fi |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4670 | |
| 4671 | dnl wtmp detection |
| 4672 | AC_MSG_CHECKING([if your system defines WTMP_FILE]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4673 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4674 | #include <sys/types.h> |
| 4675 | #include <utmp.h> |
Damien Miller | 2994e08 | 2000-06-04 15:51:47 +1000 | [diff] [blame] | 4676 | #ifdef HAVE_PATHS_H |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4677 | # include <paths.h> |
| 4678 | #endif |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4679 | ]], [[ char *wtmp = WTMP_FILE; ]])], |
| 4680 | [ AC_MSG_RESULT([yes]) ], |
| 4681 | [ AC_MSG_RESULT([no]) |
| 4682 | system_wtmp_path=no |
| 4683 | ]) |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4684 | if test -z "$conf_wtmp_location"; then |
| 4685 | if test x"$system_wtmp_path" = x"no" ; then |
| 4686 | for f in /usr/adm/wtmp /var/log/wtmp; do |
| 4687 | if test -f $f ; then |
| 4688 | conf_wtmp_location=$f |
| 4689 | fi |
| 4690 | done |
| 4691 | if test -z "$conf_wtmp_location"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4692 | AC_DEFINE([DISABLE_WTMP]) |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4693 | fi |
| 4694 | fi |
| 4695 | fi |
| 4696 | if test -n "$conf_wtmp_location"; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4697 | AC_DEFINE_UNQUOTED([CONF_WTMP_FILE], ["$conf_wtmp_location"], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4698 | [Define if you want to specify the path to your wtmp file]) |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4699 | fi |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4700 | |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4701 | dnl wtmpx detection |
| 4702 | AC_MSG_CHECKING([if your system defines WTMPX_FILE]) |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4703 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4704 | #include <sys/types.h> |
| 4705 | #include <utmp.h> |
| 4706 | #ifdef HAVE_UTMPX_H |
| 4707 | #include <utmpx.h> |
| 4708 | #endif |
Damien Miller | 2994e08 | 2000-06-04 15:51:47 +1000 | [diff] [blame] | 4709 | #ifdef HAVE_PATHS_H |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4710 | # include <paths.h> |
| 4711 | #endif |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4712 | ]], [[ char *wtmpx = WTMPX_FILE; ]])], |
| 4713 | [ AC_MSG_RESULT([yes]) ], |
| 4714 | [ AC_MSG_RESULT([no]) |
| 4715 | system_wtmpx_path=no |
| 4716 | ]) |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4717 | if test -z "$conf_wtmpx_location"; then |
| 4718 | if test x"$system_wtmpx_path" = x"no" ; then |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4719 | AC_DEFINE([DISABLE_WTMPX]) |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4720 | fi |
| 4721 | else |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4722 | AC_DEFINE_UNQUOTED([CONF_WTMPX_FILE], ["$conf_wtmpx_location"], |
Tim Rice | 7df8d39 | 2005-09-19 09:33:39 -0700 | [diff] [blame] | 4723 | [Define if you want to specify the path to your wtmpx file]) |
Tim Rice | eae17cc | 2005-03-17 16:52:20 -0800 | [diff] [blame] | 4724 | fi |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 4725 | |
Damien Miller | 4018c19 | 2000-04-30 09:30:44 +1000 | [diff] [blame] | 4726 | |
Damien Miller | 29ea30d | 2000-03-17 10:54:15 +1100 | [diff] [blame] | 4727 | if test ! -z "$blibpath" ; then |
Damien Miller | eab4bae | 2003-04-29 23:22:40 +1000 | [diff] [blame] | 4728 | LDFLAGS="$LDFLAGS $blibflags$blibpath" |
| 4729 | AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile]) |
Damien Miller | 29ea30d | 2000-03-17 10:54:15 +1100 | [diff] [blame] | 4730 | fi |
| 4731 | |
Damien Miller | a2438bb | 2013-03-15 10:23:07 +1100 | [diff] [blame] | 4732 | AC_CHECK_MEMBER([struct lastlog.ll_line], [], [ |
Tim Rice | aa86c39 | 2013-03-16 20:55:46 -0700 | [diff] [blame] | 4733 | if test x$SKIP_DISABLE_LASTLOG_DEFINE != "xyes" ; then |
Damien Miller | a2438bb | 2013-03-15 10:23:07 +1100 | [diff] [blame] | 4734 | AC_DEFINE([DISABLE_LASTLOG]) |
Tim Rice | aa86c39 | 2013-03-16 20:55:46 -0700 | [diff] [blame] | 4735 | fi |
Damien Miller | a2438bb | 2013-03-15 10:23:07 +1100 | [diff] [blame] | 4736 | ], [ |
| 4737 | #ifdef HAVE_SYS_TYPES_H |
| 4738 | #include <sys/types.h> |
| 4739 | #endif |
| 4740 | #ifdef HAVE_UTMP_H |
| 4741 | #include <utmp.h> |
| 4742 | #endif |
| 4743 | #ifdef HAVE_UTMPX_H |
| 4744 | #include <utmpx.h> |
| 4745 | #endif |
| 4746 | #ifdef HAVE_LASTLOG_H |
| 4747 | #include <lastlog.h> |
| 4748 | #endif |
| 4749 | ]) |
| 4750 | |
| 4751 | AC_CHECK_MEMBER([struct utmp.ut_line], [], [ |
| 4752 | AC_DEFINE([DISABLE_UTMP]) |
| 4753 | AC_DEFINE([DISABLE_WTMP]) |
| 4754 | ], [ |
| 4755 | #ifdef HAVE_SYS_TYPES_H |
| 4756 | #include <sys/types.h> |
| 4757 | #endif |
| 4758 | #ifdef HAVE_UTMP_H |
| 4759 | #include <utmp.h> |
| 4760 | #endif |
| 4761 | #ifdef HAVE_UTMPX_H |
| 4762 | #include <utmpx.h> |
| 4763 | #endif |
| 4764 | #ifdef HAVE_LASTLOG_H |
| 4765 | #include <lastlog.h> |
| 4766 | #endif |
| 4767 | ]) |
| 4768 | |
Darren Tucker | 7da23cb | 2005-08-03 00:20:15 +1000 | [diff] [blame] | 4769 | dnl Adding -Werror to CFLAGS early prevents configure tests from running. |
| 4770 | dnl Add now. |
| 4771 | CFLAGS="$CFLAGS $werror_flags" |
| 4772 | |
Darren Tucker | 627337d | 2010-04-10 22:58:01 +1000 | [diff] [blame] | 4773 | if test "x$ac_cv_func_getaddrinfo" != "xyes" ; then |
| 4774 | TEST_SSH_IPV6=no |
| 4775 | else |
| 4776 | TEST_SSH_IPV6=yes |
| 4777 | fi |
Tim Rice | 648f876 | 2011-01-26 12:38:57 -0800 | [diff] [blame] | 4778 | AC_CHECK_DECL([BROKEN_GETADDRINFO], [TEST_SSH_IPV6=no]) |
| 4779 | AC_SUBST([TEST_SSH_IPV6], [$TEST_SSH_IPV6]) |
Darren Tucker | 882abfd | 2013-11-09 00:17:41 +1100 | [diff] [blame] | 4780 | AC_SUBST([TEST_MALLOC_OPTIONS], [$TEST_MALLOC_OPTIONS]) |
Darren Tucker | 6d8bd57 | 2013-06-11 11:26:10 +1000 | [diff] [blame] | 4781 | AC_SUBST([UNSUPPORTED_ALGORITHMS], [$unsupported_algorithms]) |
Darren Tucker | 5d37690 | 2008-06-11 04:15:05 +1000 | [diff] [blame] | 4782 | |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 4783 | AC_EXEEXT |
Damien Miller | 223897a | 2006-09-12 21:54:10 +1000 | [diff] [blame] | 4784 | AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openssh.xml \ |
| 4785 | openbsd-compat/Makefile openbsd-compat/regress/Makefile \ |
Damien Miller | f22019b | 2011-05-05 13:48:37 +1000 | [diff] [blame] | 4786 | survey.sh]) |
Tim Rice | 13aae5e | 2001-10-21 17:53:58 -0700 | [diff] [blame] | 4787 | AC_OUTPUT |
Damien Miller | 0437b33 | 2000-05-02 09:56:41 +1000 | [diff] [blame] | 4788 | |
Damien Miller | 7b22d65 | 2000-06-18 14:07:04 +1000 | [diff] [blame] | 4789 | # Print summary of options |
| 4790 | |
Damien Miller | 7b22d65 | 2000-06-18 14:07:04 +1000 | [diff] [blame] | 4791 | # Someone please show me a better way :) |
| 4792 | A=`eval echo ${prefix}` ; A=`eval echo ${A}` |
| 4793 | B=`eval echo ${bindir}` ; B=`eval echo ${B}` |
| 4794 | C=`eval echo ${sbindir}` ; C=`eval echo ${C}` |
| 4795 | D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}` |
Kevin Steves | e0f4914 | 2000-10-14 17:51:48 +0000 | [diff] [blame] | 4796 | E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}` |
Ben Lindstrom | bc70992 | 2001-04-18 18:04:21 +0000 | [diff] [blame] | 4797 | F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}` |
Damien Miller | 7b22d65 | 2000-06-18 14:07:04 +1000 | [diff] [blame] | 4798 | G=`eval echo ${piddir}` ; G=`eval echo ${G}` |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4799 | H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}` |
| 4800 | I=`eval echo ${user_path}` ; I=`eval echo ${I}` |
| 4801 | J=`eval echo ${superuser_path}` ; J=`eval echo ${J}` |
Damien Miller | 7b22d65 | 2000-06-18 14:07:04 +1000 | [diff] [blame] | 4802 | |
| 4803 | echo "" |
Kevin Steves | 393d2f7 | 2001-04-08 22:50:43 +0000 | [diff] [blame] | 4804 | echo "OpenSSH has been configured with the following options:" |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4805 | echo " User binaries: $B" |
| 4806 | echo " System binaries: $C" |
| 4807 | echo " Configuration files: $D" |
| 4808 | echo " Askpass program: $E" |
| 4809 | echo " Manual pages: $F" |
| 4810 | echo " PID file: $G" |
| 4811 | echo " Privilege separation chroot path: $H" |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4812 | if test "x$external_path_file" = "x/etc/login.conf" ; then |
| 4813 | echo " At runtime, sshd will use the path defined in $external_path_file" |
| 4814 | echo " Make sure the path to scp is present, otherwise scp will not work" |
Tim Rice | 43a1c13 | 2002-04-17 21:19:14 -0700 | [diff] [blame] | 4815 | else |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4816 | echo " sshd default user PATH: $I" |
Tim Rice | b925b4b | 2003-09-15 22:40:49 -0700 | [diff] [blame] | 4817 | if test ! -z "$external_path_file"; then |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 4818 | echo " (If PATH is set in $external_path_file it will be used instead. If" |
| 4819 | echo " used, ensure the path to scp is present, otherwise scp will not work.)" |
| 4820 | fi |
Tim Rice | 43a1c13 | 2002-04-17 21:19:14 -0700 | [diff] [blame] | 4821 | fi |
Damien Miller | a18bbd3 | 2002-05-13 10:48:57 +1000 | [diff] [blame] | 4822 | if test ! -z "$superuser_path" ; then |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4823 | echo " sshd superuser user PATH: $J" |
Damien Miller | a18bbd3 | 2002-05-13 10:48:57 +1000 | [diff] [blame] | 4824 | fi |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4825 | echo " Manpage format: $MANTYPE" |
Damien Miller | 7abe09b | 2003-05-15 10:53:49 +1000 | [diff] [blame] | 4826 | echo " PAM support: $PAM_MSG" |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 4827 | echo " OSF SIA support: $SIA_MSG" |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4828 | echo " KerberosV support: $KRB5_MSG" |
Damien Miller | 73b42d2 | 2006-04-22 21:26:08 +1000 | [diff] [blame] | 4829 | echo " SELinux support: $SELINUX_MSG" |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4830 | echo " Smartcard support: $SCARD_MSG" |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4831 | echo " S/KEY support: $SKEY_MSG" |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4832 | echo " MD5 password support: $MD5_MSG" |
Darren Tucker | 16bcc1c | 2004-11-07 20:14:34 +1100 | [diff] [blame] | 4833 | echo " libedit support: $LIBEDIT_MSG" |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 4834 | echo " Solaris process contract support: $SPC_MSG" |
Darren Tucker | 9752835 | 2010-11-05 12:03:05 +1100 | [diff] [blame] | 4835 | echo " Solaris project support: $SP_MSG" |
Damien Miller | 903e115 | 2002-05-13 14:41:31 +1000 | [diff] [blame] | 4836 | echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG" |
Damien Miller | f58c672 | 2002-05-13 13:15:42 +1000 | [diff] [blame] | 4837 | echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG" |
| 4838 | echo " BSD Auth support: $BSD_AUTH_MSG" |
| 4839 | echo " Random number source: $RAND_MSG" |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 4840 | echo " Privsep sandbox style: $SANDBOX_STYLE" |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 4841 | |
Damien Miller | 7b22d65 | 2000-06-18 14:07:04 +1000 | [diff] [blame] | 4842 | echo "" |
| 4843 | |
Ben Lindstrom | 28bfc0d | 2000-12-18 19:58:57 +0000 | [diff] [blame] | 4844 | echo " Host: ${host}" |
| 4845 | echo " Compiler: ${CC}" |
| 4846 | echo " Compiler flags: ${CFLAGS}" |
| 4847 | echo "Preprocessor flags: ${CPPFLAGS}" |
| 4848 | echo " Linker flags: ${LDFLAGS}" |
Darren Tucker | 20e9f97 | 2007-03-25 18:26:01 +1000 | [diff] [blame] | 4849 | echo " Libraries: ${LIBS}" |
| 4850 | if test ! -z "${SSHDLIBS}"; then |
| 4851 | echo " +for sshd: ${SSHDLIBS}" |
| 4852 | fi |
Damien Miller | 71adf12 | 2011-01-25 12:16:15 +1100 | [diff] [blame] | 4853 | if test ! -z "${SSHLIBS}"; then |
| 4854 | echo " +for ssh: ${SSHLIBS}" |
| 4855 | fi |
Damien Miller | 7b22d65 | 2000-06-18 14:07:04 +1000 | [diff] [blame] | 4856 | |
| 4857 | echo "" |
| 4858 | |
Tim Rice | 6f1f758 | 2004-05-30 21:38:51 -0700 | [diff] [blame] | 4859 | if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then |
Darren Tucker | cf59d31 | 2004-08-29 21:18:09 +1000 | [diff] [blame] | 4860 | echo "SVR4 style packages are supported with \"make package\"" |
| 4861 | echo "" |
Tim Rice | 6f1f758 | 2004-05-30 21:38:51 -0700 | [diff] [blame] | 4862 | fi |
| 4863 | |
Damien Miller | 82cf0ce | 2000-12-20 13:34:48 +1100 | [diff] [blame] | 4864 | if test "x$PAM_MSG" = "xyes" ; then |
Damien Miller | 6c21c51 | 2002-01-22 21:57:53 +1100 | [diff] [blame] | 4865 | echo "PAM is enabled. You may need to install a PAM control file " |
| 4866 | echo "for sshd, otherwise password authentication may fail. " |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 4867 | echo "Example PAM control files can be found in the contrib/ " |
Damien Miller | 6c21c51 | 2002-01-22 21:57:53 +1100 | [diff] [blame] | 4868 | echo "subdirectory" |
Damien Miller | 6f9c337 | 2000-10-25 10:06:04 +1100 | [diff] [blame] | 4869 | echo "" |
| 4870 | fi |
Ben Lindstrom | 3ad650a | 2001-01-03 06:02:51 +0000 | [diff] [blame] | 4871 | |
Damien Miller | b409718 | 2004-05-23 14:09:40 +1000 | [diff] [blame] | 4872 | if test ! -z "$NO_PEERCHECK" ; then |
Darren Tucker | 164aa30 | 2007-03-21 21:39:57 +1100 | [diff] [blame] | 4873 | echo "WARNING: the operating system that you are using does not" |
| 4874 | echo "appear to support getpeereid(), getpeerucred() or the" |
| 4875 | echo "SO_PEERCRED getsockopt() option. These facilities are used to" |
| 4876 | echo "enforce security checks to prevent unauthorised connections to" |
| 4877 | echo "ssh-agent. Their absence increases the risk that a malicious" |
| 4878 | echo "user can connect to your agent." |
Damien Miller | b409718 | 2004-05-23 14:09:40 +1000 | [diff] [blame] | 4879 | echo "" |
| 4880 | fi |
| 4881 | |
Darren Tucker | d9f8891 | 2005-02-20 21:01:48 +1100 | [diff] [blame] | 4882 | if test "$AUDIT_MODULE" = "bsm" ; then |
| 4883 | echo "WARNING: BSM audit support is currently considered EXPERIMENTAL." |
| 4884 | echo "See the Solaris section in README.platform for details." |
| 4885 | fi |