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 pitrou
Recipients eric.araujo, pitrou, tarek
Date 2011-03-18.18:47:17
SpamBayes Score 0.007920543
Marked as misclassified No
Message-id <1300474039.66.0.607700128709.issue11600@psf.upfronthosting.co.za>
In-reply-to
Content
One contains the include dirs for Python, not the other:

>>> distutils.sysconfig.get_config_var('PY_CFLAGS')
'-g -O0 -Wall -Wstrict-prototypes'
>>> distutils.sysconfig.get_config_var('PY_CPPFLAGS')
'-I. -IInclude -I./Include'

In Python 2.7 and 3.1, PY_CFLAGS did contain the include dirs, so this seems to be a regression:

>>> distutils.sysconfig.get_config_var('PY_CFLAGS')
'-g -O2 -g -Wall -Wstrict-prototypes -I. -IInclude -I./Include  -DPy_BUILD_CORE'
History
Date User Action Args
2011-03-18 18:47:19pitrousetrecipients: + pitrou, tarek, eric.araujo
2011-03-18 18:47:19pitrousetmessageid: <1300474039.66.0.607700128709.issue11600@psf.upfronthosting.co.za>
2011-03-18 18:47:17pitroulinkissue11600 messages
2011-03-18 18:47:17pitroucreate