[Python-checkins] cpython: Update SQLite to 3.8.1 on Windows.

martin.v.loewis python-checkins at python.org
Fri Nov 22 18:36:41 CET 2013


http://hg.python.org/cpython/rev/96860eee3bf3
changeset:   87354:96860eee3bf3
user:        Martin v. Löwis <martin at v.loewis.de>
date:        Fri Nov 22 18:36:28 2013 +0100
summary:
  Update SQLite to 3.8.1 on Windows.

files:
  Misc/NEWS                          |  2 ++
  PC/VS9.0/pyproject.vsprops         |  2 +-
  PCbuild/pyproject.props            |  2 +-
  PCbuild/readme.txt                 |  2 +-
  Tools/buildbot/external-common.bat |  6 +++---
  5 files changed, 8 insertions(+), 6 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -352,6 +352,8 @@
 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
diff --git a/PC/VS9.0/pyproject.vsprops b/PC/VS9.0/pyproject.vsprops
--- a/PC/VS9.0/pyproject.vsprops
+++ b/PC/VS9.0/pyproject.vsprops
@@ -50,7 +50,7 @@
 	/>
 	<UserMacro
 		Name="sqlite3Dir"
-		Value="$(externalsDir)\sqlite-3.7.12"
+		Value="$(externalsDir)\sqlite-3.8.1"
 	/>
 	<UserMacro
 		Name="bz2Dir"
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
--- a/PCbuild/pyproject.props
+++ b/PCbuild/pyproject.props
@@ -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>
diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt
--- a/PCbuild/readme.txt
+++ b/PCbuild/readme.txt
@@ -207,7 +207,7 @@
     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
diff --git a/Tools/buildbot/external-common.bat b/Tools/buildbot/external-common.bat
--- a/Tools/buildbot/external-common.bat
+++ b/Tools/buildbot/external-common.bat
@@ -37,9 +37,9 @@
 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list