Skip to content

Commit 4824385

Browse files
authored
bpo-35401: Update Windows build to OpenSSL 1.1.0j (GH-11088)
1 parent 0cd6391 commit 4824385

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Updates Windows build to OpenSSL 1.1.0j

‎PCbuild/get_externals.bat‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ echo.Fetching external libraries...
4949

5050
set libraries=
5151
set libraries=%libraries% bzip2-1.0.6
52-
if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-1.1.0i
52+
if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-1.1.0j
5353
set libraries=%libraries% sqlite-3.21.0.0
5454
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.8.0
5555
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.8.0
@@ -72,7 +72,7 @@ for %%e in (%libraries%) do (
7272
echo.Fetching external binaries...
7373

7474
set binaries=
75-
if NOT "%IncludeSSL%"=="false" set binaries=%binaries% openssl-bin-1.1.0i
75+
if NOT "%IncludeSSL%"=="false" set binaries=%binaries% openssl-bin-1.1.0j
7676
if NOT "%IncludeTkinter%"=="false" set binaries=%binaries% tcltk-8.6.8.0
7777
if NOT "%IncludeSSLSrc%"=="false" set binaries=%binaries% nasm-2.11.06
7878

‎PCbuild/prepare_ssl.bat‎

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,19 @@ setlocal
2323
if "%PCBUILD%"=="" (set PCBUILD=%~dp0)
2424
if "%EXTERNALS_DIR%"=="" (set EXTERNALS_DIR=%PCBUILD%\..\externals)
2525

26-
set OUT=
27-
set SRC=
2826
set ORG_SETTING=
2927

3028
:CheckOpts
3129
if "%~1"=="-h" shift & goto Usage
3230
if "%~1"=="--certificate" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts
3331
if "%~1"=="-c" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts
3432
if "%~1"=="--organization" (set ORG_SETTING=--organization "%~2") && shift && shift && goto CheckOpts
35-
if "%~1"=="-i" (SET SRC=$~2) && shift && shift && goto CheckOpts
36-
if "%~1"=="--in" (SET SRC=$~2) && shift && shift && goto CheckOpts
37-
if "%~1"=="-o" (set OUT=$~2) && shift && shift && goto CheckOpts
38-
if "%~1"=="--out" (set OUT=$~2) && shift && shift && goto CheckOpts
3933

4034
if "%~1"=="" goto Build
4135
echo Unrecognized option: %1
4236
goto Usage
4337

4438
:Build
45-
if not defined SRC (echo --in directory is required & exit /b 1)
46-
if not defined OUT (echo --out directory is required & exit /b 1)
47-
4839
call "%PCBUILD%\find_msbuild.bat" %MSBUILD%
4940
if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
5041

‎PCbuild/python.props‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
<sqlite3Dir>$(ExternalsDir)sqlite-3.21.0.0\</sqlite3Dir>
5050
<bz2Dir>$(ExternalsDir)bzip2-1.0.6\</bz2Dir>
5151
<lzmaDir>$(ExternalsDir)xz-5.2.2\</lzmaDir>
52-
<opensslDir>$(ExternalsDir)openssl-1.1.0i\</opensslDir>
53-
<opensslOutDir>$(ExternalsDir)openssl-bin-1.1.0i\$(ArchName)\</opensslOutDir>
52+
<opensslDir>$(ExternalsDir)openssl-1.1.0j\</opensslDir>
53+
<opensslOutDir>$(ExternalsDir)openssl-bin-1.1.0j\$(ArchName)\</opensslOutDir>
5454
<opensslIncludeDir>$(opensslOutDir)include</opensslIncludeDir>
5555
<nasmDir>$(ExternalsDir)\nasm-2.11.06\</nasmDir>
5656
<zlibDir>$(ExternalsDir)\zlib-1.2.11\</zlibDir>

0 commit comments

Comments
 (0)