Skip to content

Commit 4b6807d

Browse files
committed
Issue #23686: Update Windows build to use OpenSSL 1.0.2a
1 parent 4ca10e4 commit 4b6807d

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

Misc/NEWS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ Build
248248
- Issue #23032: Fix installer build failures on OS X 10.4 Tiger
249249
by disabling assembly code in the OpenSSL build.
250250

251-
- Issue #23686: Update OS X 10.5 installer build to use OpenSSL 1.0.2a.
251+
- Issue #23686: Update OS X 10.5 installer and Windows builds to use
252+
OpenSSL 1.0.2a.
252253

253254
C API
254255
-----

PCbuild/pyproject.vsprops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
/>
8383
<UserMacro
8484
Name="opensslDir"
85-
Value="$(externalsDir)\openssl-1.0.1l"
85+
Value="$(externalsDir)\openssl-1.0.2a"
8686
/>
8787
<UserMacro
8888
Name="tcltkDir"

PCbuild/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ _ssl
132132

133133
Get the source code through
134134

135-
svn export http://svn.python.org/projects/external/openssl-1.0.1j
135+
svn export http://svn.python.org/projects/external/openssl-1.0.2a
136136

137137
** NOTE: if you use the Tools\buildbot\external(-amd64).bat approach for
138138
obtaining external sources then you don't need to manually get the source

Tools/buildbot/external-common.bat

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ cd externals
2929
@rem if exist openssl-1.0.1i rd /s/q openssl-1.0.1i
3030
@rem if exist openssl-1.0.1j rd /s/q openssl-1.0.1j
3131
@rem if exist openssl-1.0.1l rd /s/q openssl-1.0.1l
32+
@rem if exist openssl-1.0.2a rd /s/q openssl-1.0.2a
3233
@rem if exist sqlite-3.6.21 rd /s/q sqlite-3.6.21
3334

3435
@rem bzip
@@ -46,8 +47,8 @@ if not exist db-4.7.25.0 svn export %SVNROOT%db-4.7.25.0
4647
if not exist nasm-2.11.06 svn export %SVNROOT%nasm-2.11.06
4748

4849
@rem OpenSSL
49-
if exist openssl-1.0.1j rd /s/q openssl-1.0.1j
50-
if not exist openssl-1.0.1l svn export %SVNROOT%openssl-1.0.1l
50+
if exist openssl-1.0.1l rd /s/q openssl-1.0.1l
51+
if not exist openssl-1.0.2a svn export %SVNROOT%openssl-1.0.2a
5152

5253
@rem tcl/tk
5354
if not exist tcl-8.5.15.0 (

0 commit comments

Comments
 (0)