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 ronaldoussoren
Recipients benjamin.peterson, eric.araujo, ronaldoussoren, tarek
Date 2013-06-14.11:50:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371210635.81.0.102822533543.issue18211@psf.upfronthosting.co.za>
In-reply-to
Content
Changeset a3559c8c614b added -Werror=statement-after-declaration to the CFLAGS for compiler that support it. 

This new flags is fine for CPython itself (which is explicitly writting in C89 style to support older compilers and Microsoft Visual Studio), but the new flags also gets used when building 3th-party extensions using distutils and might cause problems there when that code uses C99.

I don't have a good solution for this yet, the flag is useful to have when building CPython to avoid regressions in C89 support but shouldn't be used when building 3th-party extensions.
History
Date User Action Args
2013-06-14 11:50:35ronaldoussorensetrecipients: + ronaldoussoren, benjamin.peterson, tarek, eric.araujo
2013-06-14 11:50:35ronaldoussorensetmessageid: <1371210635.81.0.102822533543.issue18211@psf.upfronthosting.co.za>
2013-06-14 11:50:35ronaldoussorenlinkissue18211 messages
2013-06-14 11:50:35ronaldoussorencreate