From 65e56a5175e5ca21de86dfecacf7656c65f7ca2e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 16 Sep 2018 16:55:30 +0200 Subject: Hide warnings from Gtk libraries --- wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wscript b/wscript index da4fdbd..b7d049a 100644 --- a/wscript +++ b/wscript @@ -39,9 +39,9 @@ def configure(conf): autowaf.set_c_lang(conf, 'c99') autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK', - atleast_version='2.0.0', mandatory=True) + atleast_version='2.0.0', system=True, mandatory=True) autowaf.check_pkg(conf, 'gtkmm-2.4', uselib_store='GTKMM', - atleast_version='2.10.0', mandatory=True) + atleast_version='2.10.0', system=True, mandatory=True) if Options.options.gir: autowaf.check_pkg(conf, 'gobject-introspection-1.0', @@ -51,7 +51,7 @@ def configure(conf): if not Options.options.no_graphviz: autowaf.check_pkg(conf, 'libgvc', uselib_store='AGRAPH', - atleast_version='2.30', mandatory=False) + atleast_version='2.30', system=True, mandatory=False) if not Options.options.no_fdgl: autowaf.define(conf, 'GANV_FDGL', 1) -- cgit v1.2.1