summaryrefslogtreecommitdiffstats
path: root/PCbuild/prepare_ssl.bat
diff options
context:
space:
mode:
authorPaul Monson <paulmon@users.noreply.github.com>2019-05-15 22:38:55 (GMT)
committerSteve Dower <steve.dower@python.org>2019-05-15 22:38:55 (GMT)
commitfb7e7505ed1337bf40fa7b8b68317d1e86675a86 (patch)
tree5448f7cb8bf06f7b6c04012c1903c8934f761fd0 /PCbuild/prepare_ssl.bat
parentd9e006bcefe6fac859b1b5d741725b9a91991044 (diff)
downloadcpython-fb7e7505ed1337bf40fa7b8b68317d1e86675a86.zip
cpython-fb7e7505ed1337bf40fa7b8b68317d1e86675a86.tar.gz
cpython-fb7e7505ed1337bf40fa7b8b68317d1e86675a86.tar.bz2
bpo-35926: Add support for OpenSSL 1.1.1b on Windows (GH-11779)
Diffstat (limited to 'PCbuild/prepare_ssl.bat')
-rw-r--r--PCbuild/prepare_ssl.bat6
1 files changed, 5 insertions, 1 deletions
diff --git a/PCbuild/prepare_ssl.bat b/PCbuild/prepare_ssl.bat
index bd4b548..88fd022 100644
--- a/PCbuild/prepare_ssl.bat
+++ b/PCbuild/prepare_ssl.bat
@@ -42,7 +42,7 @@ if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable &
call "%PCBUILD%\find_python.bat" "%PYTHON%"
if ERRORLEVEL 1 (echo Cannot locate python.exe on PATH or as PYTHON variable & exit /b 3)
-call "%PCBUILD%\get_externals.bat" --openssl-src %ORG_SETTING%
+call "%PCBUILD%\get_externals.bat" --openssl-src --no-openssl %ORG_SETTING%
if "%PERL%" == "" where perl > "%TEMP%\perl.loc" 2> nul && set /P PERL= <"%TEMP%\perl.loc" & del "%TEMP%\perl.loc"
if "%PERL%" == "" (echo Cannot locate perl.exe on PATH or as PERL variable & exit /b 4)
@@ -51,4 +51,8 @@ if "%PERL%" == "" (echo Cannot locate perl.exe on PATH or as PERL variable & exi
if errorlevel 1 exit /b
%MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=x64
if errorlevel 1 exit /b
+%MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=ARM
+if errorlevel 1 exit /b
+%MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=ARM64
+if errorlevel 1 exit /b