mirror of https://github.com/adamdruppe/arsd.git
use the other common name for newer openssl
This commit is contained in:
parent
77c11d27a5
commit
2fb96cc507
14
http2.d
14
http2.d
|
@ -3069,12 +3069,14 @@ version(use_openssl) {
|
|||
if(ossllib_handle is null)
|
||||
ossllib_handle = dlopen("libssl.so", RTLD_NOW);
|
||||
} else version(Windows) {
|
||||
//ossllib_handle = LoadLibraryW("libssl-1_1-x64.dll"w.ptr);
|
||||
//if(ossllib_handle is null)
|
||||
ossllib_handle = LoadLibraryW("libssl32.dll"w.ptr);
|
||||
//oeaylib_handle = LoadLibraryW("libcrypto-1_1-x64.dll"w.ptr);
|
||||
//if(oeaylib_handle)
|
||||
oeaylib_handle = LoadLibraryW("libeay32.dll"w.ptr);
|
||||
version(X86_64)
|
||||
ossllib_handle = LoadLibraryW("libssl-1_1-x64.dll"w.ptr);
|
||||
if(ossllib_handle is null)
|
||||
ossllib_handle = LoadLibraryW("libssl32.dll"w.ptr);
|
||||
version(X86_64)
|
||||
oeaylib_handle = LoadLibraryW("libcrypto-1_1-x64.dll"w.ptr);
|
||||
if(oeaylib_handle is null)
|
||||
oeaylib_handle = LoadLibraryW("libeay32.dll"w.ptr);
|
||||
|
||||
if(ossllib_handle is null) {
|
||||
ossllib_handle = LoadLibraryW("ssleay32.dll"w.ptr);
|
||||
|
|
Loading…
Reference in New Issue