Avoid linking webview to fix Centos 7 build.
authorCarl Hetherington <cth@carlh.net>
Tue, 15 Jan 2019 11:28:57 +0000 (11:28 +0000)
committerCarl Hetherington <cth@carlh.net>
Tue, 15 Jan 2019 12:27:47 +0000 (12:27 +0000)
src/wx/wscript

index cdd7e691cd8d04307f7b8bf0d18d3a6400b48031..4ddafc648500c7ab131703ed4b20a665fe6d945d 100644 (file)
@@ -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)