aboutsummaryrefslogtreecommitdiff
path: root/cmake/macros/FindOpenSSL.cmake
diff options
context:
space:
mode:
authorAokromes <Aokromes@users.noreply.github.com>2016-09-11 16:25:47 +0200
committerGitHub <noreply@github.com>2016-09-11 16:25:47 +0200
commit3772561ae43cb8474f2d028f24ec665f7da3fbed (patch)
tree75a70f0e62440c5ba18f1721904c4781cb1d242e /cmake/macros/FindOpenSSL.cmake
parent5c92f5ba5e3422ccd2f75233f762962c7270c90a (diff)
Cmake: Clarify OpenSSL version required
Diffstat (limited to 'cmake/macros/FindOpenSSL.cmake')
-rw-r--r--cmake/macros/FindOpenSSL.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/macros/FindOpenSSL.cmake b/cmake/macros/FindOpenSSL.cmake
index d495f1ed2a4..5414c28467a 100644
--- a/cmake/macros/FindOpenSSL.cmake
+++ b/cmake/macros/FindOpenSSL.cmake
@@ -223,7 +223,7 @@ if (OPENSSL_INCLUDE_DIR)
include(EnsureVersion)
ENSURE_VERSION_RANGE("${OPENSSL_EXPECTED_VERSION}" "${OPENSSL_VERSION}" "${OPENSSL_MAX_VERSION}" OPENSSL_VERSION_OK)
if (NOT OPENSSL_VERSION_OK)
- message(FATAL_ERROR "TrinityCore needs OpenSSL version ${OPENSSL_EXPECTED_VERSION} but found version ${OPENSSL_VERSION}")
+ message(FATAL_ERROR "TrinityCore needs OpenSSL version ${OPENSSL_EXPECTED_VERSION} but found to new version ${OPENSSL_VERSION}. Any version different to 1.0.x breaks TrinityCore compatibility (and we cannot fix this). Please install OpenSSL 1.0.x")
endif()
endif (OPENSSL_INCLUDE_DIR)