mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-06-14 19:20:03 -04:00
Regenerate for ITS#9323 require openssl 1.0.2 or later
This commit is contained in:
parent
3f98e8395b
commit
1b85e3a76b
1 changed files with 18 additions and 1 deletions
19
configure
vendored
19
configure
vendored
|
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# From configure.in Id: 37293e618797a957ebe6b5f7b9479e9165e1362b .
|
||||
# From configure.in Id: 1c7bad4c0b18f9e988c4b161a996f5078917430e .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.65.
|
||||
#
|
||||
|
|
@ -15472,6 +15472,23 @@ done
|
|||
|
||||
|
||||
if test $ac_cv_header_openssl_ssl_h = yes ; then
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
#include <openssl/opensslv.h>
|
||||
#if OPENSSL_VERSION_NUMBER < 0x1000200fL
|
||||
#error "OpenSSL is too old"
|
||||
#endif
|
||||
_ACEOF
|
||||
if ac_fn_c_try_cpp "$LINENO"; then :
|
||||
|
||||
else
|
||||
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
||||
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
||||
as_fn_error "OpenSSL 1.0.2a or newer required
|
||||
See \`config.log' for more details." "$LINENO" 5; }
|
||||
fi
|
||||
rm -f conftest.err conftest.$ac_ext
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL_CTX_set_msg_callback in -lssl" >&5
|
||||
$as_echo_n "checking for SSL_CTX_set_msg_callback in -lssl... " >&6; }
|
||||
if test "${ac_cv_lib_ssl_SSL_CTX_set_msg_callback+set}" = set; then :
|
||||
|
|
|
|||
Loading…
Reference in a new issue