fix lib name on ubuntu

This commit is contained in:
Adam D. Ruppe 2020-09-08 12:17:18 -04:00
parent 59d7a30734
commit 67b66bdd40
1 changed files with 8 additions and 4 deletions

12
http2.d
View File

@ -1793,15 +1793,19 @@ version(use_openssl) {
import core.stdc.stdio;
shared static this() {
version(Posix)
ossllib_handle = dlopen("libssl.so", RTLD_NOW);
else version(Windows) {
version(Posix) {
ossllib_handle = dlopen("libssl.so.1.1", RTLD_NOW);
if(ossllib_handle is null)
ossllib_handle = dlopen("libssl.so", RTLD_NOW);
} else version(Windows) {
ossllib_handle = LoadLibraryW("libssl32.dll"w.ptr);
oeaylib_handle = LoadLibraryW("libeay32.dll"w.ptr);
}
if(ossllib_handle is null)
throw new Exception("ssl fail open");
throw new Exception("libssl library not found");
if(oeaylib_handle is null)
throw new Exception("libeay32 library not found");
foreach(memberName; __traits(allMembers, ossllib)) {
alias t = typeof(__traits(getMember, ossllib, memberName));