From 6fe57ad229d46516c1ead1d37c015824b2428746 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Mon, 22 Feb 2016 04:08:51 -0600 Subject: Issue #26268: Update Windows builds to use OpenSSL 1.0.2f --- Misc/NEWS | 3 ++- PCbuild/_hashlib.vcxproj | 4 ++-- PCbuild/_ssl.vcxproj | 4 ++-- PCbuild/get_externals.bat | 2 +- PCbuild/openssl.props | 7 +++---- PCbuild/python.props | 4 +++- PCbuild/readme.txt | 2 +- 7 files changed, 14 insertions(+), 12 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index 53dbcce..6155edd 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -258,7 +258,8 @@ Build - Issue #25696: Fix installation of Python on UNIX with make -j9. -- Issue #26268: Update OS X 10.5 installer to use OpenSSL 1.0.2f. +- Issue #26268: Update OS X 10.5 installer and Windows builds to use + OpenSSL 1.0.2f. Windows ------- diff --git a/PCbuild/_hashlib.vcxproj b/PCbuild/_hashlib.vcxproj index d82b266..5616a1e 100644 --- a/PCbuild/_hashlib.vcxproj +++ b/PCbuild/_hashlib.vcxproj @@ -61,7 +61,7 @@ - $(opensslDir)include;%(AdditionalIncludeDirectories) + $(opensslIncludeDir);%(AdditionalIncludeDirectories) ws2_32.lib;$(OutDir)libeay$(PyDebugExt).lib;$(OutDir)ssleay$(PyDebugExt).lib;%(AdditionalDependencies) @@ -87,4 +87,4 @@ - \ No newline at end of file + diff --git a/PCbuild/_ssl.vcxproj b/PCbuild/_ssl.vcxproj index 8594a06..73c9571 100644 --- a/PCbuild/_ssl.vcxproj +++ b/PCbuild/_ssl.vcxproj @@ -61,7 +61,7 @@ - $(opensslDir)include;%(AdditionalIncludeDirectories) + $(opensslIncludeDir);%(AdditionalIncludeDirectories) ws2_32.lib;crypt32.lib;$(OutDir)libeay$(PyDebugExt).lib;$(OutDir)ssleay$(PyDebugExt).lib;%(AdditionalDependencies) @@ -91,4 +91,4 @@ - \ No newline at end of file + diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat index 0b3c08b..f6ed070 100644 --- a/PCbuild/get_externals.bat +++ b/PCbuild/get_externals.bat @@ -54,7 +54,7 @@ echo.Fetching external libraries... set libraries= set libraries=%libraries% bzip2-1.0.6 if NOT "%IncludeSSL%"=="false" set libraries=%libraries% nasm-2.11.06 -if NOT "%IncludeSSL%"=="false" set libraries=%libraries% openssl-1.0.2d +if NOT "%IncludeSSL%"=="false" set libraries=%libraries% openssl-1.0.2f set libraries=%libraries% sqlite-3.8.11.0 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tcl-core-8.6.4.2 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tk-8.6.4.2 diff --git a/PCbuild/openssl.props b/PCbuild/openssl.props index d094e59..e35c0d9 100644 --- a/PCbuild/openssl.props +++ b/PCbuild/openssl.props @@ -17,9 +17,8 @@ - + - @@ -53,7 +52,7 @@ 4244;4267 - $(opensslDir);$(opensslDir)include;$(opensslDir)crypto;$(opensslDir)crypto\asn1;$(opensslDir)crypto\evp;$(opensslDir)crypto\modes + $(opensslDir);$(opensslIncludeDir);$(opensslDir)crypto;$(opensslDir)crypto\asn1;$(opensslDir)crypto\evp;$(opensslDir)crypto\modes $(_PreprocessorDefinitionList);%(PreprocessorDefinitions) @@ -74,4 +73,4 @@ $(nasm) -o "$(IntDir)%(NasmCompile.Filename).obj" "%(NasmCompile.FullPath)"' /> - \ No newline at end of file + diff --git a/PCbuild/python.props b/PCbuild/python.props index 4d8f603..8ad9a89 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -41,7 +41,9 @@ $(ExternalsDir)sqlite-3.8.11.0\ $(ExternalsDir)bzip2-1.0.6\ $(ExternalsDir)xz-5.0.5\ - $(ExternalsDir)openssl-1.0.2d\ + $(ExternalsDir)openssl-1.0.2f\ + $(opensslDir)include32 + $(opensslDir)include64 $(ExternalsDir)\nasm-2.11.06\ diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt index 09a996f..78ee0f9 100644 --- a/PCbuild/readme.txt +++ b/PCbuild/readme.txt @@ -169,7 +169,7 @@ _lzma Homepage: http://tukaani.org/xz/ _ssl - Python wrapper for version 1.0.2d of the OpenSSL secure sockets + Python wrapper for version 1.0.2f of the OpenSSL secure sockets library, which is built by ssl.vcxproj Homepage: http://www.openssl.org/ -- cgit v0.12