diff options
author | adam <adam@pkgsrc.org> | 2012-03-20 21:00:47 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2012-03-20 21:00:47 +0000 |
commit | 0344c0181cfa36461f0c9745345423e85e81425c (patch) | |
tree | 85c11623666af3e52045945843ba7fab922f06c5 /databases/sqlite3 | |
parent | 86ee2a069a3e619754241a715d722d199e3fcfff (diff) | |
download | pkgsrc-0344c0181cfa36461f0c9745345423e85e81425c.tar.gz |
Changes 3.7.11:
* Enhance the INSERT syntax to allow multiple rows to be inserted via
the VALUES clause.
* Enhance the CREATE VIRTUAL TABLE command to support the IF NOT EXISTS clause.
* Added the sqlite3_stricmp() interface as a counterpart to sqlite3_strnicmp().
* Added the sqlite3_db_readonly() interface.
* Added the SQLITE_FCNTL_PRAGMA file control, giving VFS implementations
the ability to add new PRAGMA statements or to override built-in PRAGMAs.
* Queries of the form: "SELECT max(x), y FROM table" returns the value of y on
the same row that contains the maximum x value.
* Added support for the FTS4 languageid option.
* Documented support for the FTS4 content option. This feature has actually
been in the code since version 3.7.9 but is only now considered to be
officially supported.
* Pending statements no longer block ROLLBACK. Instead, the pending statement
will return SQLITE_ABORT upon next access after the ROLLBACK.
* Improvements to the handling of CSV inputs in the command-line shell
* Fix a bug introduced in version 3.7.10 that might cause a LEFT JOIN to be
incorrectly converted into an INNER JOIN if the WHERE clause indexable terms
connected by OR.
Diffstat (limited to 'databases/sqlite3')
-rw-r--r-- | databases/sqlite3/Makefile | 6 | ||||
-rw-r--r-- | databases/sqlite3/builtin.mk | 8 | ||||
-rw-r--r-- | databases/sqlite3/distinfo | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index ea3ef21817a..6027ea49168 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.48 2012/01/17 15:53:13 adam Exp $ +# $NetBSD: Makefile,v 1.49 2012/03/20 21:00:47 adam Exp $ -DISTNAME= sqlite-autoconf-3071000 -PKGNAME= sqlite3-3.7.10 +DISTNAME= sqlite-autoconf-3071100 +PKGNAME= sqlite3-3.7.11 CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ http://www.sqlite.org/ diff --git a/databases/sqlite3/builtin.mk b/databases/sqlite3/builtin.mk index 7d9a7b721a1..cfed316fcb0 100644 --- a/databases/sqlite3/builtin.mk +++ b/databases/sqlite3/builtin.mk @@ -1,4 +1,4 @@ -# $NetBSD: builtin.mk,v 1.2 2011/11/10 17:18:10 wiz Exp $ +# $NetBSD: builtin.mk,v 1.3 2012/03/20 21:00:47 adam Exp $ BUILTIN_PKG:= sqlite3 @@ -12,12 +12,12 @@ PKGCONFIG_BASE.sqlite3= /usr ### solely to determine whether a built-in implementation exists. ### -CHECK_BUILTIN.sqlite3?= no +CHECK_BUILTIN.sqlite3?= no .if !empty(CHECK_BUILTIN.sqlite3:M[nN][oO]) . if !empty(USE_BUILTIN.sqlite3:M[yY][eE][sS]) -BUILDLINK_PREFIX.sqlite3= /usr -BUILDLINK_FILES.sqlite3+= lib/pkgconfig/sqlite3.pc +BUILDLINK_PREFIX.sqlite3= /usr +BUILDLINK_FILES.sqlite3+= lib/pkgconfig/sqlite3.pc . endif .endif # CHECK_BUILTIN.sqlite3 diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo index cde82776b08..df6ddcad394 100644 --- a/databases/sqlite3/distinfo +++ b/databases/sqlite3/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.66 2012/01/17 15:53:13 adam Exp $ +$NetBSD: distinfo,v 1.67 2012/03/20 21:00:47 adam Exp $ -SHA1 (sqlite-autoconf-3071000.tar.gz) = 0442d5a1bff50153039951b09db649864d8af0bb -RMD160 (sqlite-autoconf-3071000.tar.gz) = 8932a5cd4b596632c63af30cbd94c2b6c9d45377 -Size (sqlite-autoconf-3071000.tar.gz) = 1801640 bytes +SHA1 (sqlite-autoconf-3071100.tar.gz) = a768f76b10df84d6a2c66178544d42725a8fdaf0 +RMD160 (sqlite-autoconf-3071100.tar.gz) = 09df3232f4eb7032c0a6081670b2bdcb6d80e865 +Size (sqlite-autoconf-3071100.tar.gz) = 1807754 bytes |