summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-16 16:55:30 +0200
committerDavid Robillard <d@drobilla.net>2018-09-16 17:08:16 +0200
commit65e56a5175e5ca21de86dfecacf7656c65f7ca2e (patch)
tree0b8c5ba1257282eb52179d41237d623cb9e5391a /wscript
parentc6e874c2cc1c5c99a3859112e1bba0f07bcdb8ba (diff)
downloadganv-65e56a5175e5ca21de86dfecacf7656c65f7ca2e.tar.gz
ganv-65e56a5175e5ca21de86dfecacf7656c65f7ca2e.tar.bz2
ganv-65e56a5175e5ca21de86dfecacf7656c65f7ca2e.zip
Hide warnings from Gtk libraries
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files 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)