From 3407dfbaf90d1445af66266663fe0615ab0d6003 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Fri, 18 May 2012 15:28:01 +0200 Subject: [PATCH 1/2] Upgrade OpenSSL to 1.0.0j --- Misc/NEWS | 2 ++ PC/VC6/readme.txt | 5 ++--- PC/VS8.0/pyproject.vsprops | 2 +- PCbuild/pyproject.vsprops | 2 +- PCbuild/readme.txt | 2 +- Tools/buildbot/external-common.bat | 4 ++-- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index 08d21f78b69..565db1bd24b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -235,6 +235,8 @@ Tests Build ----- +- The Windows build now uses OpenSSL 1.0.0j and bzip2 1.0.6. + - Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban. - Issue #14437: Fix building the _io module under Cygwin. diff --git a/PC/VC6/readme.txt b/PC/VC6/readme.txt index 7e85c96fe51..fa1ae7db180 100644 --- a/PC/VC6/readme.txt +++ b/PC/VC6/readme.txt @@ -153,10 +153,9 @@ _ssl Unpack into the "dist" directory, retaining the folder name from the archive - for example, the latest stable OpenSSL will install as - dist/openssl-1.0.0a + dist/openssl-1.0.0j - You can (theoretically) use any version of OpenSSL you like - the - build process will automatically select the latest version. + You need to use version 1.0.0j of OpenSSL. You can install the NASM assembler from http://www.nasm.us/ diff --git a/PC/VS8.0/pyproject.vsprops b/PC/VS8.0/pyproject.vsprops index 763f6878d87..2a82e4962cb 100644 --- a/PC/VS8.0/pyproject.vsprops +++ b/PC/VS8.0/pyproject.vsprops @@ -58,7 +58,7 @@ /> Date: Fri, 18 May 2012 15:28:43 +0200 Subject: [PATCH 2/2] Drop double quoting again. I'm at a loss when to quote and when not. --- PCbuild/build_ssl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py index 04ad77bf44b..938812494a4 100644 --- a/PCbuild/build_ssl.py +++ b/PCbuild/build_ssl.py @@ -46,7 +46,7 @@ def find_all_on_path(filename, extras = None): # is available. def find_working_perl(perls): for perl in perls: - fh = os.popen('""%s" -e "use Win32;""' % perl) + fh = os.popen('"%s" -e "use Win32;"' % perl) fh.read() rc = fh.close() if rc: