diff options
author | Sergei Golubchik <serg@mariadb.org> | 2017-08-13 23:47:26 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-08-13 23:47:26 +0200 |
commit | a4c882f0e51cf0792f62f985e1bfea1c884dc6f3 (patch) | |
tree | 8286e1ee42845e27ad66c0db9ceae0a549af3ddb /cmake/ssl.cmake | |
parent | 1ff65c271ff3edef5ccba72141047fda19170163 (diff) | |
download | mariadb-git-a4c882f0e51cf0792f62f985e1bfea1c884dc6f3.tar.gz |
allow OpenSSL 0.9.8 again
this disables the check, added in d937916c06
Applications shouldn't police OpenSSL versions that users are using.
And 0.9.8 on Mac OS X seems to have new fixes, despite being "0.9.8"
Diffstat (limited to 'cmake/ssl.cmake')
-rw-r--r-- | cmake/ssl.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/ssl.cmake b/cmake/ssl.cmake index 5c202230c8b..18728c733db 100644 --- a/cmake/ssl.cmake +++ b/cmake/ssl.cmake @@ -181,7 +181,7 @@ MACRO (MYSQL_CHECK_SSL) ) MESSAGE(STATUS "OPENSSL_MAJOR_VERSION = ${OPENSSL_MAJOR_VERSION}") ENDIF() - IF(OPENSSL_MAJOR_VERSION GREATER 0) + IF(TRUE) #OPENSSL_MAJOR_VERSION GREATER 0) SET(SSL_SOURCES "") SET(SSL_LIBRARIES ${OPENSSL_LIBRARIES} ${CRYPTO_LIBRARY}) IF(CMAKE_SYSTEM_NAME MATCHES "SunOS") |