Issue 1261

This commit is contained in:
Thomas Nagy 2013-03-04 17:13:31 +01:00
parent 7aab452acb
commit 0f64aea102
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ NEW IN WAF 1.7.10
* Codelite plugin by Christian Klein
* Validate the versioned library number #1180
* New export_defines keyword for C/C++/Fortran libraries
* Python config tests enhancements #1231
* Python config tests enhancements #1231 #1261
NEW IN WAF 1.7.9
----------------

View File

@ -269,7 +269,7 @@ def check_python_headers(conf):
#name = 'python' + env['PYTHON_VERSION']
# TODO simplify this
for name in ('python' + env['PYTHON_VERSION'], 'python' + env['PYTHON_VERSION'].replace('.', '')):
for name in ('python' + env['PYTHON_VERSION'], 'python' + env['PYTHON_VERSION'] + 'm', 'python' + env['PYTHON_VERSION'].replace('.', '')):
# LIBPATH_PYEMBED is already set; see if it works.
if not result and env['LIBPATH_PYEMBED']: