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.23:17:49
SpamBayes Score 2.8299573e-07
Marked as misclassified No
Message-id <1309562269.73.0.752143737575.issue12472@psf.upfronthosting.co.za>
In-reply-to
Content
You can't include both <unistd.h> and <sys/time.h> on IRIX...
Nice one!

A couple suggestions (in this order):
1) try putting "#include <sys/time.h>" before "#include "Python.h""

2) try this:
20 #undef select
21 #include <sys/time.h>

3) fix the header yourself (remove the static storage class from select in <sys/time.h>)

4) complain loudly to your vendor...
History
Date User Action Args
2011-07-01 23:17:49neologixsetrecipients: + neologix, vstinner, kais58
2011-07-01 23:17:49neologixsetmessageid: <1309562269.73.0.752143737575.issue12472@psf.upfronthosting.co.za>
2011-07-01 23:17:49neologixlinkissue12472 messages
2011-07-01 23:17:49neologixcreate