[Python-checkins] CVS: python/dist/src/Modules termios.c,2.24.2.2,2.24.2.3

Thomas Wouters twouters@users.sourceforge.net
Mon, 11 Jun 2001 08:21:45 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv2209/Modules

Modified Files:
      Tag: release21-maint
	termios.c 
Log Message:

Protect the use of the VWERASE symbol by an #ifdef, it's apparently missing
on (some versions of ?) AIX.



Index: termios.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/termios.c,v
retrieving revision 2.24.2.2
retrieving revision 2.24.2.3
diff -C2 -r2.24.2.2 -r2.24.2.3
*** termios.c	2001/05/23 11:32:06	2.24.2.2
--- termios.c	2001/06/11 15:21:43	2.24.2.3
***************
*** 543,547 ****
--- 543,549 ----
  	{"VDISCARD", VDISCARD},
  #endif
+ #ifdef VWERASE
  	{"VWERASE", VWERASE},
+ #endif
  	{"VLNEXT", VLNEXT},
  	{"VEOL2", VEOL2},