diff options
author | drochner <drochner> | 2003-08-01 14:22:18 +0000 |
---|---|---|
committer | drochner <drochner> | 2003-08-01 14:22:18 +0000 |
commit | b68628690efc6c4851688dc2ded7b84ba2115865 (patch) | |
tree | 06072135f1433be93dd35f164548b98f5a576978 /databases | |
parent | dd4c05e6dcc4160de13b67f0436e14107669674f (diff) | |
download | pkgsrc-b68628690efc6c4851688dc2ded7b84ba2115865.tar.gz |
update to 2.8.5
changes:
Make LIMIT work on a compound SELECT statement.
LIMIT 0 now shows no rows. Use LIMIT -1 to see all rows.
Correctly handle comparisons between an INTEGER PRIMARY KEY and a
floating point number.
Fix several important bugs in the new ATTACH and DETACH commands.
Updated the NULL-handling document.
Allow NULL arguments in sqlite_compile() and sqlite_step().
Many minor bug fixes
Enhanced the "PRAGMA integrity_check" command to verify indices.
Added authorization hooks for the new ATTACH and DETACH commands.
Many documentation updates
Diffstat (limited to 'databases')
-rw-r--r-- | databases/sqlite/Makefile | 6 | ||||
-rw-r--r-- | databases/sqlite/PLIST | 7 | ||||
-rw-r--r-- | databases/sqlite/distinfo | 6 |
3 files changed, 11 insertions, 8 deletions
diff --git a/databases/sqlite/Makefile b/databases/sqlite/Makefile index 24cb67b6b7a..680cc783283 100644 --- a/databases/sqlite/Makefile +++ b/databases/sqlite/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2003/07/17 21:29:04 grant Exp $ +# $NetBSD: Makefile,v 1.18 2003/08/01 14:22:18 drochner Exp $ -DISTNAME= sqlite-2.8.3 +DISTNAME= sqlite-2.8.5 WRKSRC= ${WRKDIR}/sqlite-build CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ @@ -23,6 +23,8 @@ CONFIGURE_ENV+= config_TARGET_READLINE_INC="-I${BUILDLINK_PREFIX.readline}/incl CFLAGS+= -DUINT32_TYPE=u_int32_t -DUINT16_TYPE=u_int16_t \ -DUINT8_TYPE=u_int8_t -DINTPTR_TYPE=long +PKGCONFIG_OVERRIDE= ${WRKDIR}/sqlite/sqlite.pc.in + post-extract: ${MKDIR} ${WRKSRC} diff --git a/databases/sqlite/PLIST b/databases/sqlite/PLIST index c9fc2380c65..d2100a957f6 100644 --- a/databases/sqlite/PLIST +++ b/databases/sqlite/PLIST @@ -1,8 +1,9 @@ -@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:12:52 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2003/08/01 14:22:18 drochner Exp $ bin/sqlite include/sqlite.h lib/libsqlite.a lib/libsqlite.la lib/libsqlite.so -lib/libsqlite.so.0 -lib/libsqlite.so.0.0 +lib/libsqlite.so.5 +lib/libsqlite.so.5.3 +lib/pkgconfig/sqlite.pc diff --git a/databases/sqlite/distinfo b/databases/sqlite/distinfo index fbfc0c57bd5..eebc679518f 100644 --- a/databases/sqlite/distinfo +++ b/databases/sqlite/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.11 2003/06/25 19:24:21 tsarna Exp $ +$NetBSD: distinfo,v 1.12 2003/08/01 14:22:18 drochner Exp $ -SHA1 (sqlite-2.8.3.tar.gz) = 20ebbf7779b652e8eb7e99f38c57ae98f14909a4 -Size (sqlite-2.8.3.tar.gz) = 832405 bytes +SHA1 (sqlite-2.8.5.tar.gz) = f7819edfb360a14155c61f6c61f644ac3e3c514b +Size (sqlite-2.8.5.tar.gz) = 817792 bytes |