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 loewis
Recipients
Date 2005-09-29.18:36:54
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=21627

Can you please attach the generated pyconfig.h? Also, if
possible, can you please attache the preprocessor output of

cc -E -native -xc99=%none -xarch=native64 -mt -xO3
-DNDEBUG -O -I. -I../Include -DPy_BUILD_CORE ../Modules/python.c

As for disabling C99: Python should be perfectly compatible
with C99, and the most recent POSIX release. So there is no
need to disable this. pyconfig.h should set _XOPEN_SOURCE to
600, requesting POSIX 2003. In turn, in line 269 for
feature_tests.h, _XPG6 should be defined, and the #error
should not occur. Can you please investigate why it still does?

As for the distutils bug you are seeing: It comes from the
%none being treated as a format argument. Please try the
attached patch.
History
Date User Action Args
2007-08-23 14:34:52adminlinkissue1306253 messages
2007-08-23 14:34:52admincreate