pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/chat/ircII Added a patch that is needed for Solaris wi...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a40b1cc99c7c
branches:  trunk
changeset: 518359:a40b1cc99c7c
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Thu Sep 07 13:09:50 2006 +0000

description:
Added a patch that is needed for Solaris with SunPro.

diffstat:

 chat/ircII/distinfo         |   3 ++-
 chat/ircII/patches/patch-ad |  15 +++++++++++++++
 2 files changed, 17 insertions(+), 1 deletions(-)

diffs (31 lines):

diff -r a941197c88ae -r a40b1cc99c7c chat/ircII/distinfo
--- a/chat/ircII/distinfo       Thu Sep 07 11:54:59 2006 +0000
+++ b/chat/ircII/distinfo       Thu Sep 07 13:09:50 2006 +0000
@@ -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 -r a941197c88ae -r a40b1cc99c7c chat/ircII/patches/patch-ad
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/chat/ircII/patches/patch-ad       Thu Sep 07 13:09:50 2006 +0000
@@ -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



Home | Main Index | Thread Index | Old Index