mirror of
https://github.com/python/cpython.git
synced 2024-12-14 12:26:47 +08:00
10c2dba8b2
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.
13 lines
258 B
Batchfile
13 lines
258 B
Batchfile
@echo off
|
|
if not defined HOST_PYTHON (
|
|
if %1 EQU Debug (
|
|
shift
|
|
set HOST_PYTHON=python_d.exe
|
|
if not exist python35_d.dll exit 1
|
|
) ELSE (
|
|
set HOST_PYTHON=python.exe
|
|
if not exist python35.dll exit 1
|
|
)
|
|
)
|
|
%HOST_PYTHON% prepare_ssl.py %1
|