[Python-Dev] RE: Python-Dev Digest, Vol 3, Issue 2
Schneider, Michael
michael.l.schneider at eds.com
Wed Oct 1 11:28:09 EDT 2003
SGI python 1.3.2 rc2 fails to build on irix. There is a compile error in termios.c.
This is caused by the fact that SGI #defines some control chars, but does not implement them.
If the following code is added to Modules/termios.c, then the problem is fixed, and all is well on IRIX.
Can someone get this in?
Thanks,
Mike
--------------------------------------------------------------------------------
// SGI #defines, but does not support these
#ifdef (__sgi)
#ifdef CLNEXT
#undef CLNEXT
#endif
#ifdef CRPRNT
# undef CRPRNT
#endif
#ifdef CWERASE
# undef CWERASE
#endif
#ifdef CFLUSH
#undef CFLUSH
#endif
#ifdef CDSUSP
#undef CDSUSP
#endif
----------------------------------------------------------------
Michael Schneider
Senior Software Engineering Consultant
EDS PLM Solutions
"The Greatest Performance Improvement Is the transitioning from a non-working state to the working state"
More information about the Python-Dev
mailing list