summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2016-11-22 15:24:43 +0000
committerwiz <wiz@pkgsrc.org>2016-11-22 15:24:43 +0000
commit35bfc9cbcaebab9c589cded17dddb5823ab61bbe (patch)
tree2aea91742f1177f0dae7f3aba13c3b511fc69ff9 /www
parentd7d4bc773fc665b0821e8a2140a4bf83c1ed8290 (diff)
downloadpkgsrc-35bfc9cbcaebab9c589cded17dddb5823ab61bbe.tar.gz
Remove integrated patch.
Diffstat (limited to 'www')
-rw-r--r--www/w3m/patches/patch-ab25
1 files changed, 0 insertions, 25 deletions
diff --git a/www/w3m/patches/patch-ab b/www/w3m/patches/patch-ab
deleted file mode 100644
index 4af3ae69ecb..00000000000
--- a/www/w3m/patches/patch-ab
+++ /dev/null
@@ -1,25 +0,0 @@
-$NetBSD: patch-ab,v 1.14 2016/11/06 19:30:42 wiz Exp $
-
-Suspend the job w3m belongs to, not w3m only.
-https://github.com/tats/w3m/pull/34
-
---- main.c.orig 2016-10-31 11:28:45.000000000 +0000
-+++ main.c
-@@ -2619,7 +2620,17 @@ DEFUN(susp, INTERRUPT SUSPEND, "Suspend
- shell = "/bin/sh";
- system(shell);
- #else /* SIGSTOP */
-+#ifdef SIGTSTP
-+ signal(SIGTSTP, SIG_DFL); /* just in case */
-+ /*
-+ * Note: If susp() was called from SIGTSTP handler,
-+ * unblocking SIGTSTP would be required here.
-+ * Currently not.
-+ */
-+ kill(0, SIGTSTP); /* stop whole job, not a single process */
-+#else
- kill((pid_t) 0, SIGSTOP);
-+#endif
- #endif /* SIGSTOP */
- fmInit();
- displayBuffer(Currentbuf, B_FORCE_REDRAW);