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 9079351..54d72b2 100644
--- a/Modules/termios.c
+++ b/Modules/termios.c
@@ -542,7 +542,9 @@
 #ifdef VDISCARD
 	{"VDISCARD", VDISCARD},
 #endif
+#ifdef VWERASE
 	{"VWERASE", VWERASE},
+#endif
 	{"VLNEXT", VLNEXT},
 	{"VEOL2", VEOL2},