diff options
author | rillig <rillig@pkgsrc.org> | 2005-02-27 10:40:04 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-02-27 10:40:04 +0000 |
commit | 0c3bf8b56d073a6c8ca76b5339a8734ed924fa32 (patch) | |
tree | 7f3ccd98990db9b50e84ec48badd6d52c53acabd /misc/bidwatcher | |
parent | b48aca128ba0f44fa00bdca26f30cf4d4f180030 (diff) | |
download | pkgsrc-0c3bf8b56d073a6c8ca76b5339a8734ed924fa32.tar.gz |
Added a patch to make bidwatcher build on NetBSD-1.6.2. Reviewed by tron.
Diffstat (limited to 'misc/bidwatcher')
-rw-r--r-- | misc/bidwatcher/Makefile | 3 | ||||
-rw-r--r-- | misc/bidwatcher/distinfo | 3 | ||||
-rw-r--r-- | misc/bidwatcher/patches/patch-aa | 15 |
3 files changed, 19 insertions, 2 deletions
diff --git a/misc/bidwatcher/Makefile b/misc/bidwatcher/Makefile index 0502e16802a..68250408377 100644 --- a/misc/bidwatcher/Makefile +++ b/misc/bidwatcher/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.41 2005/02/18 10:10:06 tron Exp $ +# $NetBSD: Makefile,v 1.42 2005/02/27 10:40:04 rillig Exp $ DISTNAME= bidwatcher-1.3.17 +PKGREVISION= 1 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bidwatcher/} diff --git a/misc/bidwatcher/distinfo b/misc/bidwatcher/distinfo index 0185901a4b6..5b3e109c1ec 100644 --- a/misc/bidwatcher/distinfo +++ b/misc/bidwatcher/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.34 2005/02/24 11:02:50 agc Exp $ +$NetBSD: distinfo,v 1.35 2005/02/27 10:40:04 rillig Exp $ SHA1 (bidwatcher-1.3.17.tar.gz) = 226a181c1af3836820c7f9df5bfe15ef2d869da1 RMD160 (bidwatcher-1.3.17.tar.gz) = fee1c5a776e1fc79c6a740ef2bc9f94114259b82 Size (bidwatcher-1.3.17.tar.gz) = 193923 bytes +SHA1 (patch-aa) = c4fcc87d614761abf4ef846f2f88584191cad0af diff --git a/misc/bidwatcher/patches/patch-aa b/misc/bidwatcher/patches/patch-aa new file mode 100644 index 00000000000..af5141f651f --- /dev/null +++ b/misc/bidwatcher/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.18 2005/02/27 10:40:04 rillig Exp $ + +The header file uses the FILE type without including <cstdio>. +This breaks (at least) on NetBSD-1.6.2. + +--- bidwatcher.h.orig Fri Feb 18 04:30:20 2005 ++++ bidwatcher.h Sat Feb 26 14:15:23 2005 +@@ -29,6 +29,7 @@ + #include "config.h" + #endif + ++#include <cstdio> + #include <string> + + using namespace std; |