mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Sometimes ssl.h is ssl/ssl.h. This is a simple fix so that it is
detected in those cases, more work is needed to abstract its location so that programs can be compiled without change.
This commit is contained in:
parent
f23019c37a
commit
38098bcbc8
@ -530,9 +530,9 @@ dnl
|
||||
ol_link_tls=no
|
||||
if test $ol_with_tls != no ; then
|
||||
|
||||
AC_CHECK_HEADERS(ssl.h)
|
||||
AC_CHECK_HEADERS(ssl.h ssl/ssl.h)
|
||||
|
||||
if test $ac_cv_header_ssl_h = yes ; then
|
||||
if test $ac_cv_header_ssl_h = yes -o $ac_cv_header_ssl_ssl_h = yes ; then
|
||||
AC_CHECK_LIB(ssl, SSLeay_add_ssl_algorithms,
|
||||
[have_ssleay=yes
|
||||
need_rsaref=no],
|
||||
|
Loading…
Reference in New Issue
Block a user