diff options
author | markd <markd@pkgsrc.org> | 2006-07-02 14:36:31 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2006-07-02 14:36:31 +0000 |
commit | f36951b8833cccbe9f974755a2af7ddb67a1220b (patch) | |
tree | 486d8e33b6ba8696855ea2fdf4a13f901c8217e2 /www/htdig-devel | |
parent | 5ee779e70504c4dfbaedcbca975aef041e0d1ae7 (diff) | |
download | pkgsrc-f36951b8833cccbe9f974755a2af7ddb67a1220b.tar.gz |
Don't try and define bool if c++ as its builtin. Fixes PR pkg/32960.
Diffstat (limited to 'www/htdig-devel')
-rw-r--r-- | www/htdig-devel/distinfo | 3 | ||||
-rw-r--r-- | www/htdig-devel/patches/patch-aj | 18 |
2 files changed, 20 insertions, 1 deletions
diff --git a/www/htdig-devel/distinfo b/www/htdig-devel/distinfo index 07f38a233c1..d78a1e12f80 100644 --- a/www/htdig-devel/distinfo +++ b/www/htdig-devel/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.3 2006/06/14 19:23:30 adam Exp $ +$NetBSD: distinfo,v 1.4 2006/07/02 14:36:31 markd Exp $ SHA1 (htdig-3.2.0b6.tar.bz2) = 0b28134386e78fe724c56583fbc61b280551122a RMD160 (htdig-3.2.0b6.tar.bz2) = 1e0900e11618ffe3d43a6fc26163e3ed926a1012 @@ -8,3 +8,4 @@ SHA1 (patch-af) = d366aeac016505fce044e6bbdff9506fa68877ba SHA1 (patch-ag) = 6105b1526f31bb7b757c3ceeae286c7f2c0aa007 SHA1 (patch-ah) = e6e87151c7bd0a44d138d431bdcc7ce7f950d1ee SHA1 (patch-ai) = f49a6cf6bc385e1025c7aa90cb268e2117e61dab +SHA1 (patch-aj) = f9f500f11b01f3002d366f3c4abef7db161c99f1 diff --git a/www/htdig-devel/patches/patch-aj b/www/htdig-devel/patches/patch-aj new file mode 100644 index 00000000000..ae735567a85 --- /dev/null +++ b/www/htdig-devel/patches/patch-aj @@ -0,0 +1,18 @@ +$NetBSD: patch-aj,v 1.1 2006/07/02 14:36:31 markd Exp $ + +--- include/htconfig.h.orig 2006-06-24 00:56:56.544745000 +1200 ++++ include/htconfig.h +@@ -10,6 +10,7 @@ + + #include <config.h> + ++#ifndef __cplusplus + #if HAVE_STDBOOL_H + # include <stdbool.h> + #else +@@ -25,4 +26,4 @@ + # define true 1 + # define __bool_true_false_are_defined 1 + #endif +- ++#endif |