mirror of https://github.com/adamdruppe/arsd.git
try alternate library name
This commit is contained in:
parent
75baf2b591
commit
feb66fc4ef
5
http2.d
5
http2.d
|
@ -2667,6 +2667,11 @@ version(use_openssl) {
|
|||
} else version(Windows) {
|
||||
ossllib_handle = LoadLibraryW("libssl32.dll"w.ptr);
|
||||
oeaylib_handle = LoadLibraryW("libeay32.dll"w.ptr);
|
||||
|
||||
if(ossllib_handle is null) {
|
||||
ossllib_handle = LoadLibraryW("ssleay32.dll"w.ptr);
|
||||
oeaylib_handle = ossllib_handle;
|
||||
}
|
||||
}
|
||||
|
||||
if(ossllib_handle is null)
|
||||
|
|
Loading…
Reference in New Issue