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

Skip to content

Commit 70ce8aa

Browse files
committed
Merged revisions 64239 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r64239 | martin.v.loewis | 2008-06-13 19:22:39 +0200 (Fr, 13 Jun 2008) | 1 line Switch to bzip2 1.0.5. ........
1 parent af065c3 commit 70ce8aa

3 files changed

Lines changed: 11 additions & 8 deletions

File tree

PCbuild/pyproject.vsprops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
/>
7979
<UserMacro
8080
Name="bz2Dir"
81-
Value="$(externalsDir)\bzip2-1.0.3"
81+
Value="$(externalsDir)\bzip2-1.0.5"
8282
/>
8383
<UserMacro
8484
Name="opensslDir"

PCbuild/readme.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,21 +121,21 @@ bz2
121121
Download the source from the python.org copy into the dist
122122
directory:
123123

124-
svn export http://svn.python.org/projects/external/bzip2-1.0.3
124+
svn export http://svn.python.org/projects/external/bzip2-1.0.5
125125

126126
** NOTE: if you use the Tools\buildbot\external(-amd64).bat approach for
127127
obtaining external sources then you don't need to manually get the source
128128
above via subversion. **
129129

130130
A custom pre-link step in the bz2 project settings should manage to
131-
build bzip2-1.0.3\libbz2.lib by magic before bz2.pyd (or bz2_d.pyd) is
131+
build bzip2-1.0.5\libbz2.lib by magic before bz2.pyd (or bz2_d.pyd) is
132132
linked in PCbuild\.
133133
However, the bz2 project is not smart enough to remove anything under
134-
bzip2-1.0.3\ when you do a clean, so if you want to rebuild bzip2.lib
135-
you need to clean up bzip2-1.0.3\ by hand.
134+
bzip2-1.0.5\ when you do a clean, so if you want to rebuild bzip2.lib
135+
you need to clean up bzip2-1.0.5\ by hand.
136136

137137
All of this managed to build libbz2.lib in
138-
bzip2-1.0.3\$platform-$configuration\, which the Python project links in.
138+
bzip2-1.0.5\$platform-$configuration\, which the Python project links in.
139139

140140
_ssl
141141
Python wrapper for the secure sockets library.

Tools/buildbot/external-common.bat

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
cd ..
55
@rem XXX: If you need to force the buildbots to start from a fresh environment, uncomment
66
@rem the following, check it in, then check it out, comment it out, then check it back in.
7-
@rem if exist bzip2-1.0.3 rd /s/q bzip2-1.0.3
7+
@rem if exist bzip2-1.0.5 rd /s/q bzip2-1.0.5
88
@rem if exist tcltk rd /s/q tcltk
99
@rem if exist tcltk64 rd /s/q tcltk64
1010
@rem if exist tcl8.4.12 rd /s/q tcl8.4.12
@@ -18,7 +18,10 @@ cd ..
1818
@rem if exist sqlite-source-3.3.4 rd /s/q sqlite-source-3.3.4
1919

2020
@rem bzip
21-
if not exist bzip2-1.0.3 svn export http://svn.python.org/projects/external/bzip2-1.0.3
21+
if not exist bzip2-1.0.5 (
22+
rd /s/q bzip2-1.0.3
23+
svn export http://svn.python.org/projects/external/bzip2-1.0.5
24+
)
2225

2326
@rem Sleepycat db
2427
if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20-vs9 db-4.4.20

0 commit comments

Comments
 (0)