summaryrefslogtreecommitdiff
path: root/chat/ircII/patches
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2006-09-07 13:09:50 +0000
committerrillig <rillig@pkgsrc.org>2006-09-07 13:09:50 +0000
commitdd6e4e191b2b071a87a3d1f6fe2acf45a98bc4be (patch)
treee2b9fbef2cd5a80bff4317347d5b356aa16e81f8 /chat/ircII/patches
parent99f21cca11bb18973d23397d55101fc6786388e0 (diff)
downloadpkgsrc-dd6e4e191b2b071a87a3d1f6fe2acf45a98bc4be.tar.gz
Added a patch that is needed for Solaris with SunPro.
Diffstat (limited to 'chat/ircII/patches')
-rw-r--r--chat/ircII/patches/patch-ad15
1 files changed, 15 insertions, 0 deletions
diff --git a/chat/ircII/patches/patch-ad b/chat/ircII/patches/patch-ad
new file mode 100644
index 00000000000..6c8cf8a5478
--- /dev/null
+++ b/chat/ircII/patches/patch-ad
@@ -0,0 +1,15 @@
+$NetBSD: patch-ad,v 1.7 2006/09/07 13:09:50 rillig Exp $
+
+SunPro defines __STDC__ to 0 by default.
+
+--- include/cast_sbox.h.orig 2003-12-08 02:59:48.000000000 +0100
++++ include/cast_sbox.h 2006-09-07 15:03:47.830134796 +0200
+@@ -9,7 +9,7 @@
+ */
+
+ /* sigh */
+-#if __STDC__ /* || (__STDC__ == 0 && defined(__sun)) */
++#if __STDC__ || (__STDC__ == 0 && defined(__sun))
+ #define U(x) x##U
+ #define UL(x) x##UL
+ #else