summaryrefslogtreecommitdiff
path: root/databases/sqlite3
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2011-04-17 20:27:08 +0000
committeradam <adam@pkgsrc.org>2011-04-17 20:27:08 +0000
commit0358c053bc63124c758596ae5e840457e435190b (patch)
tree0769e4a3fceae25beeef0e1589c8cbad2c0505f2 /databases/sqlite3
parent860c759432eb6aa03ea72dbdfe1babbd32e78693 (diff)
downloadpkgsrc-0358c053bc63124c758596ae5e840457e435190b.tar.gz
Changes 3.7.6.2:
* Fix the function prototype for the open(2) system call to agree with POSIX. Without this fix, pthreads does not work correctly on NetBSD.
Diffstat (limited to 'databases/sqlite3')
-rw-r--r--databases/sqlite3/Makefile7
-rw-r--r--databases/sqlite3/distinfo9
-rw-r--r--databases/sqlite3/patches/patch-sqlite3.c15
3 files changed, 7 insertions, 24 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile
index 785a9cf180c..67ad3714893 100644
--- a/databases/sqlite3/Makefile
+++ b/databases/sqlite3/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.41 2011/04/17 09:14:13 adam Exp $
+# $NetBSD: Makefile,v 1.42 2011/04/17 20:27:08 adam Exp $
-DISTNAME= sqlite-autoconf-3070601
-PKGNAME= sqlite3-3.7.6.1
-PKGREVISION= 1
+DISTNAME= sqlite-autoconf-3070602
+PKGNAME= sqlite3-3.7.6.2
CATEGORIES= databases
MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \
http://www.sqlite.org/
diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo
index ad1478ea63a..1bd71f665cb 100644
--- a/databases/sqlite3/distinfo
+++ b/databases/sqlite3/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.60 2011/04/17 09:14:13 adam Exp $
+$NetBSD: distinfo,v 1.61 2011/04/17 20:27:08 adam Exp $
-SHA1 (sqlite-autoconf-3070601.tar.gz) = 8e3d1f93576374238875197b1fb472332e339ea7
-RMD160 (sqlite-autoconf-3070601.tar.gz) = a7341ce16c52b5023e172c28782b232c18e19f87
-Size (sqlite-autoconf-3070601.tar.gz) = 1720170 bytes
-SHA1 (patch-sqlite3.c) = b8bd076cd2c6fac9b076cdb2a877443703c5909f
+SHA1 (sqlite-autoconf-3070602.tar.gz) = 3582b0b809dc0c3fa10ddaa403c219a4ebd8abb5
+RMD160 (sqlite-autoconf-3070602.tar.gz) = dc6998976f3d0e3e8f7b0568966d8ff0cb82c899
+Size (sqlite-autoconf-3070602.tar.gz) = 1720179 bytes
diff --git a/databases/sqlite3/patches/patch-sqlite3.c b/databases/sqlite3/patches/patch-sqlite3.c
deleted file mode 100644
index a9fbc12a741..00000000000
--- a/databases/sqlite3/patches/patch-sqlite3.c
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-sqlite3.c,v 1.1 2011/04/17 09:14:13 adam Exp $
-
-Fix open() signature.
-
---- sqlite3.c.orig 2011-04-17 08:42:16.000000000 +0000
-+++ sqlite3.c
-@@ -24413,7 +24413,7 @@ static struct unix_syscall {
- sqlite3_syscall_ptr pDefault; /* Default value */
- } aSyscall[] = {
- { "open", (sqlite3_syscall_ptr)open, 0 },
--#define osOpen ((int(*)(const char*,int,int))aSyscall[0].pCurrent)
-+#define osOpen ((int(*)(const char*,int,...))aSyscall[0].pCurrent)
-
- { "close", (sqlite3_syscall_ptr)close, 0 },
- #define osClose ((int(*)(int))aSyscall[1].pCurrent)