Message141120
| Author |
skrah |
| Recipients |
eric.araujo, neologix, python-dev, rpointel, skrah, stsp, vstinner |
| Date |
2011年07月25日.19:55:17 |
| SpamBayes Score |
0.009482643 |
| Marked as misclassified |
No |
| Message-id |
<1311623718.7.0.943094902455.issue12560@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
For the record: The other failures I mentioned were almost certainly
OpenBSD 4.5 / autoconf specific, so I didn't bother. Cairo has a
workaround, but I think that goes too far.
http://cairo.sourcearchive.com/documentation/1.9.4/cairo-atomic-private_8h-source.html
/* The autoconf on OpenBSD 4.5 produces the malformed constant name
* SIZEOF_VOID__ rather than SIZEOF_VOID_P. Work around that here. */
#if !defined(SIZEOF_VOID_P) && defined(SIZEOF_VOID__)
# define SIZEOF_VOID_P SIZEOF_VOID__
#endif |
|