[pypy-commit] pypy py3k: start to pass pypy/module/_ssl tests on win32, may help translation too

mattip noreply at buildbot.pypy.org
Tue Apr 9 12:35:47 CEST 2013


Author: mattip <matti.picus at gmail.com>
Branch: py3k
Changeset: r63166:95c610ea4aed
Date: 2013-04-09 13:35 +0300
http://bitbucket.org/pypy/pypy/changeset/95c610ea4aed/

Log:	start to pass pypy/module/_ssl tests on win32, may help translation
	too

diff --git a/rpython/rlib/ropenssl.py b/rpython/rlib/ropenssl.py
--- a/rpython/rlib/ropenssl.py
+++ b/rpython/rlib/ropenssl.py
@@ -10,7 +10,7 @@
 testonly_libraries = []
 include_dirs = []
 if sys.platform == 'win32' and platform.name != 'mingw32':
-    libraries = ['libeay32', 'ssleay32',
+    libraries = ['libeay32', 'ssleay32', 'zlib',
                  'user32', 'advapi32', 'gdi32', 'msvcrt', 'ws2_32']
     includes = [
         # ssl.h includes winsock.h, which will conflict with our own


More information about the pypy-commit mailing list