diff options
author | adam <adam> | 2008-05-25 07:11:13 +0000 |
---|---|---|
committer | adam <adam> | 2008-05-25 07:11:13 +0000 |
commit | d4a7748f095cc96b309cfedf3ad98594999b08b5 (patch) | |
tree | 4c559e7e954270eb09bde1d40d555f2ae8f92cdb /databases/sqlite3/Makefile.common | |
parent | b75a62d6b5a70f6a7672d1a5660ba4d6a5066def (diff) | |
download | pkgsrc-d4a7748f095cc96b309cfedf3ad98594999b08b5.tar.gz |
Changes 3.5.9:
* Added experimental support for the journal_mode PRAGMA and persistent
journal.
* Journal mode PERSIST is the default behavior in exclusive locking mode.
* Fix a performance regression on LEFT JOIN (see ticket #3015) that was
mistakenly introduced in version 3.5.8.
* Performance enhancement: Reengineer the internal routines used to
interpret and render variable-length integers.
* Fix a buffer-overrun problem in sqlite3_mprintf() which occurs when
a string without a zero-terminator is passed to "%.*s".
* Always convert IEEE floating point NaN values into NULL during
processing.
* Make sure that when a connection blocks on a RESERVED lock that it is
able to continue after the lock is released.
* The "configure" scripts should now automatically configure unix systems
for large file support. Improved error messages for when large files are
encountered and large file support is disabled.
* Avoid cache pages leaks following disk-full or I/O errors
* And, many more minor bug fixes and performance enhancements...
Diffstat (limited to 'databases/sqlite3/Makefile.common')
-rw-r--r-- | databases/sqlite3/Makefile.common | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/sqlite3/Makefile.common b/databases/sqlite3/Makefile.common index 4c20319312d..9b3e3fca123 100644 --- a/databases/sqlite3/Makefile.common +++ b/databases/sqlite3/Makefile.common @@ -1,8 +1,8 @@ -# $NetBSD: Makefile.common,v 1.18 2008/03/04 10:46:55 wiz Exp $ +# $NetBSD: Makefile.common,v 1.19 2008/05/25 07:11:13 adam Exp $ # used by databases/sqlite3-tcl/Makefile -DISTNAME= sqlite-3.5.6 +DISTNAME= sqlite-3.5.9 PKGNAME= ${DISTNAME:S/-/3-/} CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ @@ -26,4 +26,4 @@ USE_LIBTOOL= yes # database through different database connections, though. CONFIGURE_ARGS+= --disable-threadsafe -PKGCONFIG_OVERRIDE= sqlite3.pc.in +PKGCONFIG_OVERRIDE+= sqlite3.pc.in |