summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-01-15 11:28:57 +0000
committerCarl Hetherington <cth@carlh.net>2019-01-15 12:27:47 +0000
commit667b031411da20fb026d5c15ef4293f2035c9fcf (patch)
tree53665d396f77f843647700eeef7c7fd82556ab17 /src
parent3f3b9712e186821b19e84b02f7f4d9d7a8112f37 (diff)
Avoid linking webview to fix Centos 7 build.
Diffstat (limited to 'src')
-rw-r--r--src/wx/wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/wscript b/src/wx/wscript
index cdd7e691c..4ddafc648 100644
--- a/src/wx/wscript
+++ b/src/wx/wscript
@@ -147,7 +147,7 @@ def configure(conf):
conf.check_cfg(msg='Checking for wxWidgets using gtk2-unicode-3.0',
package='',
path=wx_config,
- args='--cppflags --cxxflags --libs std,richtext',
+ args='--cppflags --cxxflags --libs core,richtext,adv',
uselib_store='WXWIDGETS',
mandatory=True)
except:
@@ -156,7 +156,7 @@ def configure(conf):
conf.check_cfg(msg='Checking for wxWidgets using wx-config-3.0-gtk2',
package='',
path=wx_config,
- args='--cppflags --cxxflags --libs std,richtext',
+ args='--cppflags --cxxflags --libs core,richtext,adv',
uselib_store='WXWIDGETS',
mandatory=True)
except:
@@ -164,7 +164,7 @@ def configure(conf):
conf.check_cfg(msg='Checking for wxWidgets using wx-config',
package='',
path=wx_config,
- args='--cppflags --cxxflags --libs std,richtext',
+ args='--cppflags --cxxflags --libs core,richtext,adv',
uselib_store='WXWIDGETS',
mandatory=True)