mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05: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
2 changed files with 547 additions and 537 deletions
|
|
@ -530,9 +530,9 @@ dnl
|
||||||
ol_link_tls=no
|
ol_link_tls=no
|
||||||
if test $ol_with_tls != no ; then
|
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,
|
AC_CHECK_LIB(ssl, SSLeay_add_ssl_algorithms,
|
||||||
[have_ssleay=yes
|
[have_ssleay=yes
|
||||||
need_rsaref=no],
|
need_rsaref=no],
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue