From 667b031411da20fb026d5c15ef4293f2035c9fcf Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 15 Jan 2019 11:28:57 +0000 Subject: [PATCH] Avoid linking webview to fix Centos 7 build. --- src/wx/wscript | 6 +++--- 1 file 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) -- 2.30.2