changeset: 100296:3be29e684ccf branch: 2.7 user: Zachary Ware date: Mon Feb 22 04:08:30 2016 -0600 files: Misc/NEWS PC/VS9.0/pyproject.vsprops PC/VS9.0/readme.txt 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 27a140558a47 -r 3be29e684ccf Misc/NEWS --- a/Misc/NEWS Mon Feb 22 10:10:00 2016 +0000 +++ b/Misc/NEWS Mon Feb 22 04:08:30 2016 -0600 @@ -148,6 +148,8 @@ - Issue #26268: Update OS X 10.5+ 32-bit-only installer to build and link with OpenSSL 1.0.2f. +- Issue #26268: Update Windows builds to use OpenSSL 1.0.2f. + What's New in Python 2.7.11? ============================ diff -r 27a140558a47 -r 3be29e684ccf PC/VS9.0/pyproject.vsprops --- a/PC/VS9.0/pyproject.vsprops Mon Feb 22 10:10:00 2016 +0000 +++ b/PC/VS9.0/pyproject.vsprops Mon Feb 22 04:08:30 2016 -0600 @@ -82,7 +82,7 @@ /> - $(opensslDir)include;%(AdditionalIncludeDirectories) + $(opensslIncludeDir);%(AdditionalIncludeDirectories) ws2_32.lib;$(OutDir)libeay$(PyDebugExt).lib;$(OutDir)ssleay$(PyDebugExt).lib;%(AdditionalDependencies) diff -r 27a140558a47 -r 3be29e684ccf PCbuild/_ssl.vcxproj --- a/PCbuild/_ssl.vcxproj Mon Feb 22 10:10:00 2016 +0000 +++ b/PCbuild/_ssl.vcxproj Mon Feb 22 04:08:30 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) diff -r 27a140558a47 -r 3be29e684ccf PCbuild/get_externals.bat --- a/PCbuild/get_externals.bat Mon Feb 22 10:10:00 2016 +0000 +++ b/PCbuild/get_externals.bat Mon Feb 22 04:08:30 2016 -0600 @@ -58,7 +58,7 @@ set libraries=%libraries% bzip2-1.0.6 if NOT "%IncludeBsddb%"=="false" set libraries=%libraries% db-4.7.25.0 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.6.21 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tcl-8.5.15.0 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tk-8.5.15.0 diff -r 27a140558a47 -r 3be29e684ccf PCbuild/openssl.props --- a/PCbuild/openssl.props Mon Feb 22 10:10:00 2016 +0000 +++ b/PCbuild/openssl.props Mon Feb 22 04:08:30 2016 -0600 @@ -15,9 +15,8 @@ - + - @@ -51,7 +50,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) diff -r 27a140558a47 -r 3be29e684ccf PCbuild/python.props --- a/PCbuild/python.props Mon Feb 22 10:10:00 2016 +0000 +++ b/PCbuild/python.props Mon Feb 22 04:08:30 2016 -0600 @@ -35,7 +35,9 @@ $(ExternalsDir)sqlite-3.6.21\ $(ExternalsDir)bzip2-1.0.6\ $(ExternalsDir)db-4.7.25.0 - $(ExternalsDir)openssl-1.0.2d\ + $(ExternalsDir)openssl-1.0.2f\ + $(opensslDir)include32 + $(opensslDir)include64 $(ExternalsDir)\nasm-2.11.06\ diff -r 27a140558a47 -r 3be29e684ccf PCbuild/readme.txt --- a/PCbuild/readme.txt Mon Feb 22 10:10:00 2016 +0000 +++ b/PCbuild/readme.txt Mon Feb 22 04:08:30 2016 -0600 @@ -183,7 +183,7 @@ Homepage: http://www.bzip.org/ _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/