diff options
author | adam <adam> | 2009-10-11 09:14:14 +0000 |
---|---|---|
committer | adam <adam> | 2009-10-11 09:14:14 +0000 |
commit | 40873a91c78c6045b2ad02d5c510b1f794a45c0e (patch) | |
tree | 7c73971339ff2f183532a0375a69a1568b536e8e /databases/sqlite3-tcl | |
parent | 94fb27560f0ae6f11c324b9c2efa124a3762ea51 (diff) | |
download | pkgsrc-40873a91c78c6045b2ad02d5c510b1f794a45c0e.tar.gz |
Changes 3.6.18:
* Versioning of the SQLite source code has transitioned from CVS to Fossil.
* Query planner enhancements.
* The SQLITE_ENABLE_STAT2 compile-time option causes the ANALYZE command to
collect a small histogram of each index, to help SQLite better select among
competing range query indices.
* Recursive triggers can be enabled using the PRAGMA recursive_triggers
statement.
* Delete triggers fire when rows are removed due to a REPLACE conflict
resolution. This feature is only enabled when recursive triggers are enabled.
* Added the SQLITE_OPEN_SHAREDCACHE and SQLITE_OPEN_PRIVATECACHE flags for
sqlite3_open_v2() used to override the global shared cache mode settings for
individual database connections.
* Added improved version identification features: C-Preprocessor macro
SQLITE_SOURCE_ID, C/C++ interface sqlite3_sourceid(), and SQL function
sqlite_source_id().
* Obscure bug fix on triggers
Diffstat (limited to 'databases/sqlite3-tcl')
-rw-r--r-- | databases/sqlite3-tcl/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/databases/sqlite3-tcl/Makefile b/databases/sqlite3-tcl/Makefile index 2504f320f9a..c857a5fdea6 100644 --- a/databases/sqlite3-tcl/Makefile +++ b/databases/sqlite3-tcl/Makefile @@ -1,11 +1,10 @@ -# $NetBSD: Makefile,v 1.10 2009/05/20 00:58:11 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2009/10/11 09:14:14 adam Exp $ PKG_DESTDIR_SUPPORT= user-destdir .include "../../databases/sqlite3/Makefile.common" PKGNAME:= ${PKGNAME:S/-/-tcl-/} -PKGREVISION= 1 CONFIGURE_ARGS+= --with-tcl=${BUILDLINK_PREFIX.tcl}/lib |