From: James Clarke Date: Mon, 30 Oct 2017 14:18:32 +0000 (+0100) Subject: xfuncs: Handle missing non-POSIX termios constants X-Git-Tag: 1_28_0~26 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=24e17b43858e165ba8384e2aa7403cecd899ad2d;p=oweals%2Fbusybox.git xfuncs: Handle missing non-POSIX termios constants Signed-off-by: James Clarke Signed-off-by: Denys Vlasenko --- 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 */