From 799933086a0daf95c3da854530d8e8cbdc8d244d Mon Sep 17 00:00:00 2001 From: Biryuzovye Kleshni Date: Wed, 27 Jun 2018 11:13:49 +0000 Subject: [PATCH] Downgrade OpenSSL version --- src/workprover/fastsolver/options.txt | 2 +- src/workprover/test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/workprover/fastsolver/options.txt b/src/workprover/fastsolver/options.txt index 69a53889..8db700c0 100644 --- a/src/workprover/fastsolver/options.txt +++ b/src/workprover/fastsolver/options.txt @@ -1 +1 @@ -/Ox /MD common.c winapi.c /link /DLL /OUT:libfastsolver.dll libcrypto.lib +/Ox /MD common.c winapi.c /link /DLL /OUT:libfastsolver.dll libeay32.lib diff --git a/src/workprover/test.py b/src/workprover/test.py index af18dea0..58b6df81 100755 --- a/src/workprover/test.py +++ b/src/workprover/test.py @@ -18,7 +18,7 @@ import utils codePath = os.path.dirname(__file__) if hasattr(sys, "winver"): - dumbsolver.libcrypto = ctypes.WinDLL("libcrypto.dll") + dumbsolver.libcrypto = ctypes.WinDLL("libeay32.dll") else: dumbsolver.libcrypto = ctypes.CDLL(ctypes.util.find_library("crypto"))