From: Thomas Wouters Date: Mon, 11 Jun 2001 15:21:43 +0000 (+0000) Subject: Protect the use of the VWERASE symbol by an #ifdef, it's apparently missing X-Git-Tag: v2.1.1c1~83 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fea07844ac794563b38958b40d1856a76bb18030;p=thirdparty%2FPython%2Fcpython.git Protect the use of the VWERASE symbol by an #ifdef, it's apparently missing on (some versions of ?) AIX. --- diff --git a/Modules/termios.c b/Modules/termios.c index 9079351c66d4..54d72b2fb62a 100644 --- a/Modules/termios.c +++ b/Modules/termios.c @@ -542,7 +542,9 @@ static struct constant { #ifdef VDISCARD {"VDISCARD", VDISCARD}, #endif +#ifdef VWERASE {"VWERASE", VWERASE}, +#endif {"VLNEXT", VLNEXT}, {"VEOL2", VEOL2},