diff options
author | adam <adam@pkgsrc.org> | 2008-07-18 17:43:34 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2008-07-18 17:43:34 +0000 |
commit | 49d2a416496861925b51b3183a561d18a445ed65 (patch) | |
tree | bc9c11a8494dbe4d49251b89629d3e9a180291c8 | |
parent | bf9aa65038870fc55443f074bf599fe0667130b2 (diff) | |
download | pkgsrc-49d2a416496861925b51b3183a561d18a445ed65.tar.gz |
Changes 3.6.0:
* Modifications to the virtual file system interface to support a wider range
of embedded systems.
* All C-preprocessor macros used to control compile-time options now begin
with the prefix "SQLITE_".
* The SQLITE_MUTEX_APPDEF compile-time option is no longer supported.
* The handling of IN and NOT IN operators that contain a NULL on their
right-hand side expression is brought into compliance with the SQL standard
and with other SQL database engines. This is a bug fix, but as it has the
potential to break legacy applications that depend on the older buggy
behavior.
* The result column names generated for compound subqueries have been
simplified to show only the name of the column of the original table and
omit the table name. This makes SQLite operate more like other SQL database
engines.
* Added the sqlite3_config() interface for doing run-time configuration of the
entire SQLite library.
* Added the sqlite3_status() interface used for querying run-time status
information about the overall SQLite library and its subsystems.
* Added the sqlite3_initialize() and sqlite3_shutdown() interfaces.
* The SQLITE_OPEN_NOMUTEX option was added to sqlite3_open_v2().
* Added the PRAGMA page_count command.
* Added the sqlite3_next_stmt() interface.
* Added a new R*Tree virtual table
-rw-r--r-- | databases/sqlite3/Makefile.common | 4 | ||||
-rw-r--r-- | databases/sqlite3/distinfo | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/databases/sqlite3/Makefile.common b/databases/sqlite3/Makefile.common index 9b3e3fca123..0c50a50005e 100644 --- a/databases/sqlite3/Makefile.common +++ b/databases/sqlite3/Makefile.common @@ -1,8 +1,8 @@ -# $NetBSD: Makefile.common,v 1.19 2008/05/25 07:11:13 adam Exp $ +# $NetBSD: Makefile.common,v 1.20 2008/07/18 17:43:34 adam Exp $ # used by databases/sqlite3-tcl/Makefile -DISTNAME= sqlite-3.5.9 +DISTNAME= sqlite-3.6.0 PKGNAME= ${DISTNAME:S/-/3-/} CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo index bbea0ce2f5e..4b5f44efe78 100644 --- a/databases/sqlite3/distinfo +++ b/databases/sqlite3/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.17 2008/05/25 07:11:13 adam Exp $ +$NetBSD: distinfo,v 1.18 2008/07/18 17:43:34 adam Exp $ -SHA1 (sqlite-3.5.9.tar.gz) = 8d81fb4ff606095734e721e3cf00bc9d3859a055 -RMD160 (sqlite-3.5.9.tar.gz) = ddaae6866419668021037a497c363e6194de7de5 -Size (sqlite-3.5.9.tar.gz) = 2201083 bytes +SHA1 (sqlite-3.6.0.tar.gz) = fd97fe21e9941ec3e39d75f98fb177f775d3d249 +RMD160 (sqlite-3.6.0.tar.gz) = e7cb107331964216a4537de24e250be1de7293d2 +Size (sqlite-3.6.0.tar.gz) = 2149604 bytes |