This code branch is only for non-windows so no need to conditionalize it.

Also add changelog item.
This commit is contained in:
Robin Dunn
2018-06-29 11:40:26 -07:00
parent e1679ca201
commit 36831dc8b5
2 changed files with 8 additions and 5 deletions

View File

@@ -23,6 +23,10 @@ Changes in this release include the following:
* Include the MSVC runtime DLLs for Python 3.7 builds too.
* Clear LIBPATH_PYEXT and LIB_PYEXT for linux builds too. (#904)
4.0.3 "The show must go on. (Die show-stoppers! Die!)"

View File

@@ -309,14 +309,13 @@ def configure(conf):
_cleanFlags(conf, key)
# Waf 2 is now calling pythonX.Y-config for fetching libs and flags,
# and it may be outputing flags that will cause an explicit link to
# and it may be outputting flags that will cause an explicit link to
# Python's lib, which we don't want as that could tie us to that
# speicifc Python instance instead of the one that is loading the
# specific Python instance instead of the one that is loading the
# wxPython extension modules. That's okay for PYEMBED but not for PYEXT
# configs.
if not isWindows:
conf.env.LIBPATH_PYEXT = []
conf.env.LIB_PYEXT = []
conf.env.LIBPATH_PYEXT = []
conf.env.LIB_PYEXT = []
# Use the same compilers that wxWidgets used