summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorjwise <jwise@pkgsrc.org>2010-12-13 19:32:11 +0000
committerjwise <jwise@pkgsrc.org>2010-12-13 19:32:11 +0000
commitc98550a20f7b723eef73a990d499000be5c714ce (patch)
treefa8dfb52eecbac6580ca1cc4e3761785b73c5097 /chat
parent40764996a0736f97360b4813b836f92c9b2a9d1b (diff)
downloadpkgsrc-c98550a20f7b723eef73a990d499000be5c714ce.tar.gz
Work around an issue where SunOS (10) definition of SIGRTMIN and SIGRTMAX
confuses ircII signal handling autogeneration.
Diffstat (limited to 'chat')
-rw-r--r--chat/ircII/distinfo3
-rw-r--r--chat/ircII/patches/patch-ae22
2 files changed, 24 insertions, 1 deletions
diff --git a/chat/ircII/distinfo b/chat/ircII/distinfo
index 30db585b25f..4d78d9c6442 100644
--- a/chat/ircII/distinfo
+++ b/chat/ircII/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.32 2010/08/12 04:02:28 mrg Exp $
+$NetBSD: distinfo,v 1.33 2010/12/13 19:32:11 jwise Exp $
SHA1 (ircii-20081115.tar.bz2) = 253f16e734483eda484f6d629d2a5858aded6a6e
RMD160 (ircii-20081115.tar.bz2) = 78b83979e52c99f5b95302cce743ef0f622bcbb0
@@ -7,3 +7,4 @@ SHA1 (patch-aa) = f253835c49e8047c5952bec44c23bec3b0e89c91
SHA1 (patch-ab) = dfead7978f3efa1b25c7e81054ff8f666069a3d5
SHA1 (patch-ac) = c77444f1fbd089cb7ef9de26224db4a13fc03f25
SHA1 (patch-ad) = a8da3adea3b7c61d453e5e5e9f53024b8e1f128f
+SHA1 (patch-ae) = 3d922d7ff87ef9251406b36c0366b1ec1130d80a
diff --git a/chat/ircII/patches/patch-ae b/chat/ircII/patches/patch-ae
new file mode 100644
index 00000000000..da05b6081fb
--- /dev/null
+++ b/chat/ircII/patches/patch-ae
@@ -0,0 +1,22 @@
+$NetBSD: patch-ae,v 1.3 2010/12/13 19:32:11 jwise Exp $
+
+Sun's definition of SIGRTM(AX|IN) confuses us.
+
+--- source/mksiginc.c.orig Mon Dec 13 14:24:36 2010
++++ source/mksiginc.c Mon Dec 13 14:27:19 2010
+@@ -191,6 +191,7 @@
+ signames[SIGRETRACT] = "RETRACT";
+ #endif
+
++#ifndef __sun
+ #if defined(SIGRTMAX) && SIGRTMAX < MY_MAXSIG
+ signames[SIGRTMAX] = "RTMAX";
+ #endif
+@@ -198,6 +199,7 @@
+ #if defined(SIGRTMIN) && SIGRTMIN < MY_MAXSIG
+ signames[SIGRTMIN] = "RTMIN";
+ #endif
++#endif
+
+ #if defined(SIGSAK) && SIGSAK < MY_MAXSIG
+ signames[SIGSAK] = "SAK";