From b910acaef120cce61508fc57eab07bb0286a29ec Mon Sep 17 00:00:00 2001 From: root Date: Thu, 28 Jun 2018 22:50:20 +0200 Subject: [PATCH] - readme.rst : hint for custom built python use --option-shared - wscript : correction to be able to compile for custom built python on linux (correct WAF parameters) - build.py : prepared for waf 2.0.8 --- README.rst | 3 ++- build.py | 3 +++ wscript | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index e6adcec7..e79ebde9 100644 --- a/README.rst +++ b/README.rst @@ -370,6 +370,8 @@ installed, if they are available. For example: * libwebkit2gtk-4.0-dev * libsdl2-dev +If You use a custom built python in a non standard location, You need to +compile python with the --enable-shared option. **Mac OSX** @@ -413,4 +415,3 @@ once per day, on any day that has had a commit to the master branch. .. image:: docs/phoenix-fire-md.png :width: 100% - diff --git a/build.py b/build.py index 673e632e..802d06c0 100755 --- a/build.py +++ b/build.py @@ -85,6 +85,9 @@ sipMD5 = { wafCurrentVersion = '2.0.7' wafMD5 = '48ac1250bcccd0674cf461937875ce9a' +# enable this as soon as waf-2.0.8.bz2 is uploaded to https://wxpython.org/tools +# wafCurrentVersion = '2.0.8' +# wafMD5 = 'e1df61f724cc50efedbde867026ce4e3' doxygenCurrentVersion = '1.8.8' doxygenMD5 = { diff --git a/wscript b/wscript index d7227c0b..08ca54a6 100644 --- a/wscript +++ b/wscript @@ -314,7 +314,7 @@ def configure(conf): # speicifc Python instance instead of the one that is loading the # wxPython extension modules. That's okay for PYEMBED but not for PYEXT # configs. - if isDarwin: + if not isWindows: conf.env.LIBPATH_PYEXT = [] conf.env.LIB_PYEXT = []