Skip to content

Commit

Permalink
Update SQLite to 3.8.1 on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
loewis committed Nov 22, 2013
1 parent 175e725 commit bc2f0ba
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions Misc/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,8 @@ Tests
Build
-----

- Update SQLite to 3.8.1 on Windows.

- Issue #16632: Enable DEP and ASLR on Windows.

- Issue #17791: Drop PREFIX and EXEC_PREFIX definitions from PC/pyconfig.h
Expand Down
2 changes: 1 addition & 1 deletion PC/VS9.0/pyproject.vsprops
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
/>
<UserMacro
Name="sqlite3Dir"
Value="$(externalsDir)\sqlite-3.7.12"
Value="$(externalsDir)\sqlite-3.8.1"
/>
<UserMacro
Name="bz2Dir"
Expand Down
2 changes: 1 addition & 1 deletion PCbuild/pyproject.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PythonExe>$(OutDir)python$(PyDebugExt).exe</PythonExe>
<KillPythonExe>$(OutDir)kill_python$(PyDebugExt).exe</KillPythonExe>
<externalsDir>..\..</externalsDir>
<sqlite3Dir>$(externalsDir)\sqlite-3.7.12</sqlite3Dir>
<sqlite3Dir>$(externalsDir)\sqlite-3.8.1</sqlite3Dir>
<bz2Dir>$(externalsDir)\bzip2-1.0.6</bz2Dir>
<lzmaDir>$(externalsDir)\xz-5.0.3</lzmaDir>
<opensslDir>$(externalsDir)\openssl-1.0.1e</opensslDir>
Expand Down
2 changes: 1 addition & 1 deletion PCbuild/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ _ssl
The ssl sub-project does not have the ability to clean the OpenSSL
build; if you need to rebuild, you'll have to clean it by hand.
_sqlite3
Wraps SQLite 3.7.12, which is itself built by sqlite3.vcxproj
Wraps SQLite 3.8.1, which is itself built by sqlite3.vcxproj
Homepage:
http://www.sqlite.org/
_tkinter
Expand Down
6 changes: 3 additions & 3 deletions Tools/buildbot/external-common.bat
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ if not exist tcl-8.5.11.0 (
if not exist tk-8.5.11.0 svn export http://svn.python.org/projects/external/tk-8.5.11.0

@rem sqlite3
if not exist sqlite-3.7.12 (
rd /s/q sqlite-source-3.7.4
svn export http://svn.python.org/projects/external/sqlite-3.7.12
if not exist sqlite-3.8.1 (
rd /s/q sqlite-source-3.7.12
svn export http://svn.python.org/projects/external/sqlite-3.8.1
)

@rem lzma
Expand Down

0 comments on commit bc2f0ba

Please sign in to comment.