Charles-François Natali <neolo...@free.fr> added the comment: That's because struct timeval is not defined by <sys/time.h> on IRIX, or it doesn't get included in Modules/signalmodule.c.
Can you try to compile the following code with the same compiler/options? """ #include <sys/time.h> int main(int argc, char *argv[]) { struct timeval tv; return 0; } """ By the way, is IRIX an officially supported platform? ---------- nosy: +haypo, neologix _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue12472> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com