diff options
author | rillig <rillig> | 2006-09-07 13:09:50 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-09-07 13:09:50 +0000 |
commit | e056232e1f86612c6b4f695bdd7aa3d85d58dffd (patch) | |
tree | e2b9fbef2cd5a80bff4317347d5b356aa16e81f8 /chat | |
parent | 00b2aa05e499f2b927a8d2164b2119e5fbda12e2 (diff) | |
download | pkgsrc-e056232e1f86612c6b4f695bdd7aa3d85d58dffd.tar.gz |
Added a patch that is needed for Solaris with SunPro.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/ircII/distinfo | 3 | ||||
-rw-r--r-- | chat/ircII/patches/patch-ad | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/chat/ircII/distinfo b/chat/ircII/distinfo index da40e2ee871..a1345ebea4a 100644 --- a/chat/ircII/distinfo +++ b/chat/ircII/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.27 2006/07/26 02:21:35 mrg Exp $ +$NetBSD: distinfo,v 1.28 2006/09/07 13:09:50 rillig Exp $ SHA1 (ircii-20060725.tar.bz2) = 1070667f8bce6fdd5a5dc05af934d79f61ecd42a RMD160 (ircii-20060725.tar.bz2) = 9273d491c0a02c6235ff8918778171025d8fd053 Size (ircii-20060725.tar.bz2) = 560505 bytes SHA1 (patch-ac) = 646fe06e22f64057cced1386c70a97f600d0bcb2 +SHA1 (patch-ad) = 9aee81f4c9f257b5c4d30ea95aaf728e9916cf54 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 |