From feb66fc4ef8319540b0d2e9868d4eb61a31efcf7 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 18 Sep 2021 07:33:29 -0400 Subject: [PATCH] try alternate library name --- http2.d | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http2.d b/http2.d index ecd7447..fef0519 100644 --- a/http2.d +++ b/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)