mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
ITS#8719, ITS#8605, ITS#6300 -- Regenerate configure
This commit is contained in:
parent
c5b73dd85b
commit
5371d9f290
98
configure
vendored
98
configure
vendored
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
# From configure.in Id: 41cd0a5df892091d70e4deae4b86a9d022f4302b .
|
||||
# From configure.in Id: 46e5e8cc8f0216bd3fa077597f237c3dbabd3a75 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.65.
|
||||
#
|
||||
@ -14398,6 +14398,51 @@ fi
|
||||
|
||||
fi
|
||||
|
||||
for ac_header in sys/event.h
|
||||
do :
|
||||
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
|
||||
eval as_val=\$$as_ac_Header
|
||||
if test "x$as_val" = x""yes; then :
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
done
|
||||
|
||||
if test "${ac_cv_header_sys_event_h}" = yes; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for kqueue system call" >&5
|
||||
$as_echo_n "checking for kqueue system call... " >&6; }
|
||||
if test "$cross_compiling" = yes; then :
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
else
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
int kqfd = kqueue();
|
||||
exit (kqfd == -1 ? 1 : 0);
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_run "$LINENO"; then :
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||
$as_echo "yes" >&6; }
|
||||
|
||||
$as_echo "#define HAVE_KQUEUE 1" >>confdefs.h
|
||||
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
fi
|
||||
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
|
||||
conftest.$ac_objext conftest.beam conftest.$ac_ext
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
for ac_header in sys/devpoll.h
|
||||
do :
|
||||
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
||||
@ -21685,7 +21730,7 @@ $as_echo "#define HAVE_TCPD 1" >>confdefs.h
|
||||
|
||||
WRAP_LIBS="-lwrap"
|
||||
elif test $ol_enable_wrappers = yes ; then
|
||||
as_fn_error "could not find TCP wrappers, select apppropriate options or disable" "$LINENO" 5
|
||||
as_fn_error "could not find TCP wrappers, select appropriate options or disable" "$LINENO" 5
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: could not find TCP wrappers, support disabled" >&5
|
||||
$as_echo "$as_me: WARNING: could not find TCP wrappers, support disabled" >&2;}
|
||||
@ -22557,12 +22602,61 @@ fi
|
||||
fi
|
||||
|
||||
|
||||
LIBS="$TLS_LIBS $LIBS"
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for crypt_r in -lcrypt" >&5
|
||||
$as_echo_n "checking for crypt_r in -lcrypt... " >&6; }
|
||||
if test "${ac_cv_lib_crypt_crypt_r+set}" = set; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
ac_check_lib_save_LIBS=$LIBS
|
||||
LIBS="-lcrypt $LIBS"
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
|
||||
/* Override any GCC internal prototype to avoid an error.
|
||||
Use char because int might match the return type of a GCC
|
||||
builtin and then its argument prototype would still apply. */
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
#endif
|
||||
char crypt_r ();
|
||||
int
|
||||
main ()
|
||||
{
|
||||
return crypt_r ();
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_link "$LINENO"; then :
|
||||
ac_cv_lib_crypt_crypt_r=yes
|
||||
else
|
||||
ac_cv_lib_crypt_crypt_r=no
|
||||
fi
|
||||
rm -f core conftest.err conftest.$ac_objext \
|
||||
conftest$ac_exeext conftest.$ac_ext
|
||||
LIBS=$ac_check_lib_save_LIBS
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypt_crypt_r" >&5
|
||||
$as_echo "$ac_cv_lib_crypt_crypt_r" >&6; }
|
||||
if test "x$ac_cv_lib_crypt_crypt_r" = x""yes; then :
|
||||
have_crypt_r=yes
|
||||
else
|
||||
have_crypt_r=no
|
||||
fi
|
||||
|
||||
|
||||
LIBS="$save_LIBS"
|
||||
|
||||
if test $have_crypt = yes ; then
|
||||
|
||||
$as_echo "#define HAVE_CRYPT 1" >>confdefs.h
|
||||
|
||||
if test $have_crypt_r = yes ; then
|
||||
|
||||
$as_echo "#define HAVE_CRYPT_R 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: could not find crypt" >&5
|
||||
$as_echo "$as_me: WARNING: could not find crypt" >&2;}
|
||||
|
Loading…
Reference in New Issue
Block a user