summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrecht <recht@pkgsrc.org>2004-01-26 00:54:19 +0000
committerrecht <recht@pkgsrc.org>2004-01-26 00:54:19 +0000
commit892fa84c1f3b7481213e172f179cf1128c23402e (patch)
tree3658d252f60d7155312f4fa1a20a9b16bef71c80
parent4516b4423176b3c679b325503cef863980210ac9 (diff)
downloadpkgsrc-892fa84c1f3b7481213e172f179cf1128c23402e.tar.gz
Fix build with newer versions of curl where TRUE and FALSE aren't
defined anymore.
-rw-r--r--graphics/xine-ui/patches/patch-ag19
1 files changed, 19 insertions, 0 deletions
diff --git a/graphics/xine-ui/patches/patch-ag b/graphics/xine-ui/patches/patch-ag
new file mode 100644
index 00000000000..a78d0afd489
--- /dev/null
+++ b/graphics/xine-ui/patches/patch-ag
@@ -0,0 +1,19 @@
+$NetBSD: patch-ag,v 1.1 2004/01/26 00:54:19 recht Exp $
+
+--- src/xitk/common.h.orig 2004-01-26 01:39:55.000000000 +0100
++++ src/xitk/common.h 2004-01-26 01:43:43.000000000 +0100
+@@ -76,6 +76,14 @@
+ #include <lirc/lirc_client.h>
+ #endif
+
++#if !defined(TRUE)
++#define TRUE 1
++#endif
++
++#if !defined(FALSE)
++#define FALSE 0
++#endif
++
+ /*
+ * config related constants
+ */