Merge pull request #1560 from Threak/master
Try new openssl library name
This commit is contained in:
commit
01c654cb68
|
@ -115,6 +115,8 @@ if iswindows:
|
|||
|
||||
def _load_crypto_libcrypto():
|
||||
from ctypes.util import find_library
|
||||
libcrypto = find_library('libcrypto-1_1')
|
||||
if libcrypto is None:
|
||||
libcrypto = find_library('libeay32')
|
||||
if libcrypto is None:
|
||||
raise ADEPTError('libcrypto not found')
|
||||
|
|
Loading…
Reference in New Issue