diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2017-06-02 16:10:21 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2017-06-02 16:10:33 +0200 |
commit | e51435e449ffc840e0dfc16e6c8c2e1667230072 (patch) | |
tree | 2d00987ca2183138594f1a5a4c59950d7d4b6376 | |
parent | 963a017811e7fd6398acebedf1e2f40766c8d52d (diff) | |
download | tdebase-e51435e449ffc840e0dfc16e6c8c2e1667230072.tar.gz tdebase-e51435e449ffc840e0dfc16e6c8c2e1667230072.zip |
Allow openssl detection without pkg-config file
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit d7b8615289da74c47c996b050123d029e5e96045)
-rw-r--r-- | kcontrol/crypto/CMakeLists.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/kcontrol/crypto/CMakeLists.txt b/kcontrol/crypto/CMakeLists.txt index 4f0b43a48..9a7f9161d 100644 --- a/kcontrol/crypto/CMakeLists.txt +++ b/kcontrol/crypto/CMakeLists.txt @@ -16,7 +16,15 @@ option( WITH_SSL "Enable support for SSL" ON ) if( WITH_SSL ) pkg_search_module( SSL openssl ) if( NOT SSL_FOUND ) - tde_message_fatal( "SSL 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( HAVE_SSL 1 CACHE INTERNAL "" FORCE ) endif( WITH_SSL ) |