Message139613
| 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:13 | neologix | set | recipients:
+ neologix, vstinner, kais58 |
| 2011年07月01日 22:14:13 | neologix | set | messageid: <1309558453.12.0.0472996467386.issue12472@psf.upfronthosting.co.za> |
| 2011年07月01日 22:14:12 | neologix | link | issue12472 messages |
| 2011年07月01日 22:14:12 | neologix | create |
|