This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author neologix
Recipients kais58, neologix, vstinner
Date 2011-07-01.22:14:12
SpamBayes Score 7.012615e-06
Marked as misclassified No
Message-id <1309558453.12.0.0472996467386.issue12472@psf.upfronthosting.co.za>
In-reply-to
Content
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?
History
Date User Action Args
2011-07-01 22:14:13neologixsetrecipients: + neologix, vstinner, kais58
2011-07-01 22:14:13neologixsetmessageid: <1309558453.12.0.0472996467386.issue12472@psf.upfronthosting.co.za>
2011-07-01 22:14:12neologixlinkissue12472 messages
2011-07-01 22:14:12neologixcreate