diff options
author | martti <martti> | 2008-10-15 18:22:04 +0000 |
---|---|---|
committer | martti <martti> | 2008-10-15 18:22:04 +0000 |
commit | 0402f19485379cb6d5d3e297d28ddfe54266fa3e (patch) | |
tree | 25fe5977d02ab1e1d8944009f723ead7cd2c1e9e /databases | |
parent | 444674359c87c4a9b714f91e406ff7d07f44a757 (diff) | |
download | pkgsrc-0402f19485379cb6d5d3e297d28ddfe54266fa3e.tar.gz |
Updated databases/sqlite3 to 3.6.4
* Add option support for LIMIT and ORDER BY clauses on DELETE and UPDATE
statements. Only works if SQLite is compiled with
SQLITE_ENABLE_UPDATE_DELETE_LIMIT.
* Added the sqlite3_stmt_status() interface for performance monitoring.
* Add the INDEXED BY clause.
* The LOCKING_STYLE extension is now enabled by default on Mac OS-X
* Added the TRUNCATE option to PRAGMA journal_mode
* Performance enhancements to tree balancing logic in the B-Tree layer.
* Added the source code and documentation for the genfkey program for
automatically generating triggers to enforce foreign key constraints.
* Added the SQLITE_OMIT_TRUNCATE_OPTIMIZATION compile-time option.
* The SQL language documentation is converted to use syntax diagrams
instead of BNF.
* Other minor bug fixes
Diffstat (limited to 'databases')
-rw-r--r-- | databases/sqlite3/Makefile.common | 6 | ||||
-rw-r--r-- | databases/sqlite3/distinfo | 8 |
2 files changed, 8 insertions, 6 deletions
diff --git a/databases/sqlite3/Makefile.common b/databases/sqlite3/Makefile.common index ea96e17486c..c54df6f76a5 100644 --- a/databases/sqlite3/Makefile.common +++ b/databases/sqlite3/Makefile.common @@ -1,8 +1,8 @@ -# $NetBSD: Makefile.common,v 1.24 2008/10/06 08:00:49 adam Exp $ +# $NetBSD: Makefile.common,v 1.25 2008/10/15 18:22:04 martti Exp $ # used by databases/sqlite3-tcl/Makefile -DISTNAME= sqlite-3.6.3 +DISTNAME= sqlite-3.6.4 PKGNAME= ${DISTNAME:S/-/3-/} CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ @@ -12,6 +12,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.sqlite.org/ COMMENT= SQL Database Engine in a C Library +LICENSE= public-domain + DISTINFO_FILE= ${.CURDIR}/../../databases/sqlite3/distinfo PATCHDIR= ${.CURDIR}/../../databases/sqlite3/patches diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo index 8f96483c158..8eb28e0050a 100644 --- a/databases/sqlite3/distinfo +++ b/databases/sqlite3/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.21 2008/10/06 08:00:49 adam Exp $ +$NetBSD: distinfo,v 1.22 2008/10/15 18:22:04 martti Exp $ -SHA1 (sqlite-3.6.3.tar.gz) = f1f697777f1d2ca2fbc5dbb7d115ad2da26944c5 -RMD160 (sqlite-3.6.3.tar.gz) = 3fec400f69e4c15a90a7f0715d4ef1c8d87f1700 -Size (sqlite-3.6.3.tar.gz) = 2332857 bytes +SHA1 (sqlite-3.6.4.tar.gz) = af1082c0455aa672a9e1ca700eb53d986f6ac846 +RMD160 (sqlite-3.6.4.tar.gz) = b420b8a196807feb5162f293ea64e7741a633e92 +Size (sqlite-3.6.4.tar.gz) = 2246598 bytes |