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 mark.dickinson
Recipients Tom.OConnor, akitada, eric.smith, mark.dickinson, skrah, trent
Date 2012-11-28.20:38:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1354135093.94.0.339952982279.issue10052@psf.upfronthosting.co.za>
In-reply-to
Content
This is also an issue on the Tru64 / alpha on Snakebite:  that platform has inttypes.h but no stdint.h, and inttypes.h has typedefs for uint32_t and friends, but no defines for UINT32_MAX, etc.  So the pyport.h check:

#if (defined UINT32_MAX || defined uint32_t)

fails (uint32_t is a typedef rather than a #define). To make matters worse, the autoconf macro AC_TYPE_UINT32_T correctly detects that uint32_t exists, so doesn't bother to define it.

The ideal place to fix this would be in the configure scripts.
History
Date User Action Args
2012-11-28 20:38:14mark.dickinsonsetrecipients: + mark.dickinson, eric.smith, trent, akitada, skrah, Tom.OConnor
2012-11-28 20:38:13mark.dickinsonsetmessageid: <1354135093.94.0.339952982279.issue10052@psf.upfronthosting.co.za>
2012-11-28 20:38:13mark.dickinsonlinkissue10052 messages
2012-11-28 20:38:13mark.dickinsoncreate