summaryrefslogtreecommitdiff
path: root/x11/kterm/patches
diff options
context:
space:
mode:
authoritojun <itojun>2003-08-13 23:56:36 +0000
committeritojun <itojun>2003-08-13 23:56:36 +0000
commitce7ff00cdf2086b06dce646e23d6349495b41324 (patch)
treebdf9bff19fe151d65ef9848ffd586e42d567f6f6 /x11/kterm/patches
parent7e3902f46fd28ca72bbf14ac3bab08dd6a52c275 (diff)
downloadpkgsrc-ce7ff00cdf2086b06dce646e23d6349495b41324.tar.gz
update KAME patch (use cfsetispeed/ospeed, from more recent kterm).
bump PKGREVISION to 4.
Diffstat (limited to 'x11/kterm/patches')
-rw-r--r--x11/kterm/patches/patch-ac14
-rw-r--r--x11/kterm/patches/patch-ad24
2 files changed, 0 insertions, 38 deletions
diff --git a/x11/kterm/patches/patch-ac b/x11/kterm/patches/patch-ac
deleted file mode 100644
index 771784602ad..00000000000
--- a/x11/kterm/patches/patch-ac
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2002/07/04 14:05:33 itojun Exp $
-
---- Imakefile.orig Fri Jul 12 14:01:04 1996
-+++ Imakefile Thu Jul 4 23:03:03 2002
-@@ -23,6 +23,9 @@
- PUCCPTYDDEF = -DPUCC_PTYD /* does not need to be setuid */
- PTYLIB = -lpucc
- #endif
-+#ifdef NetBSDArchitecture
-+ PTYLIB = -lutil
-+#endif
-
- OSMAJORVERSION = OSMajorVersion
- OSMINORVERSION = OSMinorVersion
diff --git a/x11/kterm/patches/patch-ad b/x11/kterm/patches/patch-ad
deleted file mode 100644
index 2255b6148a5..00000000000
--- a/x11/kterm/patches/patch-ad
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2002/07/04 14:05:33 itojun Exp $
-
---- main.c.orig Thu Jul 4 23:02:25 2002
-+++ main.c Thu Jul 4 23:03:03 2002
-@@ -392,6 +392,10 @@
- #include <locale.h>
- #endif
-
-+#ifdef __NetBSD__
-+#include <util.h>
-+#endif
-+
- #ifdef SYSV
- extern char *ptsname();
- #endif
-@@ -1719,7 +1723,7 @@
- get_pty (pty)
- int *pty;
- {
--#ifdef __osf__
-+#if defined(__osf__) || defined(__NetBSD__)
- int tty;
- return (openpty(pty, &tty, ttydev, NULL, NULL));
- #endif