summaryrefslogtreecommitdiff
path: root/x11/9term/patches/patch-ag
diff options
context:
space:
mode:
authoragc <agc>2001-05-01 09:35:40 +0000
committeragc <agc>2001-05-01 09:35:40 +0000
commit9785665902bfcbfc82b9c8b5a9b2c551fc102af2 (patch)
tree0efa6dd31c55e654ad0c180136d60807976e8c0f /x11/9term/patches/patch-ag
parentda013d86a338cfdbc3d86bffdb16b533560dcb40 (diff)
downloadpkgsrc-9785665902bfcbfc82b9c8b5a9b2c551fc102af2.tar.gz
+ Now that editors/sam installs header files and libraries, use a
conventional DEPENDS mechanism. + Avoid hardcoded "/usr/X11R6" in Makefiles + Split patch-ab into multiple patches. Should fix bulk-build problems, as well as getting rid of one more "eccentric" package.
Diffstat (limited to 'x11/9term/patches/patch-ag')
-rw-r--r--x11/9term/patches/patch-ag26
1 files changed, 26 insertions, 0 deletions
diff --git a/x11/9term/patches/patch-ag b/x11/9term/patches/patch-ag
new file mode 100644
index 00000000000..64342ea571d
--- /dev/null
+++ b/x11/9term/patches/patch-ag
@@ -0,0 +1,26 @@
+$NetBSD: patch-ag,v 1.1 2001/05/01 09:35:42 agc Exp $
+
+--- 9term/command.c.orig Mon Mar 7 01:50:51 1994
++++ 9term/command.c Fri Sep 26 16:46:53 1997
+@@ -13,7 +13,12 @@
+ #include <sys/wait.h>
+ #include <signal.h>
+ #include <grp.h>
++#include <sys/param.h>
++#if (defined(BSD) && BSD >= 199306)
++#include <termios.h>
++#else
+ #include <termio.h>
++#endif
+ #ifdef SOLARIS
+ #include <sys/stropts.h>
+ #endif
+@@ -204,7 +209,7 @@
+ */
+
+ void
+-killpg(int sig)
++O_killpg(int sig)
+ {
+ if (comm_pid)
+ kill(-comm_pid, sig);