Skip to content
Snippets Groups Projects
Commit ac5348b0 authored by Julio Sánchez Fernández's avatar Julio Sánchez Fernández
Browse files

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.
parent 0dac59ca
No related branches found
No related tags found
No related merge requests found
......@@ -687,6 +687,13 @@ if test $ol_with_tls != no ; then
[have_ssleay=no],
[-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
AC_CHECK_LIB(ssl, ssl3_accept,
[have_ssleay=yes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment