From ecd46f4c6e6205f9ed372e717f8011a0303ee8c2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 18 Dec 2010 18:08:58 +0000 Subject: Add missing check for glibmm (fix ticket #617). git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2761 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index 9d37816..c1bb892 100644 --- a/wscript +++ b/wscript @@ -46,9 +46,11 @@ def configure(conf): autowaf.display_header('Raul Configuration') conf.check_tool('compiler_cxx') autowaf.check_pkg(conf, 'glib-2.0', atleast_version='2.2', - uselib_store='GLIB', mandatory=True) + uselib_store='GLIB', mandatory=True) + autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', + atleast_version='2.14.0', mandatory=True) autowaf.check_pkg(conf, 'gthread-2.0', atleast_version='2.14.0', - uselib_store='GTHREAD', mandatory=True) + uselib_store='GTHREAD', mandatory=True) conf.env['BUILD_TESTS'] = Options.options.build_tests -- cgit v1.2.1