[pypy-commit] pypy default: update windows to openssl-1.0.1i, revert build instructions to simplify

mattip noreply at buildbot.pypy.org
Fri Aug 22 11:01:29 CEST 2014


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r72957:14fbd80309d0
Date: 2014-08-22 12:01 +0300
http://bitbucket.org/pypy/pypy/changeset/14fbd80309d0/

Log:	update windows to openssl-1.0.1i, revert build instructions to
	simplify

diff --git a/pypy/doc/windows.rst b/pypy/doc/windows.rst
--- a/pypy/doc/windows.rst
+++ b/pypy/doc/windows.rst
@@ -175,14 +175,14 @@
 The OpenSSL library
 ~~~~~~~~~~~~~~~~~~~
 
-OpenSSL is complicated to build. CPython uses a build script, since we
-strive for cpython compatability this script is the easiest way to get the
-correct version and build options. As of CPython 3.4, the script is available
-at http://hg.python.org/cpython/file/30e8a8f22a2a/PCbuild/build_ssl.py
+OpenSSL needs a Perl interpreter to configure its makefile.  You may
+use the one distributed by ActiveState, or the one from cygwin.::
 
-    svn export http://svn.python.org/projects/external/openssl-1.0.1h
-    cd openssl-1.0.1h
-    python build_ssl.py Release Win32
+    svn export http://svn.python.org/projects/external/openssl-1.0.1i
+    cd openssl-1.0.1i
+    perl Configure VC-WIN32 no-idea no-mdc2
+    ms\do_ms.bat
+    nmake -f ms\nt.mak install
 
 Then, copy the files ``out32\*.lib`` somewhere in
 somewhere in LIB, and the entire ``include\openssl`` directory as-is somewhere


More information about the pypy-commit mailing list