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 Arfrever, doko, loewis, mark.dickinson, rpetrov, vstinner
Date 2010-05-11.08:55:17
SpamBayes Score 0.0005721947
Marked as misclassified No
Message-id <1273568120.03.0.574243239289.issue8510@psf.upfronthosting.co.za>
In-reply-to
Content
Roumen:  good catch!  Indeed, nested functions aren't legal in standard C, and the test for -fno-strict-aliasing now fails on my OS X 10.6.3 machine, where it used to pass:

  checking whether gcc accepts -fno-strict-aliasing... no

config.log contains:

  configure:5400: checking whether gcc accepts -fno-strict-aliasing
  configure:5418: gcc -fno-strict-aliasing -c -g -O2  conftest.c >&5
  conftest.c: In function 'main':
  conftest.c:27: error: nested functions are disabled, use -fnested-functions to re-enable
  configure:5418: $? = 1
  configure: failed program was:
  ...

Fixed these cases above and removed the extra '#include "confdefs.h"' lines (which seem harmless, but unnecessary) in r81077 (trunk).
History
Date User Action Args
2010-05-11 08:55:21mark.dickinsonsetrecipients: + mark.dickinson, loewis, doko, vstinner, rpetrov, Arfrever
2010-05-11 08:55:20mark.dickinsonsetmessageid: <1273568120.03.0.574243239289.issue8510@psf.upfronthosting.co.za>
2010-05-11 08:55:18mark.dickinsonlinkissue8510 messages
2010-05-11 08:55:17mark.dickinsoncreate