mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
Merge pull request #1304 from Alxe/patch-1147
#1147 Load version-specific libcrypto and libssl shared libraries
This commit is contained in:
commit
477df7f6c1
@ -907,8 +907,22 @@ typedef unsigned short int in_port_t;
|
||||
#endif
|
||||
|
||||
#if defined(__MACH__) && defined(__APPLE__)
|
||||
#define SSL_LIB "libssl.dylib"
|
||||
#define CRYPTO_LIB "libcrypto.dylib"
|
||||
|
||||
#if defined(OPENSSL_API_3_0)
|
||||
#define SSL_LIB "libssl.3.dylib"
|
||||
#define CRYPTO_LIB "libcrypto.3.dylib"
|
||||
#endif
|
||||
|
||||
#if defined(OPENSSL_API_1_1)
|
||||
#define SSL_LIB "libssl.1.1.dylib"
|
||||
#define CRYPTO_LIB "libcrypto.1.1.dylib"
|
||||
#endif /* OPENSSL_API_1_1 */
|
||||
|
||||
#if defined(OPENSSL_API_1_0)
|
||||
#define SSL_LIB "libssl.1.0.dylib"
|
||||
#define CRYPTO_LIB "libcrypto.1.0.dylib"
|
||||
#endif /* OPENSSL_API_1_0 */
|
||||
|
||||
#else
|
||||
#if !defined(SSL_LIB)
|
||||
#define SSL_LIB "libssl.so"
|
||||
|
Loading…
x
Reference in New Issue
Block a user