diff options
author | obrien <obrien@FreeBSD.org> | 2005-10-30 13:41:57 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2005-10-30 13:41:57 +0800 |
commit | 2d8049dfd83f999ff94970be6c28cd2727febde7 (patch) | |
tree | 359e04ea3ec73f39aa2aa9ad471def567a374a59 /misc | |
parent | 9efb8b6160e43043504dff45e3c7d424062accd2 (diff) | |
download | freebsd-ports-gnome-2d8049dfd83f999ff94970be6c28cd2727febde7.tar.gz freebsd-ports-gnome-2d8049dfd83f999ff94970be6c28cd2727febde7.tar.zst freebsd-ports-gnome-2d8049dfd83f999ff94970be6c28cd2727febde7.zip |
Bidwatcher was using the FILE type without including <cstdio>.
Obtained from: NetBSD (via Bidwatcher submitted patches)
Diffstat (limited to 'misc')
-rw-r--r-- | misc/bidwatcher/Makefile | 2 | ||||
-rw-r--r-- | misc/bidwatcher/files/patch-bidwatcher.h | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/misc/bidwatcher/Makefile b/misc/bidwatcher/Makefile index caaa1c76e15d..b0bc0b49413a 100644 --- a/misc/bidwatcher/Makefile +++ b/misc/bidwatcher/Makefile @@ -8,7 +8,7 @@ PORTNAME= bidwatcher PORTVERSION= 1.3.17 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/misc/bidwatcher/files/patch-bidwatcher.h b/misc/bidwatcher/files/patch-bidwatcher.h new file mode 100644 index 000000000000..af5141f651ff --- /dev/null +++ b/misc/bidwatcher/files/patch-bidwatcher.h @@ -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; |