diff options
author | adam <adam@pkgsrc.org> | 2011-04-12 19:00:50 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2011-04-12 19:00:50 +0000 |
commit | 35bed8a22ec45a49c28be879b678c5cfe061fba1 (patch) | |
tree | 185bfda99dca5c72fdaca5e8f8aeca08bf77cc67 /databases/sqlite3-tcl/Makefile | |
parent | 6f49603c049b6a1193ea584ead2da25b6f668344 (diff) | |
download | pkgsrc-35bed8a22ec45a49c28be879b678c5cfe061fba1.tar.gz |
Changes 3.7.6:
* Added the sqlite3_wal_checkpoint_v2() interface and enhanced the
wal_checkpoint pragma to support blocking checkpoints.
* Improvements to the query planner so that it makes better estimates of plan
costs and hence does a better job of choosing the right plan, especially when
SQLITE_ENABLE_STAT2 is used.
* Fix a bug which prevented deferred foreign key constraints from being
enforced when sqlite3_finalize() was not called by one statement with a
failed foreign key constraint prior to another statement with foreign key
constraints running.
* Integer arithmetic operations that would have resulted in overflow are now
performed using floating-point instead.
* Increased the version number on the VFS object to 3 and added new methods
xSetSysCall, xGetSysCall, and xNextSysCall used for doing full-coverage
testing.
* Increase the maximum value of SQLITE_MAX_ATTACHED from 30 to 62 (though the
default value remains at 10).
* Enhancements to FTS4:
- Added the fts4aux table
- Added support for compressed FTS4 content
* Enhance the ANALYZE command to support the name of an index as its argument,
in order to analyze just that one index.
* Added the "unix-excl" built-in VFS on unix and unix-like platforms.
Diffstat (limited to 'databases/sqlite3-tcl/Makefile')
-rw-r--r-- | databases/sqlite3-tcl/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/databases/sqlite3-tcl/Makefile b/databases/sqlite3-tcl/Makefile index 9991df50346..1dc7b9ebbfd 100644 --- a/databases/sqlite3-tcl/Makefile +++ b/databases/sqlite3-tcl/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.21 2011/02/02 09:03:09 adam Exp $ +# $NetBSD: Makefile,v 1.22 2011/04/12 19:00:50 adam Exp $ -DISTNAME= sqlite-tea-3070500 -PKGNAME= sqlite3-tcl-3.7.5 +DISTNAME= sqlite-autoconf-3070600 +PKGNAME= sqlite3-tcl-3.7.6 CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ http://www.sqlite.org/ @@ -13,6 +13,8 @@ LICENSE= public-domain PKG_DESTDIR_SUPPORT= user-destdir +WRKSRC= ${WRKDIR}/${DISTNAME}/tea + USE_TOOLS+= gmake GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-tcl=${BUILDLINK_PREFIX.tcl}/lib |