summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure378
1 files changed, 345 insertions, 33 deletions
diff --git a/configure b/configure
index ce28f0d52..98a7bb261 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
1#! /bin/sh 1#! /bin/sh
2# From configure.ac Revision: 1.372 . 2# From configure.ac Revision: 1.383 .
3# Guess values for system-dependent variables and create Makefiles. 3# Guess values for system-dependent variables and create Makefiles.
4# Generated by GNU Autoconf 2.61 for OpenSSH Portable. 4# Generated by GNU Autoconf 2.61 for OpenSSH Portable.
5# 5#
@@ -693,9 +693,7 @@ LOGIN_PROGRAM_FALLBACK
693PATH_PASSWD_PROG 693PATH_PASSWD_PROG
694LD 694LD
695SSHDLIBS 695SSHDLIBS
696LIBWRAP
697LIBEDIT 696LIBEDIT
698LIBPAM
699INSTALL_SSH_RAND_HELPER 697INSTALL_SSH_RAND_HELPER
700SSH_PRIVSEP_USER 698SSH_PRIVSEP_USER
701PROG_LS 699PROG_LS
@@ -716,7 +714,6 @@ PROG_IPCS
716PROG_TAIL 714PROG_TAIL
717INSTALL_SSH_PRNG_CMDS 715INSTALL_SSH_PRNG_CMDS
718OPENSC_CONFIG 716OPENSC_CONFIG
719LIBSELINUX
720PRIVSEP_PATH 717PRIVSEP_PATH
721xauth_path 718xauth_path
722STRIP_OPT 719STRIP_OPT
@@ -5390,9 +5387,12 @@ if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
5390 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wuninitialized" 5387 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wuninitialized"
5391 GCC_VER=`$CC -v 2>&1 | $AWK '/gcc version /{print $3}'` 5388 GCC_VER=`$CC -v 2>&1 | $AWK '/gcc version /{print $3}'`
5392 case $GCC_VER in 5389 case $GCC_VER in
5393 1.*) ;; 5390 1.*) no_attrib_nonnull=1 ;;
5394 2.8* | 2.9*) CFLAGS="$CFLAGS -Wsign-compare" ;; 5391 2.8* | 2.9*)
5395 2.*) ;; 5392 CFLAGS="$CFLAGS -Wsign-compare"
5393 no_attrib_nonnull=1
5394 ;;
5395 2.*) no_attrib_nonnull=1 ;;
5396 3.*) CFLAGS="$CFLAGS -Wsign-compare" ;; 5396 3.*) CFLAGS="$CFLAGS -Wsign-compare" ;;
5397 4.*) CFLAGS="$CFLAGS -Wsign-compare -Wno-pointer-sign" ;; 5397 4.*) CFLAGS="$CFLAGS -Wsign-compare -Wno-pointer-sign" ;;
5398 *) ;; 5398 *) ;;
@@ -5466,6 +5466,14 @@ fi
5466 fi 5466 fi
5467fi 5467fi
5468 5468
5469if test "x$no_attrib_nonnull" != "x1" ; then
5470
5471cat >>confdefs.h <<\_ACEOF
5472#define HAVE_ATTRIBUTE__NONNULL__ 1
5473_ACEOF
5474
5475fi
5476
5469 5477
5470# Check whether --with-rpath was given. 5478# Check whether --with-rpath was given.
5471if test "${with_rpath+set}" = set; then 5479if test "${with_rpath+set}" = set; then
@@ -5604,6 +5612,8 @@ fi
5604 5612
5605 5613
5606 5614
5615
5616
5607for ac_header in \ 5617for ac_header in \
5608 bstring.h \ 5618 bstring.h \
5609 crypt.h \ 5619 crypt.h \
@@ -5626,6 +5636,7 @@ for ac_header in \
5626 netgroup.h \ 5636 netgroup.h \
5627 pam/pam_appl.h \ 5637 pam/pam_appl.h \
5628 paths.h \ 5638 paths.h \
5639 poll.h \
5629 pty.h \ 5640 pty.h \
5630 readpassphrase.h \ 5641 readpassphrase.h \
5631 rpc/types.h \ 5642 rpc/types.h \
@@ -5657,6 +5668,7 @@ for ac_header in \
5657 time.h \ 5668 time.h \
5658 tmpdir.h \ 5669 tmpdir.h \
5659 ttyent.h \ 5670 ttyent.h \
5671 ucred.h \
5660 unistd.h \ 5672 unistd.h \
5661 usersec.h \ 5673 usersec.h \
5662 util.h \ 5674 util.h \
@@ -8998,6 +9010,14 @@ _ACEOF
8998_ACEOF 9010_ACEOF
8999 9011
9000 enable_etc_default_login=no # has incompatible /etc/default/login 9012 enable_etc_default_login=no # has incompatible /etc/default/login
9013 case "$host" in
9014 *-*-nto-qnx6*)
9015 cat >>confdefs.h <<\_ACEOF
9016#define DISABLE_FD_PASSING 1
9017_ACEOF
9018
9019 ;;
9020 esac
9001 ;; 9021 ;;
9002 9022
9003*-*-ultrix*) 9023*-*-ultrix*)
@@ -11820,8 +11840,7 @@ if test "${with_tcp_wrappers+set}" = set; then
11820 CPPFLAGS="-I${withval} ${CPPFLAGS}" 11840 CPPFLAGS="-I${withval} ${CPPFLAGS}"
11821 fi 11841 fi
11822 fi 11842 fi
11823 LIBWRAP="-lwrap" 11843 LIBS="-lwrap $LIBS"
11824 LIBS="$LIBWRAP $LIBS"
11825 { echo "$as_me:$LINENO: checking for libwrap" >&5 11844 { echo "$as_me:$LINENO: checking for libwrap" >&5
11826echo $ECHO_N "checking for libwrap... $ECHO_C" >&6; } 11845echo $ECHO_N "checking for libwrap... $ECHO_C" >&6; }
11827 cat >conftest.$ac_ext <<_ACEOF 11846 cat >conftest.$ac_ext <<_ACEOF
@@ -11871,7 +11890,7 @@ cat >>confdefs.h <<\_ACEOF
11871#define LIBWRAP 1 11890#define LIBWRAP 1
11872_ACEOF 11891_ACEOF
11873 11892
11874 11893 SSHDLIBS="$SSHDLIBS -lwrap"
11875 TCPW_MSG="yes" 11894 TCPW_MSG="yes"
11876 11895
11877else 11896else
@@ -12500,6 +12519,9 @@ fi
12500 12519
12501 12520
12502 12521
12522
12523
12524
12503for ac_func in \ 12525for ac_func in \
12504 arc4random \ 12526 arc4random \
12505 asprintf \ 12527 asprintf \
@@ -12522,6 +12544,7 @@ for ac_func in \
12522 getnameinfo \ 12544 getnameinfo \
12523 getopt \ 12545 getopt \
12524 getpeereid \ 12546 getpeereid \
12547 getpeerucred \
12525 _getpty \ 12548 _getpty \
12526 getrlimit \ 12549 getrlimit \
12527 getttyent \ 12550 getttyent \
@@ -12540,6 +12563,7 @@ for ac_func in \
12540 ogetaddrinfo \ 12563 ogetaddrinfo \
12541 openlog_r \ 12564 openlog_r \
12542 openpty \ 12565 openpty \
12566 poll \
12543 prctl \ 12567 prctl \
12544 pstat \ 12568 pstat \
12545 readpassphrase \ 12569 readpassphrase \
@@ -12573,6 +12597,7 @@ for ac_func in \
12573 strtonum \ 12597 strtonum \
12574 strtoll \ 12598 strtoll \
12575 strtoul \ 12599 strtoul \
12600 swap32 \
12576 sysconf \ 12601 sysconf \
12577 tcgetpgrp \ 12602 tcgetpgrp \
12578 truncate \ 12603 truncate \
@@ -13674,6 +13699,150 @@ fi
13674 13699
13675 13700
13676 13701
13702{ echo "$as_me:$LINENO: checking whether MAXSYMLINKS is declared" >&5
13703echo $ECHO_N "checking whether MAXSYMLINKS is declared... $ECHO_C" >&6; }
13704if test "${ac_cv_have_decl_MAXSYMLINKS+set}" = set; then
13705 echo $ECHO_N "(cached) $ECHO_C" >&6
13706else
13707 cat >conftest.$ac_ext <<_ACEOF
13708/* confdefs.h. */
13709_ACEOF
13710cat confdefs.h >>conftest.$ac_ext
13711cat >>conftest.$ac_ext <<_ACEOF
13712/* end confdefs.h. */
13713
13714#include <sys/param.h>
13715
13716
13717int
13718main ()
13719{
13720#ifndef MAXSYMLINKS
13721 (void) MAXSYMLINKS;
13722#endif
13723
13724 ;
13725 return 0;
13726}
13727_ACEOF
13728rm -f conftest.$ac_objext
13729if { (ac_try="$ac_compile"
13730case "(($ac_try" in
13731 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13732 *) ac_try_echo=$ac_try;;
13733esac
13734eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13735 (eval "$ac_compile") 2>conftest.er1
13736 ac_status=$?
13737 grep -v '^ *+' conftest.er1 >conftest.err
13738 rm -f conftest.er1
13739 cat conftest.err >&5
13740 echo "$as_me:$LINENO: \$? = $ac_status" >&5
13741 (exit $ac_status); } && {
13742 test -z "$ac_c_werror_flag" ||
13743 test ! -s conftest.err
13744 } && test -s conftest.$ac_objext; then
13745 ac_cv_have_decl_MAXSYMLINKS=yes
13746else
13747 echo "$as_me: failed program was:" >&5
13748sed 's/^/| /' conftest.$ac_ext >&5
13749
13750 ac_cv_have_decl_MAXSYMLINKS=no
13751fi
13752
13753rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
13754fi
13755{ echo "$as_me:$LINENO: result: $ac_cv_have_decl_MAXSYMLINKS" >&5
13756echo "${ECHO_T}$ac_cv_have_decl_MAXSYMLINKS" >&6; }
13757if test $ac_cv_have_decl_MAXSYMLINKS = yes; then
13758
13759cat >>confdefs.h <<_ACEOF
13760#define HAVE_DECL_MAXSYMLINKS 1
13761_ACEOF
13762
13763
13764else
13765 cat >>confdefs.h <<_ACEOF
13766#define HAVE_DECL_MAXSYMLINKS 0
13767_ACEOF
13768
13769
13770fi
13771
13772
13773
13774{ echo "$as_me:$LINENO: checking whether offsetof is declared" >&5
13775echo $ECHO_N "checking whether offsetof is declared... $ECHO_C" >&6; }
13776if test "${ac_cv_have_decl_offsetof+set}" = set; then
13777 echo $ECHO_N "(cached) $ECHO_C" >&6
13778else
13779 cat >conftest.$ac_ext <<_ACEOF
13780/* confdefs.h. */
13781_ACEOF
13782cat confdefs.h >>conftest.$ac_ext
13783cat >>conftest.$ac_ext <<_ACEOF
13784/* end confdefs.h. */
13785
13786#include <stddef.h>
13787
13788
13789int
13790main ()
13791{
13792#ifndef offsetof
13793 (void) offsetof;
13794#endif
13795
13796 ;
13797 return 0;
13798}
13799_ACEOF
13800rm -f conftest.$ac_objext
13801if { (ac_try="$ac_compile"
13802case "(($ac_try" in
13803 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
13804 *) ac_try_echo=$ac_try;;
13805esac
13806eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
13807 (eval "$ac_compile") 2>conftest.er1
13808 ac_status=$?
13809 grep -v '^ *+' conftest.er1 >conftest.err
13810 rm -f conftest.er1
13811 cat conftest.err >&5
13812 echo "$as_me:$LINENO: \$? = $ac_status" >&5
13813 (exit $ac_status); } && {
13814 test -z "$ac_c_werror_flag" ||
13815 test ! -s conftest.err
13816 } && test -s conftest.$ac_objext; then
13817 ac_cv_have_decl_offsetof=yes
13818else
13819 echo "$as_me: failed program was:" >&5
13820sed 's/^/| /' conftest.$ac_ext >&5
13821
13822 ac_cv_have_decl_offsetof=no
13823fi
13824
13825rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
13826fi
13827{ echo "$as_me:$LINENO: result: $ac_cv_have_decl_offsetof" >&5
13828echo "${ECHO_T}$ac_cv_have_decl_offsetof" >&6; }
13829if test $ac_cv_have_decl_offsetof = yes; then
13830
13831cat >>confdefs.h <<_ACEOF
13832#define HAVE_DECL_OFFSETOF 1
13833_ACEOF
13834
13835
13836else
13837 cat >>confdefs.h <<_ACEOF
13838#define HAVE_DECL_OFFSETOF 0
13839_ACEOF
13840
13841
13842fi
13843
13844
13845
13677 13846
13678for ac_func in setresuid 13847for ac_func in setresuid
13679do 13848do
@@ -14989,7 +15158,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14989 15158
14990# Check for missing getpeereid (or equiv) support 15159# Check for missing getpeereid (or equiv) support
14991NO_PEERCHECK="" 15160NO_PEERCHECK=""
14992if test "x$ac_cv_func_getpeereid" != "xyes" ; then 15161if test "x$ac_cv_func_getpeereid" != "xyes" -a "x$ac_cv_func_getpeerucred" != "xyes"; then
14993 { echo "$as_me:$LINENO: checking whether system supports SO_PEERCRED getsockopt" >&5 15162 { echo "$as_me:$LINENO: checking whether system supports SO_PEERCRED getsockopt" >&5
14994echo $ECHO_N "checking whether system supports SO_PEERCRED getsockopt... $ECHO_C" >&6; } 15163echo $ECHO_N "checking whether system supports SO_PEERCRED getsockopt... $ECHO_C" >&6; }
14995 cat >conftest.$ac_ext <<_ACEOF 15164 cat >conftest.$ac_ext <<_ACEOF
@@ -16430,7 +16599,7 @@ fi
16430done 16599done
16431 16600
16432 16601
16433 16602saved_LIBS="$LIBS"
16434{ echo "$as_me:$LINENO: checking for ia_openinfo in -liaf" >&5 16603{ echo "$as_me:$LINENO: checking for ia_openinfo in -liaf" >&5
16435echo $ECHO_N "checking for ia_openinfo in -liaf... $ECHO_C" >&6; } 16604echo $ECHO_N "checking for ia_openinfo in -liaf... $ECHO_C" >&6; }
16436if test "${ac_cv_lib_iaf_ia_openinfo+set}" = set; then 16605if test "${ac_cv_lib_iaf_ia_openinfo+set}" = set; then
@@ -16493,14 +16662,106 @@ fi
16493{ echo "$as_me:$LINENO: result: $ac_cv_lib_iaf_ia_openinfo" >&5 16662{ echo "$as_me:$LINENO: result: $ac_cv_lib_iaf_ia_openinfo" >&5
16494echo "${ECHO_T}$ac_cv_lib_iaf_ia_openinfo" >&6; } 16663echo "${ECHO_T}$ac_cv_lib_iaf_ia_openinfo" >&6; }
16495if test $ac_cv_lib_iaf_ia_openinfo = yes; then 16664if test $ac_cv_lib_iaf_ia_openinfo = yes; then
16665
16666 LIBS="$LIBS -liaf"
16667
16668for ac_func in set_id
16669do
16670as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
16671{ echo "$as_me:$LINENO: checking for $ac_func" >&5
16672echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
16673if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
16674 echo $ECHO_N "(cached) $ECHO_C" >&6
16675else
16676 cat >conftest.$ac_ext <<_ACEOF
16677/* confdefs.h. */
16678_ACEOF
16679cat confdefs.h >>conftest.$ac_ext
16680cat >>conftest.$ac_ext <<_ACEOF
16681/* end confdefs.h. */
16682/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
16683 For example, HP-UX 11i <limits.h> declares gettimeofday. */
16684#define $ac_func innocuous_$ac_func
16685
16686/* System header to define __stub macros and hopefully few prototypes,
16687 which can conflict with char $ac_func (); below.
16688 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
16689 <limits.h> exists even on freestanding compilers. */
16690
16691#ifdef __STDC__
16692# include <limits.h>
16693#else
16694# include <assert.h>
16695#endif
16696
16697#undef $ac_func
16698
16699/* Override any GCC internal prototype to avoid an error.
16700 Use char because int might match the return type of a GCC
16701 builtin and then its argument prototype would still apply. */
16702#ifdef __cplusplus
16703extern "C"
16704#endif
16705char $ac_func ();
16706/* The GNU C library defines this for functions which it implements
16707 to always fail with ENOSYS. Some functions are actually named
16708 something starting with __ and the normal name is an alias. */
16709#if defined __stub_$ac_func || defined __stub___$ac_func
16710choke me
16711#endif
16712
16713int
16714main ()
16715{
16716return $ac_func ();
16717 ;
16718 return 0;
16719}
16720_ACEOF
16721rm -f conftest.$ac_objext conftest$ac_exeext
16722if { (ac_try="$ac_link"
16723case "(($ac_try" in
16724 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
16725 *) ac_try_echo=$ac_try;;
16726esac
16727eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
16728 (eval "$ac_link") 2>conftest.er1
16729 ac_status=$?
16730 grep -v '^ *+' conftest.er1 >conftest.err
16731 rm -f conftest.er1
16732 cat conftest.err >&5
16733 echo "$as_me:$LINENO: \$? = $ac_status" >&5
16734 (exit $ac_status); } && {
16735 test -z "$ac_c_werror_flag" ||
16736 test ! -s conftest.err
16737 } && test -s conftest$ac_exeext &&
16738 $as_test_x conftest$ac_exeext; then
16739 eval "$as_ac_var=yes"
16740else
16741 echo "$as_me: failed program was:" >&5
16742sed 's/^/| /' conftest.$ac_ext >&5
16743
16744 eval "$as_ac_var=no"
16745fi
16746
16747rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
16748 conftest$ac_exeext conftest.$ac_ext
16749fi
16750ac_res=`eval echo '${'$as_ac_var'}'`
16751 { echo "$as_me:$LINENO: result: $ac_res" >&5
16752echo "${ECHO_T}$ac_res" >&6; }
16753if test `eval echo '${'$as_ac_var'}'` = yes; then
16496 cat >>confdefs.h <<_ACEOF 16754 cat >>confdefs.h <<_ACEOF
16497#define HAVE_LIBIAF 1 16755#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
16498_ACEOF 16756_ACEOF
16757 SSHDLIBS="$SSHDLIBS -liaf"
16758fi
16759done
16499 16760
16500 LIBS="-liaf $LIBS"
16501 16761
16502fi 16762fi
16503 16763
16764LIBS="$saved_LIBS"
16504 16765
16505### Configure cryptographic random number support 16766### Configure cryptographic random number support
16506 16767
@@ -16926,7 +17187,7 @@ done
16926 17187
16927 PAM_MSG="yes" 17188 PAM_MSG="yes"
16928 17189
16929 LIBPAM="-lpam" 17190 SSHDLIBS="$SSHDLIBS -lpam"
16930 17191
16931cat >>confdefs.h <<\_ACEOF 17192cat >>confdefs.h <<\_ACEOF
16932#define USE_PAM 1 17193#define USE_PAM 1
@@ -16939,11 +17200,10 @@ _ACEOF
16939 # libdl already in LIBS 17200 # libdl already in LIBS
16940 ;; 17201 ;;
16941 *) 17202 *)
16942 LIBPAM="$LIBPAM -ldl" 17203 SSHDLIBS="$SSHDLIBS -ldl"
16943 ;; 17204 ;;
16944 esac 17205 esac
16945 fi 17206 fi
16946
16947 fi 17207 fi
16948 17208
16949 17209
@@ -25179,6 +25439,59 @@ fi
25179fi 25439fi
25180 25440
25181 25441
25442{ echo "$as_me:$LINENO: checking if struct __res_state _res is an extern" >&5
25443echo $ECHO_N "checking if struct __res_state _res is an extern... $ECHO_C" >&6; }
25444cat >conftest.$ac_ext <<_ACEOF
25445
25446#include <stdio.h>
25447#if HAVE_SYS_TYPES_H
25448# include <sys/types.h>
25449#endif
25450#include <netinet/in.h>
25451#include <arpa/nameser.h>
25452#include <resolv.h>
25453extern struct __res_state _res;
25454int main() { return 0; }
25455
25456_ACEOF
25457rm -f conftest.$ac_objext conftest$ac_exeext
25458if { (ac_try="$ac_link"
25459case "(($ac_try" in
25460 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
25461 *) ac_try_echo=$ac_try;;
25462esac
25463eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
25464 (eval "$ac_link") 2>conftest.er1
25465 ac_status=$?
25466 grep -v '^ *+' conftest.er1 >conftest.err
25467 rm -f conftest.er1
25468 cat conftest.err >&5
25469 echo "$as_me:$LINENO: \$? = $ac_status" >&5
25470 (exit $ac_status); } && {
25471 test -z "$ac_c_werror_flag" ||
25472 test ! -s conftest.err
25473 } && test -s conftest$ac_exeext &&
25474 $as_test_x conftest$ac_exeext; then
25475 { echo "$as_me:$LINENO: result: yes" >&5
25476echo "${ECHO_T}yes" >&6; }
25477
25478cat >>confdefs.h <<\_ACEOF
25479#define HAVE__RES_EXTERN 1
25480_ACEOF
25481
25482
25483else
25484 echo "$as_me: failed program was:" >&5
25485sed 's/^/| /' conftest.$ac_ext >&5
25486
25487 { echo "$as_me:$LINENO: result: no" >&5
25488echo "${ECHO_T}no" >&6; }
25489
25490fi
25491
25492rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
25493 conftest$ac_exeext conftest.$ac_ext
25494
25182# Check whether user wants SELinux support 25495# Check whether user wants SELinux support
25183SELINUX_MSG="no" 25496SELINUX_MSG="no"
25184LIBSELINUX="" 25497LIBSELINUX=""
@@ -25186,6 +25499,7 @@ LIBSELINUX=""
25186# Check whether --with-selinux was given. 25499# Check whether --with-selinux was given.
25187if test "${with_selinux+set}" = set; then 25500if test "${with_selinux+set}" = set; then
25188 withval=$with_selinux; if test "x$withval" != "xno" ; then 25501 withval=$with_selinux; if test "x$withval" != "xno" ; then
25502 save_LIBS="$LIBS"
25189 25503
25190cat >>confdefs.h <<\_ACEOF 25504cat >>confdefs.h <<\_ACEOF
25191#define WITH_SELINUX 1 25505#define WITH_SELINUX 1
@@ -25400,8 +25714,7 @@ echo "$as_me: error: SELinux support requires libselinux library" >&2;}
25400 { (exit 1); exit 1; }; } 25714 { (exit 1); exit 1; }; }
25401fi 25715fi
25402 25716
25403 save_LIBS="$LIBS" 25717 SSHDLIBS="$SSHDLIBS $LIBSELINUX"
25404 LIBS="$LIBS $LIBSELINUX"
25405 25718
25406 25719
25407for ac_func in getseuserbyname get_default_context_with_level 25720for ac_func in getseuserbyname get_default_context_with_level
@@ -25503,7 +25816,6 @@ done
25503fi 25816fi
25504 25817
25505 25818
25506
25507# Check whether user wants Kerberos 5 support 25819# Check whether user wants Kerberos 5 support
25508KRB5_MSG="no" 25820KRB5_MSG="no"
25509 25821
@@ -28917,9 +29229,7 @@ LOGIN_PROGRAM_FALLBACK!$LOGIN_PROGRAM_FALLBACK$ac_delim
28917PATH_PASSWD_PROG!$PATH_PASSWD_PROG$ac_delim 29229PATH_PASSWD_PROG!$PATH_PASSWD_PROG$ac_delim
28918LD!$LD$ac_delim 29230LD!$LD$ac_delim
28919SSHDLIBS!$SSHDLIBS$ac_delim 29231SSHDLIBS!$SSHDLIBS$ac_delim
28920LIBWRAP!$LIBWRAP$ac_delim
28921LIBEDIT!$LIBEDIT$ac_delim 29232LIBEDIT!$LIBEDIT$ac_delim
28922LIBPAM!$LIBPAM$ac_delim
28923INSTALL_SSH_RAND_HELPER!$INSTALL_SSH_RAND_HELPER$ac_delim 29233INSTALL_SSH_RAND_HELPER!$INSTALL_SSH_RAND_HELPER$ac_delim
28924SSH_PRIVSEP_USER!$SSH_PRIVSEP_USER$ac_delim 29234SSH_PRIVSEP_USER!$SSH_PRIVSEP_USER$ac_delim
28925PROG_LS!$PROG_LS$ac_delim 29235PROG_LS!$PROG_LS$ac_delim
@@ -28937,6 +29247,8 @@ PROG_DF!$PROG_DF$ac_delim
28937PROG_VMSTAT!$PROG_VMSTAT$ac_delim 29247PROG_VMSTAT!$PROG_VMSTAT$ac_delim
28938PROG_UPTIME!$PROG_UPTIME$ac_delim 29248PROG_UPTIME!$PROG_UPTIME$ac_delim
28939PROG_IPCS!$PROG_IPCS$ac_delim 29249PROG_IPCS!$PROG_IPCS$ac_delim
29250PROG_TAIL!$PROG_TAIL$ac_delim
29251INSTALL_SSH_PRNG_CMDS!$INSTALL_SSH_PRNG_CMDS$ac_delim
28940_ACEOF 29252_ACEOF
28941 29253
28942 if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then 29254 if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
@@ -28978,10 +29290,7 @@ _ACEOF
28978ac_delim='%!_!# ' 29290ac_delim='%!_!# '
28979for ac_last_try in false false false false false :; do 29291for ac_last_try in false false false false false :; do
28980 cat >conf$$subs.sed <<_ACEOF 29292 cat >conf$$subs.sed <<_ACEOF
28981PROG_TAIL!$PROG_TAIL$ac_delim
28982INSTALL_SSH_PRNG_CMDS!$INSTALL_SSH_PRNG_CMDS$ac_delim
28983OPENSC_CONFIG!$OPENSC_CONFIG$ac_delim 29293OPENSC_CONFIG!$OPENSC_CONFIG$ac_delim
28984LIBSELINUX!$LIBSELINUX$ac_delim
28985PRIVSEP_PATH!$PRIVSEP_PATH$ac_delim 29294PRIVSEP_PATH!$PRIVSEP_PATH$ac_delim
28986xauth_path!$xauth_path$ac_delim 29295xauth_path!$xauth_path$ac_delim
28987STRIP_OPT!$STRIP_OPT$ac_delim 29296STRIP_OPT!$STRIP_OPT$ac_delim
@@ -28995,7 +29304,7 @@ LIBOBJS!$LIBOBJS$ac_delim
28995LTLIBOBJS!$LTLIBOBJS$ac_delim 29304LTLIBOBJS!$LTLIBOBJS$ac_delim
28996_ACEOF 29305_ACEOF
28997 29306
28998 if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 15; then 29307 if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 12; then
28999 break 29308 break
29000 elif $ac_last_try; then 29309 elif $ac_last_try; then
29001 { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 29310 { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
@@ -29487,7 +29796,10 @@ echo " Compiler: ${CC}"
29487echo " Compiler flags: ${CFLAGS}" 29796echo " Compiler flags: ${CFLAGS}"
29488echo "Preprocessor flags: ${CPPFLAGS}" 29797echo "Preprocessor flags: ${CPPFLAGS}"
29489echo " Linker flags: ${LDFLAGS}" 29798echo " Linker flags: ${LDFLAGS}"
29490echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}" 29799echo " Libraries: ${LIBS}"
29800if test ! -z "${SSHDLIBS}"; then
29801echo " +for sshd: ${SSHDLIBS}"
29802fi
29491 29803
29492echo "" 29804echo ""
29493 29805
@@ -29513,12 +29825,12 @@ if test ! -z "$RAND_HELPER_CMDHASH" ; then
29513fi 29825fi
29514 29826
29515if test ! -z "$NO_PEERCHECK" ; then 29827if test ! -z "$NO_PEERCHECK" ; then
29516 echo "WARNING: the operating system that you are using does not " 29828 echo "WARNING: the operating system that you are using does not"
29517 echo "appear to support either the getpeereid() API nor the " 29829 echo "appear to support getpeereid(), getpeerucred() or the"
29518 echo "SO_PEERCRED getsockopt() option. These facilities are used to " 29830 echo "SO_PEERCRED getsockopt() option. These facilities are used to"
29519 echo "enforce security checks to prevent unauthorised connections to " 29831 echo "enforce security checks to prevent unauthorised connections to"
29520 echo "ssh-agent. Their absence increases the risk that a malicious " 29832 echo "ssh-agent. Their absence increases the risk that a malicious"
29521 echo "user can connect to your agent. " 29833 echo "user can connect to your agent."
29522 echo "" 29834 echo ""
29523fi 29835fi
29524 29836