From f1b8742782d575369162f873d9174cae1eb23fae Mon Sep 17 00:00:00 2001 From: redfish Date: Sun, 11 Feb 2018 13:14:12 -0500 Subject: [PATCH] cmake: remove warning for OpenSSL 1.1 Works fine. --- build/CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build/CMakeLists.txt b/build/CMakeLists.txt index bc80423a..3de55b47 100644 --- a/build/CMakeLists.txt +++ b/build/CMakeLists.txt @@ -324,10 +324,6 @@ endif() find_package ( OpenSSL REQUIRED ) if(NOT DEFINED OPENSSL_INCLUDE_DIR) message(SEND_ERROR "Could not find OpenSSL. Please download and install it first!") -else() - if(NOT (OPENSSL_VERSION VERSION_LESS 1.1)) - message(WARNING "Your OpenSSL version ${OPENSSL_VERSION} >=1.1 is experimental: build with v1.0 when possible.") - endif() endif() if (WITH_UPNP)