Openssl dll find patch to libeay32
This commit is contained in:
parent
042db64a00
commit
752dabe554
1 changed files with 3 additions and 2 deletions
|
@ -48,8 +48,9 @@ def getOpensslPath():
|
|||
|
||||
def patchCtypesOpensslFindLibrary():
|
||||
def findLibraryPatched(name):
|
||||
if name == "ssl" or name == "crypto":
|
||||
return getOpensslPath()
|
||||
if name in ("ssl", "crypto", "libeay32"):
|
||||
lib_path = getOpensslPath()
|
||||
return lib_path
|
||||
else:
|
||||
return find_library_original(name)
|
||||
|
||||
|
|
Loading…
Reference in a new issue