summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-10-17 13:32:50 +0200
committerDavid Robillard <d@drobilla.net>2019-10-17 13:32:50 +0200
commit8ae650ea0993c80f4ed1330fa10c6192825e5785 (patch)
tree22d4248b2b787c6c3aa844dcc9e6f6ac1bf4f15e /src
parent69623bbe00a9d186f8fdb8921b70acadf8ba6465 (diff)
downloadingen-8ae650ea0993c80f4ed1330fa10c6192825e5785.tar.gz
ingen-8ae650ea0993c80f4ed1330fa10c6192825e5785.tar.bz2
ingen-8ae650ea0993c80f4ed1330fa10c6192825e5785.zip
Update autowaf
Diffstat (limited to 'src')
-rw-r--r--src/gui/wscript29
1 files changed, 19 insertions, 10 deletions
diff --git a/src/gui/wscript b/src/gui/wscript
index ba0026ef..a483f5a4 100644
--- a/src/gui/wscript
+++ b/src/gui/wscript
@@ -9,17 +9,26 @@ def options(ctx):
help='use light coloured theme')
def configure(conf):
- autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM',
- atleast_version='2.14.0', system=True, mandatory=False)
- autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD',
- atleast_version='2.14.0', system=True, mandatory=False)
- autowaf.check_pkg(conf, 'gtkmm-2.4', uselib_store='GTKMM',
- atleast_version='2.14.0', system=True, mandatory=False)
- autowaf.check_pkg(conf, 'ganv-1', uselib_store='GANV',
- atleast_version='1.5.4', mandatory=False)
+ conf.check_pkg('glibmm-2.4 >= 2.14.0',
+ uselib_store='GLIBMM',
+ system=True,
+ mandatory=False)
+ conf.check_pkg('gthread-2.0 >= 2.14.0',
+ uselib_store='GTHREAD',
+ system=True,
+ mandatory=False)
+ conf.check_pkg('gtkmm-2.4 >= 2.14.0',
+ uselib_store='GTKMM',
+ system=True,
+ mandatory=False)
+ conf.check_pkg('ganv-1 >= 1.5.4',
+ uselib_store='GANV',
+ mandatory=False)
if not Options.options.no_webkit:
- autowaf.check_pkg(conf, 'webkit-1.0', uselib_store='WEBKIT',
- atleast_version='1.4.0', system=True, mandatory=False)
+ conf.check_pkg('webkit-1.0 >= 1.4.0',
+ uselib_store='WEBKIT',
+ system=True,
+ mandatory=False)
if conf.env.HAVE_GANV and conf.env.HAVE_GTKMM:
conf.env.INGEN_BUILD_GUI = 1