mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 12:24:19 +00:00
cmake: check openssl version
See #835 for memory leak issues with OpenSSL >= 1.1
This commit is contained in:
parent
4d23de96d5
commit
94bba69dee
@ -322,6 +322,10 @@ endif()
|
|||||||
find_package ( OpenSSL REQUIRED )
|
find_package ( OpenSSL REQUIRED )
|
||||||
if(NOT DEFINED OPENSSL_INCLUDE_DIR)
|
if(NOT DEFINED OPENSSL_INCLUDE_DIR)
|
||||||
message(SEND_ERROR "Could not find OpenSSL. Please download and install it first!")
|
message(SEND_ERROR "Could not find OpenSSL. Please download and install it first!")
|
||||||
|
else()
|
||||||
|
if(NOT (OPENSSL_VERSION VERSION_LESS 1.1))
|
||||||
|
message(SEND_ERROR "Unsupported OpenSSL version: ${OPENSSL_VERSION} (required < 1.1)")
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (WITH_UPNP)
|
if (WITH_UPNP)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user