Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3f90311

Browse files
committed
merge 3.2
2 parents 91d5e83 + b15d1a7 commit 3f90311

7 files changed

Lines changed: 9 additions & 10 deletions

File tree

PC/VC6/readme.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +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.0a
156+
dist/openssl-1.0.0j
157157

158-
You can (theoretically) use any version of OpenSSL you like - the
159-
build process will automatically select the latest version.
158+
You need to use version 1.0.0j of OpenSSL.
160159

161160
You can install the NASM assembler from
162161
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.0a"
61+
Value="$(externalsDir)\openssl-1.0.0j"
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.0a"
65+
Value="$(externalsDir)\openssl-1.0.0j"
6666
/>
6767
<UserMacro
6868
Name="tcltkDir"

PCbuild/build_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def find_all_on_path(filename, extras = None):
4646
# is available.
4747
def find_working_perl(perls):
4848
for perl in perls:
49-
fh = os.popen('""%s" -e "use Win32;""' % perl)
49+
fh = os.popen('"%s" -e "use Win32;"' % perl)
5050
fh.read()
5151
rc = fh.close()
5252
if rc:

PCbuild/pyproject.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<sqlite3Dir>$(externalsDir)\sqlite-3.7.12</sqlite3Dir>
88
<bz2Dir>$(externalsDir)\bzip2-1.0.6</bz2Dir>
99
<lzmaDir>$(externalsDir)\xz-5.0.3</lzmaDir>
10-
<opensslDir>$(externalsDir)\openssl-1.0.0a</opensslDir>
10+
<opensslDir>$(externalsDir)\openssl-1.0.0j</opensslDir>
1111
<tcltkDir>$(externalsDir)\tcltk</tcltkDir>
1212
<tcltk64Dir>$(externalsDir)\tcltk64</tcltk64Dir>
1313
<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
@@ -148,7 +148,7 @@ _ssl
148148

149149
Get the source code through
150150

151-
svn export http://svn.python.org/projects/external/openssl-1.0.0a
151+
svn export http://svn.python.org/projects/external/openssl-1.0.0j
152152

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

Tools/buildbot/external-common.bat

Lines changed: 2 additions & 2 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.0a rd /s/q openssl-1.0.0a
17+
@rem if exist openssl-1.0.0j rd /s/q openssl-1.0.0j
1818
@rem if exist sqlite-3.7.12 rd /s/q sqlite-3.7.12
1919

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

2626
@rem OpenSSL
27-
if not exist openssl-1.0.0a svn export http://svn.python.org/projects/external/openssl-1.0.0a
27+
if not exist openssl-1.0.0j svn export http://svn.python.org/projects/external/openssl-1.0.0j
2828

2929
@rem tcl/tk
3030
if not exist tcl-8.5.11.0 (

0 commit comments

Comments
 (0)