Skip to content

Commit cc0b927

Browse files
committed
Issue #17425: Build with openssl 1.0.1d on Windows.
1 parent 710f0c3 commit cc0b927

7 files changed

Lines changed: 12 additions & 10 deletions

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -811,6 +811,8 @@ Tests
811811
Build
812812
-----
813813

814+
- Issue #17425: Build with openssl 1.0.1d on Windows.
815+
814816
- Issue #16754: Fix the incorrect shared library extension on linux. Introduce
815817
two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of
816818
SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.

PC/VC6/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ _ssl
153153

154154
Unpack into the "dist" directory, retaining the folder name from
155155
the archive - for example, the latest stable OpenSSL will install as
156-
dist/openssl-1.0.1c
156+
dist/openssl-1.0.1d
157157

158-
You need to use version 1.0.1c of OpenSSL.
158+
You need to use version 1.0.1d of OpenSSL.
159159

160160
You can install the NASM assembler from
161161
http://www.nasm.us/

PC/VS8.0/pyproject.vsprops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
/>
5959
<UserMacro
6060
Name="opensslDir"
61-
Value="$(externalsDir)\openssl-1.0.1c"
61+
Value="$(externalsDir)\openssl-1.0.1d"
6262
/>
6363
<UserMacro
6464
Name="tcltkDir"

PC/VS9.0/pyproject.vsprops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
/>
6363
<UserMacro
6464
Name="opensslDir"
65-
Value="$(externalsDir)\openssl-1.0.1c"
65+
Value="$(externalsDir)\openssl-1.0.1r"
6666
/>
6767
<UserMacro
6868
Name="tcltkDir"

PCbuild/pyproject.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<sqlite3Dir>$(externalsDir)\sqlite-3.7.12</sqlite3Dir>
2121
<bz2Dir>$(externalsDir)\bzip2-1.0.6</bz2Dir>
2222
<lzmaDir>$(externalsDir)\xz-5.0.3</lzmaDir>
23-
<opensslDir>$(externalsDir)\openssl-1.0.1c</opensslDir>
23+
<opensslDir>$(externalsDir)\openssl-1.0.1d</opensslDir>
2424
<tcltkDir>$(externalsDir)\tcltk</tcltkDir>
2525
<tcltk64Dir>$(externalsDir)\tcltk64</tcltk64Dir>
2626
<tcltkLib>$(tcltkDir)\lib\tcl85.lib;$(tcltkDir)\lib\tk85.lib</tcltkLib>

PCbuild/readme.txt

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

143143
Get the source code through
144144

145-
svn export http://svn.python.org/projects/external/openssl-1.0.1c
145+
svn export http://svn.python.org/projects/external/openssl-1.0.1d
146146

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

Tools/buildbot/external-common.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ cd ..
1414
@rem if exist tk8.4.16 rd /s/q tk8.4.16
1515
@rem if exist tk-8.4.18.1 rd /s/q tk-8.4.18.1
1616
@rem if exist db-4.4.20 rd /s/q db-4.4.20
17-
@rem if exist openssl-1.0.1c rd /s/q openssl-1.0.1c
17+
@rem if exist openssl-1.0.1d rd /s/q openssl-1.0.1d
1818
@rem if exist sqlite-3.7.12 rd /s/q sqlite-3.7.12
1919

2020
@rem bzip
@@ -24,9 +24,9 @@ if not exist bzip2-1.0.6 (
2424
)
2525

2626
@rem OpenSSL
27-
if not exist openssl-1.0.1c (
28-
rd /s/q openssl-1.0.0j
29-
svn export http://svn.python.org/projects/external/openssl-1.0.1c
27+
if not exist openssl-1.0.1d (
28+
rd /s/q openssl-1.0.1c
29+
svn export http://svn.python.org/projects/external/openssl-1.0.1d
3030
)
3131

3232
@rem tcl/tk

0 commit comments

Comments
 (0)