aboutsummaryrefslogtreecommitdiff
path: root/libbb/xfuncs.c
diff options
context:
space:
mode:
authorJames Clarke <jrtc27@jrtc27.com>2017-10-30 15:18:32 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2017-10-30 15:18:32 +0100
commit24e17b43858e165ba8384e2aa7403cecd899ad2d (patch)
tree458a188ceafc4a0b88320f58006668aa2145beaa /libbb/xfuncs.c
parent160d027c2110d16ad9fb541cd966f73d971c074f (diff)
downloadbusybox-24e17b43858e165ba8384e2aa7403cecd899ad2d.tar.gz
xfuncs: Handle missing non-POSIX termios constants
Signed-off-by: James Clarke <jrtc27@jrtc27.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/xfuncs.c')
-rw-r--r--libbb/xfuncs.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c
index 9cbfb2836..43ae98065 100644
--- a/libbb/xfuncs.c
+++ b/libbb/xfuncs.c
@@ -355,6 +355,15 @@ int FAST_FUNC get_termios_and_make_raw(int fd, struct termios *newterm, struct t
*/
}
if (flags & TERMIOS_RAW_INPUT) {
+#ifndef IMAXBEL
+# define IMAXBEL 0
+#endif
+#ifndef IUCLC
+# define IUCLC 0
+#endif
+#ifndef IXANY
+# define IXANY 0
+#endif
/* IXOFF=0: disable sending XON/XOFF if input buf is full */
/* IXON=0: input XON/XOFF chars are not special */
/* dont convert anything on input */