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

Skip to content

Commit 7df3b9e

Browse files
committed
Merged revisions 77226 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r77226 | martin.v.loewis | 2010-01-02 10:25:21 +0100 (Sa, 02 Jan 2010) | 2 lines Update Windows build to sqlite 3.6.21. ........
1 parent 73801ec commit 7df3b9e

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

Misc/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ Build
536536
- Issue #7589: Only build the nis module when the correct header files are
537537
found.
538538

539-
- Switch to OpenSSL 0.9.8l on Windows.
539+
- Switch to OpenSSL 0.9.8l and sqlite 3.6.21 on Windows.
540540

541541
- Issue #5792: Extend the short float repr support to x86 systems using
542542
icc or suncc.

PCbuild/pyproject.vsprops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
/>
5151
<UserMacro
5252
Name="sqlite3Dir"
53-
Value="$(externalsDir)\sqlite-3.5.9"
53+
Value="$(externalsDir)\sqlite-3.6.21"
5454
/>
5555
<UserMacro
5656
Name="bz2Dir"

PCbuild/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ winsound
104104

105105
Python-controlled subprojects that wrap external projects:
106106
_sqlite3
107-
Wraps SQLite 3.5.9, which is currently built by sqlite3.vcproj (see below).
107+
Wraps SQLite 3.6.21, which is currently built by sqlite3.vcproj (see below).
108108
_tkinter
109109
Wraps the Tk windowing system. Unlike _sqlite3, there's no
110110
corresponding tcltk.vcproj-type project that builds Tcl/Tk from vcproj's

PCbuild/vs9to8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def vs9to8(src, dest):
2424

2525
# Bah. VS8.0 does not expand macros in file names.
2626
# Replace them here.
27-
lines = lines.replace('$(sqlite3Dir)', '..\\..\\..\\sqlite-3.5.9')
27+
lines = lines.replace('$(sqlite3Dir)', '..\\..\\..\\sqlite-3.6.21')
2828

2929
with open(destname, 'wb') as fout:
3030
lines = lines.replace("\n", "\r\n").encode()

Tools/buildbot/external-common.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cd ..
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
1717
@rem if exist openssl-0.9.8l rd /s/q openssl-0.9.8l
18-
@rem if exist sqlite-3.5.9 rd /s/q sqlite-3.5.9
18+
@rem if exist sqlite-3.6.21 rd /s/q sqlite-3.6.21
1919

2020
@rem bzip
2121
if not exist bzip2-1.0.5 (
@@ -37,7 +37,7 @@ if not exist tcl-8.5.2.1 (
3737
if not exist tk-8.5.2.0 svn export http://svn.python.org/projects/external/tk-8.5.2.0
3838

3939
@rem sqlite3
40-
if not exist sqlite-3.5.9 (
40+
if not exist sqlite-3.6.21 (
4141
rd /s/q sqlite-source-3.3.4
42-
svn export http://svn.python.org/projects/external/sqlite-3.5.9
42+
svn export http://svn.python.org/projects/external/sqlite-3.6.21
4343
)

0 commit comments

Comments
 (0)