From 24e17b43858e165ba8384e2aa7403cecd899ad2d Mon Sep 17 00:00:00 2001 From: James Clarke Date: Mon, 30 Oct 2017 15:18:32 +0100 Subject: xfuncs: Handle missing non-POSIX termios constants Signed-off-by: James Clarke Signed-off-by: Denys Vlasenko --- libbb/xfuncs.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'libbb/xfuncs.c') 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 */ -- cgit v1.2.3