summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2022-02-04 14:52:03 +0100
committerVladislav Vaintroub <wlad@mariadb.com>2022-07-04 12:49:11 +0200
commit1dc09ce0fdcf556dfc57de3f012a455c6d54a951 (patch)
tree22ef07837fd2640b8ee2a20c112460f85d1da6f7 /cmake
parent8a9c1e9ccf227e5f8ee9a4716a9b64665a8489e3 (diff)
downloadmariadb-git-1dc09ce0fdcf556dfc57de3f012a455c6d54a951.tar.gz
Revert "don't build with OpenSSL 3.0, it doesn't work before MDEV-25785"
This reverts commit c9beef43154a199bfcd9f71049c011a2ed77ca74, because we have OpenSSL 3.0 support here. part of MDEV-29000
Diffstat (limited to 'cmake')
-rw-r--r--cmake/ssl.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/ssl.cmake b/cmake/ssl.cmake
index f4c52c7eb1e..1bd46bc0f39 100644
--- a/cmake/ssl.cmake
+++ b/cmake/ssl.cmake
@@ -118,7 +118,7 @@ MACRO (MYSQL_CHECK_SSL)
ENDIF()
FIND_PACKAGE(OpenSSL)
SET_PACKAGE_PROPERTIES(OpenSSL PROPERTIES TYPE RECOMMENDED)
- IF(OPENSSL_FOUND AND OPENSSL_VERSION AND OPENSSL_VERSION VERSION_LESS "3.0.0")
+ IF(OPENSSL_FOUND)
SET(OPENSSL_LIBRARY ${OPENSSL_SSL_LIBRARY})
INCLUDE(CheckSymbolExists)
SET(SSL_SOURCES "")