RE: Python-Dev Digest, Vol 3, Issue 2

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"

"Schneider, Michael" wrote SGI python 1.3.2 rc2 fails to build on irix. There is a compile error in termios.c.
I'm not sure what 1.3.2 rc2 might mean. Is this 2.3.1c1? If so, which exact version of Irix is this on, and which compiler (and version of compiler)
This is caused by the fact that SGI #defines some control chars, but does not implement them.
Argh. This is a way ugly problem - why does the OS define them and not implement them? Anthony -- Anthony Baxter <anthony@interlink.com.au> It's never too late to have a happy childhood.

On Wed, Oct 01, 2003, Schneider, Michael wrote:
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?
Did 2.3 or 2.3.1 compile correctly? If not, it's too late to get this into 2.3.2. -- Aahz (aahz@pythoncraft.com) <*> http://www.pythoncraft.com/ "It is easier to optimize correct code than to correct optimized code." --Bill Harlan
participants (3)
-
Aahz
-
Anthony Baxter
-
Schneider, Michael