Skip to content

Commit e6ea56b

Browse files
committed
lib: silence LibreSSL collision warning on non-MSVC Windows
LibreSSL headers emit this warning because we included `wincrypt.h` before them. We have to include `wincrypt.h` before OpenSSL headers to avoid symbol collisions when using other forks. LibreSSL 3.8.2+ offers a macro to silence its warnings to avoid this issue. This patch sets it. This allows to stop setting this macro in curl-for-win builds. Warnings seen with MinGW with cmake non-unity (also unity batch=30): ``` [156/219] Building C object lib/CMakeFiles/libcurl_object.dir/vtls/openssl.c.obj In file included from lib/vtls/openssl.h:35, from lib/vtls/openssl.c:53: dep/libressl-win-x64/include/openssl/ossl_typ.h:90:2: warning: #warning overriding WinCrypt defines [-Wcpp] 90 | #warning overriding WinCrypt defines | ^~~~~~~ In file included from dep/libressl-win-x64/include/openssl/pem.h:71, from dep/libressl-win-x64/include/openssl/ssl.h:151, from lib/vtls/openssl.h:36: dep/libressl-win-x64/include/openssl/x509.h:108:2: warning: #warning overriding WinCrypt defines [-Wcpp] 108 | #warning overriding WinCrypt defines | ^~~~~~~ In file included from dep/libressl-win-x64/include/openssl/x509.h:319: dep/libressl-win-x64/include/openssl/pkcs7.h:77:2: warning: #warning overriding WinCrypt defines [-Wcpp] 77 | #warning overriding WinCrypt defines | ^~~~~~~ ``` Ref: libressl/portable#910 Ref: libressl/portable#924 Ref: libressl/portable@e7fe6ca Ref: curl/curl-for-win@760ccfc Closes #16273
1 parent 89ed161 commit e6ea56b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

lib/curl_setup.h

+8-2
Original file line numberDiff line numberDiff line change
@@ -985,10 +985,16 @@ int getpwuid_r(uid_t uid, struct passwd *pwd, char *buf,
985985
# endif
986986
#endif
987987

988+
#ifdef USE_OPENSSL
988989
/* OpenSSLv3 marks DES, MD5 and ENGINE functions deprecated but we have no
989990
replacements (yet) so tell the compiler to not warn for them. */
990-
#ifdef USE_OPENSSL
991-
#define OPENSSL_SUPPRESS_DEPRECATED
991+
# define OPENSSL_SUPPRESS_DEPRECATED
992+
# ifdef _WIN32
993+
/* Silence LibreSSL warnings about wincrypt.h collision. Works in 3.8.2+ */
994+
# ifndef LIBRESSL_DISABLE_OVERRIDE_WINCRYPT_DEFINES_WARNING
995+
# define LIBRESSL_DISABLE_OVERRIDE_WINCRYPT_DEFINES_WARNING
996+
# endif
997+
# endif
992998
#endif
993999

9941000
#if defined(CURL_INLINE)

0 commit comments

Comments
 (0)