summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Kohler <bkohler@gentoo.org>2019-09-18 09:46:03 -0500
committerBen Kohler <bkohler@gentoo.org>2019-09-18 09:46:03 -0500
commit42383b0341c4bfee133291ecb41742446ffec7c9 (patch)
treee4a2876af795829c7a1b7a2139c5939d0fc22655 /net-irc/ircii/files
parentnet-misc/cmst: fix minor QA issue & drop old (diff)
downloadgentoo-42383b0341c4bfee133291ecb41742446ffec7c9.tar.gz
gentoo-42383b0341c4bfee133291ecb41742446ffec7c9.tar.bz2
gentoo-42383b0341c4bfee133291ecb41742446ffec7c9.zip
net-irc/ircii: 20190117 stable, drop old
Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'net-irc/ircii/files')
-rw-r--r--net-irc/ircii/files/ircii-20110228-glibc.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/net-irc/ircii/files/ircii-20110228-glibc.patch b/net-irc/ircii/files/ircii-20110228-glibc.patch
deleted file mode 100644
index 291bf3219eb2..000000000000
--- a/net-irc/ircii/files/ircii-20110228-glibc.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From: Nathan Phillip Brink <ohnobinki@ohnopublishing.net>
-
-Support glibc systems where SIGRTMAX and SIGRTMIN macros can only be fully expanded at runtime.
-
---- a/source/mksiginc.c
-+++ b/source/mksiginc.c
-@@ -191,12 +191,18 @@
- signames[SIGRETRACT] = "RETRACT";
- #endif
-
--#if defined(SIGRTMAX) && SIGRTMAX < MY_MAXSIG
-- signames[SIGRTMAX] = "RTMAX";
-+#if defined(SIGRTMAX)
-+ /*
-+ * In recent glibc, SIGRTMAX and SIGRTMIN macros are runtime
-+ * function calls into libc and must be evaluated at runtime.
-+ */
-+ if (SIGRTMAX < MY_MAXSIG)
-+ signames[SIGRTMAX] = "RTMAX";
- #endif
-
--#if defined(SIGRTMIN) && SIGRTMIN < MY_MAXSIG
-- signames[SIGRTMIN] = "RTMIN";
-+#if defined(SIGRTMIN)
-+ if (SIGRTMIN < MY_MAXSIG)
-+ signames[SIGRTMIN] = "RTMIN";
- #endif
-
- #if defined(SIGSAK) && SIGSAK < MY_MAXSIG