summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustavo Zacarias2009-06-30 21:40:23 +0200
committerPeter Korsgaard2009-06-30 21:40:23 +0200
commit5818010f92c37cdfa2667bc52616f134bc167148 (patch)
tree4ecd864f2314b9bb2371c2be1b57ce50d384a03e
parentu-boot: add 2009.06 release (diff)
downloadbuildroot-5818010f92c37cdfa2667bc52616f134bc167148.tar.gz
buildroot-5818010f92c37cdfa2667bc52616f134bc167148.tar.xz
buildroot-5818010f92c37cdfa2667bc52616f134bc167148.zip
sqlite: bump version
Closed #333. * Refactor the internal representation of SQL expressions so that they use less memory on embedded platforms. * Reduce the amount of stack space used * Fix an 64-bit alignment bug on HP/UX and Sparc * The sqlite3_create_function() family of interfaces now return SQLITE_MISUSE instead of SQLITE_ERROR when passed invalid parameter combinations. * When new tables are created using CREATE TABLE ... AS SELECT ... the datatype of the columns is the simplified SQLite datatype (TEXT, INT, REAL, NUMERIC, or BLOB) instead of a copy of the original datatype from the source table. * Resolve race conditions when checking for a hot rollback journal. * The sqlite3_shutdown() interface frees all mutexes under windows. * Enhanced robustness against corrupt database files * Continuing improvements to the test suite and fixes to obscure bugs and inconsistencies that the test suite improvements are uncovering. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r--CHANGES1
-rw-r--r--package/database/sqlite/sqlite.mk4
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 605d4bdd5..2d646b707 100644
--- a/CHANGES
+++ b/CHANGES
@@ -3,6 +3,7 @@
Issues resolved (http://bugs.uclibc.org):
#241: device mapper + lvm2: build together
+ #333: Bump sqlite package to 3.6.15
#349: update libsoup to version 2.26.2
#367: linux kernel compile error for arm926t
#373: Support for building gstreamer without libxml
diff --git a/package/database/sqlite/sqlite.mk b/package/database/sqlite/sqlite.mk
index 9f10f1e3f..9bceee219 100644
--- a/package/database/sqlite/sqlite.mk
+++ b/package/database/sqlite/sqlite.mk
@@ -4,8 +4,8 @@
#
#############################################################
-SQLITE_VERSION = 3.6.13
-SQLITE_SOURCE = sqlite-$(SQLITE_VERSION).tar.gz
+SQLITE_VERSION = 3.6.15
+SQLITE_SOURCE = sqlite-amalgamation-$(SQLITE_VERSION).tar.gz
SQLITE_SITE = http://www.sqlite.org
SQLITE_INSTALL_STAGING = YES
SQLITE_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install