summaryrefslogtreecommitdiff
path: root/misc/mshell/files/patch-ab
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 21:38:59 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 21:38:59 +0000
commitbeced671bdcb6ffe50e652d814ac803ba36386d8 (patch)
tree88eb9dbb4fc80b7d159c64e16db129bdd9b80aed /misc/mshell/files/patch-ab
parentAdd the current SUSv4/Open Group Base Specifications Issue 7. (diff)
Remove non staged ports without pending PR from m*
Notes
Notes: svn path=/head/; revision=366962
Diffstat (limited to 'misc/mshell/files/patch-ab')
-rw-r--r--misc/mshell/files/patch-ab37
1 files changed, 0 insertions, 37 deletions
diff --git a/misc/mshell/files/patch-ab b/misc/mshell/files/patch-ab
deleted file mode 100644
index 8c6ebc6fcae2..000000000000
--- a/misc/mshell/files/patch-ab
+++ /dev/null
@@ -1,37 +0,0 @@
---- settatr.c.orig Mon Mar 26 14:59:01 2007
-+++ settatr.c Mon Mar 26 15:00:41 2007
-@@ -4,7 +4,7 @@
-
- set_terminal_attributes()
- {
--#ifdef BSD
-+#if 0
- struct sgttyb sg;
- struct tchars tc;
- struct ltchars lt;
-@@ -33,20 +33,19 @@
- lt.t_rprntc = '';
- ioctl ( 0, TIOCSLTC, &lt );
- #endif
--#ifdef SYSV
-- struct termio t;
-+#if 1
-+ struct termios t;
-
-- ioctl ( 0, TCGETA, &t );
-+ tcgetattr(0, &t);
-
- t.c_cc[VINTR] = '\003';
- t.c_cc[VERASE] = '\b';
- t.c_cc[VKILL] = '\025';
- t.c_iflag = IGNBRK | IGNPAR | ICRNL | IXON ;
-- t.c_oflag = OPOST | ONLCR ;
-+ t.c_oflag = OPOST | ONLCR | OXTABS;
- t.c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK ;
-- t.c_cflag |= TAB3;
-
-- ioctl ( 0, TCSETA, &t );
-+ tcsetattr(0, TCSANOW, &t);
- #endif
- }
- set_resource_limits()