pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/w3m/patches Remove integrated patch.
details: https://anonhg.NetBSD.org/pkgsrc/rev/a74b4b433609
branches: trunk
changeset: 355134:a74b4b433609
user: wiz <wiz%pkgsrc.org@localhost>
date: Tue Nov 22 15:24:43 2016 +0000
description:
Remove integrated patch.
diffstat:
www/w3m/patches/patch-ab | 25 -------------------------
1 files changed, 0 insertions(+), 25 deletions(-)
diffs (29 lines):
diff -r ed38441e60c4 -r a74b4b433609 www/w3m/patches/patch-ab
--- a/www/w3m/patches/patch-ab Tue Nov 22 15:20:06 2016 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -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);
Home |
Main Index |
Thread Index |
Old Index