mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00

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.
12 lines
258 B
Batchfile
12 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
|