diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-12-22 19:35:29 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-12-22 19:35:29 +0000 |
commit | ed5a1aa63c385f4211870136d0ec1fd510ec7d5b (patch) | |
tree | ae622497c7a1fb8aa997c5266989cf42b602a8da /x11 | |
parent | 2abd771b3ed8e5216b47c0d9029573283c9c1351 (diff) | |
download | FreeBSD-ports-ed5a1aa63c385f4211870136d0ec1fd510ec7d5b.zip FreeBSD-ports-ed5a1aa63c385f4211870136d0ec1fd510ec7d5b.tar.gz |
Fix a couple long-standing and annoying bugs
PR: 15628
Submitted by: Mark Newton <newton@atdot.dotat.org>
Diffstat (limited to 'x11')
-rw-r--r-- | x11/eterm/files/patch-ai | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/x11/eterm/files/patch-ai b/x11/eterm/files/patch-ai new file mode 100644 index 0000000..3610a6b --- /dev/null +++ b/x11/eterm/files/patch-ai @@ -0,0 +1,35 @@ +*** src/command.c.old Thu Dec 23 01:39:37 1999 +--- src/command.c Thu Dec 23 01:42:00 1999 +*************** +*** 40,45 **** +--- 40,47 ---- + #include "feature.h" + #include "config.h" + ++ #undef HAVE_SAVED_UIDS ++ + /* System Headers */ + #include <stdio.h> + #include <stdlib.h> +*************** +*** 120,125 **** +--- 122,128 ---- + #endif + #ifdef HAVE_TERMIOS_H + # include <termios.h> ++ # include <sys/ttydefaults.h> + #else + # include <sgtty.h> + #endif +*************** +*** 2100,2105 **** +--- 2103,2111 ---- + # endif + # if VTIME != VEOL + tio->c_cc[VTIME] = 0; ++ # endif ++ # ifdef VSTATUS ++ tio->c_cc[VSTATUS] = CSTATUS; + # endif + + /* input modes */ |