[issue12472] Build failure on IRIX

Charles-François Natali report at bugs.python.org
Sat Jul 2 00:14:13 CEST 2011


Charles-François Natali <neologix at 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 <report at bugs.python.org>
<http://bugs.python.org/issue12472>
_______________________________________


More information about the Python-bugs-list mailing list