aboutsummaryrefslogtreecommitdiffstats
path: root/japanese/kterm/files
diff options
context:
space:
mode:
authornork <nork@FreeBSD.org>2006-06-21 14:54:43 +0800
committernork <nork@FreeBSD.org>2006-06-21 14:54:43 +0800
commit6408603d95cfe01d3e702563ea9b8e9a4046afd0 (patch)
tree7bdbbdeef23458d620e9bc42351dc590673da587 /japanese/kterm/files
parent9d929a353613a751f5186d3ba911b76d6af35062 (diff)
downloadfreebsd-ports-gnome-6408603d95cfe01d3e702563ea9b8e9a4046afd0.tar.gz
freebsd-ports-gnome-6408603d95cfe01d3e702563ea9b8e9a4046afd0.tar.zst
freebsd-ports-gnome-6408603d95cfe01d3e702563ea9b8e9a4046afd0.zip
o Set stty min & vtime.
o Bump PORTREVISION, accordingly. PR: ports/92184 Submitted by: TOMITA Yoshinori <yoshint@flab.fujitsu.co.jp>
Diffstat (limited to 'japanese/kterm/files')
-rw-r--r--japanese/kterm/files/patch-main.c34
1 files changed, 26 insertions, 8 deletions
diff --git a/japanese/kterm/files/patch-main.c b/japanese/kterm/files/patch-main.c
index 0091f5283435..e82a38037f0d 100644
--- a/japanese/kterm/files/patch-main.c
+++ b/japanese/kterm/files/patch-main.c
@@ -1,12 +1,30 @@
---- main.c.orig Tue Dec 20 22:31:20 2005
-+++ main.c Tue Dec 20 22:35:22 2005
-@@ -237,7 +237,9 @@
- #endif
- #else /* } !SYSV { */ /* BSD systems */
- #ifndef linux
+--- main.c.orig Wed Jun 21 15:49:06 2006
++++ main.c Wed Jun 21 15:50:17 2006
+@@ -210,7 +210,9 @@
+ #undef FIOCLEX
+ #undef FIONCLEX
+ #define setpgrp2 setpgrp
+#ifndef USE_POSIX_TERMIOS
#include <sgtty.h>
+#endif
- #endif
#include <sys/resource.h>
- #define HAS_UTMP_UT_HOST
+ #endif
+ #ifdef sco
+@@ -1355,6 +1357,8 @@
+ d_tio.c_cc[VDISCARD] = CFLUSH;
+ d_tio.c_cc[VWERASE] = CWERASE;
+ d_tio.c_cc[VLNEXT] = CLNEXT;
++ d_tio.c_cc[VMIN] = 1;
++ d_tio.c_cc[VTIME] = 0;
+ #endif /* } */
+ #ifdef TIOCSLTC /* { */
+ d_ltc.t_suspc = CSUSP; /* t_suspc */
+@@ -1403,6 +1407,8 @@
+ d_tio.c_cc[VQUIT] = CQUIT; /* '^\' */
+ d_tio.c_cc[VEOF] = CEOF; /* '^D' */
+ d_tio.c_cc[VEOL] = CEOL; /* '^@' */
++ d_tio.c_cc[VMIN] = 1;
++ d_tio.c_cc[VTIME] = 0;
+ #ifdef VSWTCH
+ d_tio.c_cc[VSWTCH] = CSWTCH; /* usually '^Z' */
+ #endif