diff options
author | jlam <jlam@pkgsrc.org> | 2004-08-04 19:59:58 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-08-04 19:59:58 +0000 |
commit | 73e8702339cb9df4e0cee93d9780841e6ae6e32b (patch) | |
tree | d948faf1de5685160694c7732330af6469e08045 | |
parent | 47edab39a4131424c0af036335f24e71260699f8 (diff) | |
download | pkgsrc-73e8702339cb9df4e0cee93d9780841e6ae6e32b.tar.gz |
Update databases/sqlite to 2.8.15. This is a bug-fix maintenance
release over version 2.8.14 that fixes some memory allocation and
quoting problems.
-rw-r--r-- | databases/sqlite/Makefile | 10 | ||||
-rw-r--r-- | databases/sqlite/distinfo | 8 | ||||
-rw-r--r-- | databases/sqlite/patches/patch-aa | 10 |
3 files changed, 13 insertions, 15 deletions
diff --git a/databases/sqlite/Makefile b/databases/sqlite/Makefile index 21fa585f730..04d4700b497 100644 --- a/databases/sqlite/Makefile +++ b/databases/sqlite/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.25 2004/07/22 17:43:23 drochner Exp $ +# $NetBSD: Makefile,v 1.26 2004/08/04 19:59:58 jlam Exp $ -DISTNAME= sqlite-2.8.14 +DISTNAME= sqlite-2.8.15 CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ http://www.sqlite.org/ @@ -10,11 +10,11 @@ HOMEPAGE= http://www.hwaci.com/sw/sqlite/ COMMENT= SQL Database Engine in a C Library WRKSRC= ${WRKDIR}/sqlite-build -USE_BUILDLINK3= YES +USE_BUILDLINK3= yes USE_GNU_TOOLS+= make -USE_LIBTOOL= YES +USE_LIBTOOL= yes -GNU_CONFIGURE= YES +GNU_CONFIGURE= yes CONFIGURE_SCRIPT= ../sqlite/configure CONFIGURE_ARGS+= --without-tcl CONFIGURE_ENV+= config_TARGET_READLINE_INC="-I${BUILDLINK_PREFIX.readline}/include" diff --git a/databases/sqlite/distinfo b/databases/sqlite/distinfo index f18664afed7..01750faab26 100644 --- a/databases/sqlite/distinfo +++ b/databases/sqlite/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.16 2004/07/22 17:43:23 drochner Exp $ +$NetBSD: distinfo,v 1.17 2004/08/04 19:59:58 jlam Exp $ -SHA1 (sqlite-2.8.14.tar.gz) = fffb48b97b2d397d3df61fde321a713ca544fff7 -Size (sqlite-2.8.14.tar.gz) = 955231 bytes -SHA1 (patch-aa) = 21d2122f84de65cb29ae1b2d5b92984ac0868f98 +SHA1 (sqlite-2.8.15.tar.gz) = 53c8a6dd2f87c500c6944987988053acacaee05b +Size (sqlite-2.8.15.tar.gz) = 963232 bytes +SHA1 (patch-aa) = 8f8f3608b10ed93b52c2dba6b70c93ba4aa6c485 diff --git a/databases/sqlite/patches/patch-aa b/databases/sqlite/patches/patch-aa index ee3cf00af39..7f6595b3590 100644 --- a/databases/sqlite/patches/patch-aa +++ b/databases/sqlite/patches/patch-aa @@ -1,12 +1,10 @@ -$NetBSD: patch-aa,v 1.6 2004/03/31 05:50:17 snj Exp $ +$NetBSD: patch-aa,v 1.7 2004/08/04 19:59:58 jlam Exp $ ---- ../sqlite/src/sqliteInt.h.orig 2004-03-30 21:10:23.000000000 -0800 -+++ ../sqlite/src/sqliteInt.h 2004-03-30 21:12:51.000000000 -0800 -@@ -14,6 +14,7 @@ - ** @(#) $Id: patch-aa,v 1.6 2004/03/31 05:50:17 snj Exp $ +--- ../sqlite/src/sqliteInt.h.orig Thu Jul 15 09:37:05 2004 ++++ ../sqlite/src/sqliteInt.h +@@ -15,4 +15,5 @@ */ #include "config.h" +#include "os.h" #include "sqlite.h" #include "hash.h" - #include "parse.h" |