diff options
author | wiz <wiz@pkgsrc.org> | 2004-08-07 12:14:09 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-08-07 12:14:09 +0000 |
commit | d5e69d96ae7e1dacb990cb73f64f53064dc6db80 (patch) | |
tree | 6dbb88c4221d18132caff047812fe44235cf03fc /devel | |
parent | dfcd9ce3002496d4262e42c8aedf8fbdcc310950 (diff) | |
download | pkgsrc-d5e69d96ae7e1dacb990cb73f64f53064dc6db80.tar.gz |
Update to 0.15.0nb1:
Close file descriptor leak; make --list-all work if you have more pc
files than the file descriptor limit allows.
Submitted to freedesktop bugzilla as
http://freedesktop.org/bugzilla/show_bug.cgi?id=1006
Diffstat (limited to 'devel')
-rw-r--r-- | devel/pkgconfig/Makefile | 3 | ||||
-rw-r--r-- | devel/pkgconfig/distinfo | 3 | ||||
-rw-r--r-- | devel/pkgconfig/patches/patch-aa | 12 |
3 files changed, 16 insertions, 2 deletions
diff --git a/devel/pkgconfig/Makefile b/devel/pkgconfig/Makefile index ec915c5cc6a..2b6b22bcc6c 100644 --- a/devel/pkgconfig/Makefile +++ b/devel/pkgconfig/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.17 2004/04/12 20:28:54 jschauma Exp $ +# $NetBSD: Makefile,v 1.18 2004/08/07 12:14:09 wiz Exp $ # DISTNAME= pkgconfig-0.15.0 +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.freedesktop.org/software/pkgconfig/releases/ diff --git a/devel/pkgconfig/distinfo b/devel/pkgconfig/distinfo index 75e8fca8148..1ac23a64f52 100644 --- a/devel/pkgconfig/distinfo +++ b/devel/pkgconfig/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.7 2004/04/28 14:11:15 tv Exp $ +$NetBSD: distinfo,v 1.8 2004/08/07 12:14:09 wiz Exp $ SHA1 (pkgconfig-0.15.0.tar.gz) = 1019c8027c0cf94bca680886f4e2ae4e629a2a97 Size (pkgconfig-0.15.0.tar.gz) = 610697 bytes +SHA1 (patch-aa) = 6ac538ffabfadb5ac46e92878f32f969ac14515f diff --git a/devel/pkgconfig/patches/patch-aa b/devel/pkgconfig/patches/patch-aa new file mode 100644 index 00000000000..428a238b940 --- /dev/null +++ b/devel/pkgconfig/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.3 2004/08/07 12:14:09 wiz Exp $ + +--- parse.c.orig 2002-09-26 19:25:41.000000000 +0200 ++++ parse.c +@@ -953,6 +953,7 @@ parse_package_file (const char *path) + verbose_error ("Package file '%s' appears to be empty\n", + path); + ++ fclose(f); + return pkg; + } + |