[pypy-commit] pypy release-1.8.x: I think those are libraries we need on windows for libssl

fijal noreply at buildbot.pypy.org
Thu Feb 9 17:34:37 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: release-1.8.x
Changeset: r52321:ef564984db64
Date: 2012-02-09 18:33 +0200
http://bitbucket.org/pypy/pypy/changeset/ef564984db64/

Log:	I think those are libraries we need on windows for libssl

diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py
--- a/pypy/tool/release/package.py
+++ b/pypy/tool/release/package.py
@@ -60,7 +60,8 @@
     if sys.platform == 'win32':
         # Can't rename a DLL: it is always called 'libpypy-c.dll'
         for extra in ['libpypy-c.dll',
-                      'libexpat.dll', 'sqlite3.dll', 'msvcr90.dll']:
+                      'libexpat.dll', 'sqlite3.dll', 'msvcr90.dll',
+                      'libeay32.dll', 'ssleay32.dll']:
             p = pypy_c.dirpath().join(extra)
             if not p.check():
                 p = py.path.local.sysfind(extra)


More information about the pypy-commit mailing list