Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 10c2dba

Browse files
committed
Issue #21141: The Windows build process no longer attempts to find Perl,
instead relying on OpenSSL source being configured and ready to build. The ``PCbuild\build_ssl.py`` script has been re-written and re-named to ``PCbuild\prepare_ssl.py``, and takes care of configuring OpenSSL source for both 32 and 64 bit platforms. OpenSSL sources obtained from svn.python.org will always be pre-configured and ready to build.
1 parent 983c106 commit 10c2dba

6 files changed

Lines changed: 290 additions & 308 deletions

File tree

Misc/NEWS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,13 @@ IDLE
354354
Build
355355
-----
356356

357+
- Issue #21141: The Windows build process no longer attempts to find Perl,
358+
instead relying on OpenSSL source being configured and ready to build. The
359+
``PCbuild\build_ssl.py`` script has been re-written and re-named to
360+
``PCbuild\prepare_ssl.py``, and takes care of configuring OpenSSL source
361+
for both 32 and 64 bit platforms. OpenSSL sources obtained from
362+
svn.python.org will always be pre-configured and ready to build.
363+
357364
- Issue #21037: Add a build option to enable AddressSanitizer support.
358365

359366
- The Windows build now includes OpenSSL 1.0.1g

PCbuild/build_ssl.py

Lines changed: 0 additions & 253 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
@echo off
22
if not defined HOST_PYTHON (
33
if %1 EQU Debug (
4+
shift
45
set HOST_PYTHON=python_d.exe
56
if not exist python35_d.dll exit 1
67
) ELSE (
78
set HOST_PYTHON=python.exe
89
if not exist python35.dll exit 1
910
)
1011
)
11-
%HOST_PYTHON% build_ssl.py %1 %2 %3
12-
12+
%HOST_PYTHON% prepare_ssl.py %1

0 commit comments

Comments
 (0)