mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Ignore openssl3 deprecation warnings
Ignore openssl3 MD5 low level function deprecation warnings, for now.
This commit is contained in:
parent
5aeab22a94
commit
04b42bd7b3
@ -163,6 +163,9 @@ endif()
|
|||||||
|
|
||||||
if(USE_OPENSSL_MD5)
|
if(USE_OPENSSL_MD5)
|
||||||
list(APPEND LXW_PRIVATE_COMPILE_DEFINITIONS USE_OPENSSL_MD5)
|
list(APPEND LXW_PRIVATE_COMPILE_DEFINITIONS USE_OPENSSL_MD5)
|
||||||
|
if(NOT MSVC)
|
||||||
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations")
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(USE_MEM_FILE OR USE_FMEMOPEN)
|
if(USE_MEM_FILE OR USE_FMEMOPEN)
|
||||||
|
@ -49,7 +49,7 @@ ifdef USE_NO_MD5
|
|||||||
CFLAGS += -DUSE_NO_MD5
|
CFLAGS += -DUSE_NO_MD5
|
||||||
else
|
else
|
||||||
ifdef USE_OPENSSL_MD5
|
ifdef USE_OPENSSL_MD5
|
||||||
CFLAGS += -DUSE_OPENSSL_MD5
|
CFLAGS += -DUSE_OPENSSL_MD5 -Wno-deprecated-declarations
|
||||||
LIBS += -lcrypto
|
LIBS += -lcrypto
|
||||||
else
|
else
|
||||||
# Use md5 (the default).
|
# Use md5 (the default).
|
||||||
|
Loading…
x
Reference in New Issue
Block a user