OpenSSL: 32bit DLL names on Windows lack the -x32 suffix

This commit is contained in:
Araq
2018-02-09 16:47:30 +01:00
parent b565c0234c
commit 7b2b0ebf7f

View File

@@ -33,8 +33,8 @@ when useWinVersion:
DLLUtilName* = "(libcrypto-1_1-x64|libeay64).dll"
else:
const
DLLSSLName* = "(libssl-1_1-x32|ssleay32|libssl32).dll"
DLLUtilName* = "(libcrypto-1_1-x32|libeay32).dll"
DLLSSLName* = "(libssl-1_1|ssleay32|libssl32).dll"
DLLUtilName* = "(libcrypto-1_1|libeay32).dll"
from winlean import SocketHandle
else: