Allow openssl detection without pkg-config file

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 2aa548763e)
v3.5.13-sru
Slávek Banko 7 years ago
parent 88291f7e7f
commit 69c87f5393

@ -886,7 +886,15 @@ endif( WITH_LIBBFD )
if( WITH_SSL )
pkg_search_module( SSL openssl )
if( NOT SSL_FOUND )
message(FATAL_ERROR "\nSSL support are requested, but openssl is not found on your system" )
check_include_file( openssl/ssl.h HAVE_OPENSSL_H )
check_library_exists( ssl SSL_library_init "" HAVE_LIBSSL )
check_library_exists( crypto EVP_EncryptInit_ex "" HAVE_LIBCRYPTO )
if( HAVE_OPENSSL_H AND HAVE_LIBSSL AND HAVE_LIBCRYPTO )
set( SSL_FOUND 1 CACHE INTERNAL "" FORCE )
endif( HAVE_OPENSSL_H AND HAVE_LIBSSL AND HAVE_LIBCRYPTO )
endif( NOT SSL_FOUND )
if( NOT SSL_FOUND )
tde_message_fatal( "SSL support is requested, but openssl not found on your system" )
endif( NOT SSL_FOUND )
set( KSSL_HAVE_SSL 1 )
set( HAVE_SSL 1 )

Loading…
Cancel
Save