We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 716fe86 commit db11db3Copy full SHA for db11db3
cmake/ssl.cmake
@@ -348,12 +348,12 @@ MACRO (MYSQL_CHECK_SSL)
348
ENDIF()
349
ENDMACRO()
350
351
-# Downgrade OpenSSL 3 deprecation warnings.
+# Silence OpenSSL 3 deprecation warnings.
352
MACRO(DOWNGRADE_OPENSSL3_DEPRECATION_WARNINGS)
353
IF(OPENSSL_MAJOR_VERSION VERSION_EQUAL 3)
354
IF(MY_COMPILER_IS_GNU_OR_CLANG)
355
ADD_COMPILE_FLAGS(${ARGV}
356
- COMPILE_FLAGS "-Wno-error=deprecated-declarations")
+ COMPILE_FLAGS "-Wno-deprecated-declarations")
357
ELSEIF(WIN32)
358
359
COMPILE_FLAGS "/wd4996")
0 commit comments