mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Our check for SSLeay_add_ssl_algorithms fails with modern versions of
OpenSSL since it has been made a preprocessor macro. Please review this change to do the right thing w.r.t. rsaref.
This commit is contained in:
parent
0dac59ca26
commit
ac5348b0d4
1 changed files with 7 additions and 0 deletions
|
|
@ -687,6 +687,13 @@ if test $ol_with_tls != no ; then
|
||||||
[have_ssleay=no],
|
[have_ssleay=no],
|
||||||
[-lcrypto])
|
[-lcrypto])
|
||||||
|
|
||||||
|
if test $have_ssleay = no ; then
|
||||||
|
AC_CHECK_LIB(ssl, SSL_library_init,
|
||||||
|
[have_ssleay=yes
|
||||||
|
need_rsaref=no], [have_ssleay=no],
|
||||||
|
[-lcrypto])
|
||||||
|
fi
|
||||||
|
|
||||||
if test $have_ssleay = no ; then
|
if test $have_ssleay = no ; then
|
||||||
AC_CHECK_LIB(ssl, ssl3_accept,
|
AC_CHECK_LIB(ssl, ssl3_accept,
|
||||||
[have_ssleay=yes
|
[have_ssleay=yes
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue