Skip to content

Commit

Permalink
allow OpenSSL 0.9.8 again
Browse files Browse the repository at this point in the history
this disables the check, added in d937916

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"
  • Loading branch information
vuvova committed Aug 13, 2017
1 parent 1ff65c2 commit a4c882f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/ssl.cmake
Expand Up @@ -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")
Expand Down

0 comments on commit a4c882f

Please sign in to comment.