this works on vce
diff --git a/setup.py b/setup.py
index 50809de..1c83e84 100755
--- a/setup.py
+++ b/setup.py
@@ -42,7 +42,7 @@
# Add more platforms here when needed
if os.name == 'nt' or sys.platform == 'win32':
- Libraries = ['eay32', 'Ws2_32']
+ Libraries = ['libeay32', 'ssleay32', 'Ws2_32']
# Try to find it...
for path in ["C:\\OpenSSL\\lib\\MinGW", "C:\\Python23\\libs",
"C:\\Python24\\libs", "C:\\Python25\\libs", "C:\\Python26\\libs"]:
@@ -50,7 +50,7 @@
# against to let us use the .dll.
ssleay32 = os.path.join(path, "ssleay32.a")
if os.path.exists(ssleay32):
- ExtraObjects = [ssleay32]
+ ExtraObjects = [] # ssleay32]
break
else:
raise SystemExit("Cannot find ssleay32.a, aborting")