summaryrefslogtreecommitdiff
path: root/sysutils/skill/patches
diff options
context:
space:
mode:
authorkim <kim>1999-01-05 19:12:00 +0000
committerkim <kim>1999-01-05 19:12:00 +0000
commit6ab8c104d00e3bf21ad3ce4359752a4cb868376f (patch)
treecd009b403c68a0051750146c22fe6a41f2191d52 /sysutils/skill/patches
parenta64d47c2f9a0827843e3f3e96ec0e0a8b9eb2451 (diff)
downloadpkgsrc-6ab8c104d00e3bf21ad3ce4359752a4cb868376f.tar.gz
Updated to skill-3.7.7. The author included my patch to avoid
segfaults on BSD 4.4 -derived systems (related to getting the number of signals right). Adds support for SIGPWR on NetBSD.
Diffstat (limited to 'sysutils/skill/patches')
-rw-r--r--sysutils/skill/patches/patch-aa10
-rw-r--r--sysutils/skill/patches/patch-ab16
2 files changed, 5 insertions, 21 deletions
diff --git a/sysutils/skill/patches/patch-aa b/sysutils/skill/patches/patch-aa
index 3525ca46de2..90fe4d2bbb6 100644
--- a/sysutils/skill/patches/patch-aa
+++ b/sysutils/skill/patches/patch-aa
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.2 1998/08/07 11:14:08 agc Exp $
+$NetBSD: patch-aa,v 1.3 1999/01/05 19:12:00 kim Exp $
---- Makefile.orig Wed Oct 29 14:28:22 1997
-+++ Makefile Sat Aug 1 20:56:09 1998
-@@ -50,22 +50,29 @@
+--- Makefile.orig Wed Oct 28 11:20:26 1998
++++ Makefile Tue Jan 5 14:02:28 1999
+@@ -51,22 +51,29 @@
SHELL= /bin/sh
# CONFIGURE: Set location of executable, it's group and mode.
@@ -37,7 +37,7 @@ $NetBSD: patch-aa,v 1.2 1998/08/07 11:14:08 agc Exp $
SRCS= main.c argparse.c getproc.c
OBJS= main.o argparse.o getproc.o
-@@ -86,20 +93,20 @@
+@@ -87,20 +94,20 @@
install: skill
#(SysV) filepriv -d ${DESTDIR}/${BINDIR}/skill
diff --git a/sysutils/skill/patches/patch-ab b/sysutils/skill/patches/patch-ab
deleted file mode 100644
index e60f5ae93c7..00000000000
--- a/sysutils/skill/patches/patch-ab
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ab,v 1.1 1999/01/05 00:32:29 kim Exp $
-
---- machdep/bsd-44.c.ORIG Thu Mar 20 11:20:09 1997
-+++ machdep/bsd-44.c Mon Jan 4 19:24:00 1999
-@@ -41,9 +41,9 @@
- "PIPE", "ALRM", "TERM", "URG", "STOP", "TSTP", /* 13 - 18 */
- "CONT", "CHLD", "TTIN", "TTOU", "IO", "XCPU", /* 19 - 24 */
- "XFSZ", "VTALRM", "PROF", "WINCH", "INFO", "USR1", /* 25 - 30 */
-- "USR2", "32" /* 31 - 32 */
-+ "USR2", "PWR" /* 31 - 32 */
- };
--int NSig = NSIG;
-+int NSig = NSIG - 1;
-
- #define SETCMD(dst,src,maxlen) { \
- if (maxlen > 0) src[maxlen] = '\0'; \