changeset: 100298:82afdf5a8c7b branch: 3.5 user: Zachary Ware date: Mon Feb 22 04:08:51 2016 -0600 files: Misc/NEWS PCbuild/_hashlib.vcxproj PCbuild/_ssl.vcxproj PCbuild/get_externals.bat PCbuild/openssl.props PCbuild/python.props PCbuild/readme.txt description: Issue #26268: Update Windows builds to use OpenSSL 1.0.2f diff -r e1187d3204e9 -r 82afdf5a8c7b Misc/NEWS --- a/Misc/NEWS Mon Feb 22 04:02:30 2016 -0600 +++ b/Misc/NEWS Mon Feb 22 04:08:51 2016 -0600 @@ -258,7 +258,8 @@ - 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 -r e1187d3204e9 -r 82afdf5a8c7b PCbuild/_hashlib.vcxproj --- a/PCbuild/_hashlib.vcxproj Mon Feb 22 04:02:30 2016 -0600 +++ b/PCbuild/_hashlib.vcxproj Mon Feb 22 04:08:51 2016 -0600 @@ -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 -r e1187d3204e9 -r 82afdf5a8c7b PCbuild/_ssl.vcxproj --- a/PCbuild/_ssl.vcxproj Mon Feb 22 04:02:30 2016 -0600 +++ b/PCbuild/_ssl.vcxproj Mon Feb 22 04:08:51 2016 -0600 @@ -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 -r e1187d3204e9 -r 82afdf5a8c7b PCbuild/get_externals.bat --- a/PCbuild/get_externals.bat Mon Feb 22 04:02:30 2016 -0600 +++ b/PCbuild/get_externals.bat Mon Feb 22 04:08:51 2016 -0600 @@ -54,7 +54,7 @@ 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 -r e1187d3204e9 -r 82afdf5a8c7b PCbuild/openssl.props --- a/PCbuild/openssl.props Mon Feb 22 04:02:30 2016 -0600 +++ b/PCbuild/openssl.props Mon Feb 22 04:08:51 2016 -0600 @@ -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 @@ - \ No newline at end of file + diff -r e1187d3204e9 -r 82afdf5a8c7b PCbuild/python.props --- a/PCbuild/python.props Mon Feb 22 04:02:30 2016 -0600 +++ b/PCbuild/python.props Mon Feb 22 04:08:51 2016 -0600 @@ -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 -r e1187d3204e9 -r 82afdf5a8c7b PCbuild/readme.txt --- a/PCbuild/readme.txt Mon Feb 22 04:02:30 2016 -0600 +++ b/PCbuild/readme.txt Mon Feb 22 04:08:51 2016 -0600 @@ -169,7 +169,7 @@ 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/