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

Skip to content

Commit bc2f0ba

Browse files
committed
Update SQLite to 3.8.1 on Windows.
1 parent 175e725 commit bc2f0ba

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,8 @@ Tests
352352
Build
353353
-----
354354

355+
- Update SQLite to 3.8.1 on Windows.
356+
355357
- Issue #16632: Enable DEP and ASLR on Windows.
356358

357359
- Issue #17791: Drop PREFIX and EXEC_PREFIX definitions from PC/pyconfig.h

PC/VS9.0/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.7.12"
53+
Value="$(externalsDir)\sqlite-3.8.1"
5454
/>
5555
<UserMacro
5656
Name="bz2Dir"

PCbuild/pyproject.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<PythonExe>$(OutDir)python$(PyDebugExt).exe</PythonExe>
1818
<KillPythonExe>$(OutDir)kill_python$(PyDebugExt).exe</KillPythonExe>
1919
<externalsDir>..\..</externalsDir>
20-
<sqlite3Dir>$(externalsDir)\sqlite-3.7.12</sqlite3Dir>
20+
<sqlite3Dir>$(externalsDir)\sqlite-3.8.1</sqlite3Dir>
2121
<bz2Dir>$(externalsDir)\bzip2-1.0.6</bz2Dir>
2222
<lzmaDir>$(externalsDir)\xz-5.0.3</lzmaDir>
2323
<opensslDir>$(externalsDir)\openssl-1.0.1e</opensslDir>

PCbuild/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ _ssl
207207
The ssl sub-project does not have the ability to clean the OpenSSL
208208
build; if you need to rebuild, you'll have to clean it by hand.
209209
_sqlite3
210-
Wraps SQLite 3.7.12, which is itself built by sqlite3.vcxproj
210+
Wraps SQLite 3.8.1, which is itself built by sqlite3.vcxproj
211211
Homepage:
212212
http://www.sqlite.org/
213213
_tkinter

Tools/buildbot/external-common.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ if not exist tcl-8.5.11.0 (
3737
if not exist tk-8.5.11.0 svn export http://svn.python.org/projects/external/tk-8.5.11.0
3838

3939
@rem sqlite3
40-
if not exist sqlite-3.7.12 (
41-
rd /s/q sqlite-source-3.7.4
42-
svn export http://svn.python.org/projects/external/sqlite-3.7.12
40+
if not exist sqlite-3.8.1 (
41+
rd /s/q sqlite-source-3.7.12
42+
svn export http://svn.python.org/projects/external/sqlite-3.8.1
4343
)
4444

4545
@rem lzma

0 commit comments

Comments
 (0)