[pypy-commit] pypy win32-cleanup: remove improper link flag

mattip noreply at buildbot.pypy.org
Mon Feb 6 22:57:25 CET 2012


Author: mattip
Branch: win32-cleanup
Changeset: r52150:f42334abe866
Date: 2012-02-06 23:56 +0200
http://bitbucket.org/pypy/pypy/changeset/f42334abe866/

Log:	remove improper link flag

diff --git a/pypy/rlib/ropenssl.py b/pypy/rlib/ropenssl.py
--- a/pypy/rlib/ropenssl.py
+++ b/pypy/rlib/ropenssl.py
@@ -7,7 +7,7 @@
 
 if sys.platform == 'win32' and platform.name != 'mingw32':
     libraries = ['libeay32', 'ssleay32',
-                 'user32', 'advapi32', 'gdi32', 'msvcrt', 'ws2_32', 'zlib']
+                 'user32', 'advapi32', 'gdi32', 'msvcrt', 'ws2_32']
     includes = [
         # ssl.h includes winsock.h, which will conflict with our own
         # need of winsock2.  Remove this when separate compilation is


More information about the pypy-commit mailing list