summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-20 03:27:08 +0000
committerDavid Robillard <d@drobilla.net>2011-05-20 03:27:08 +0000
commit4999a7199470ee751d710cfca2a39b4fdc561a82 (patch)
tree9c3d83689ec89037c3ba22f3f5940857513ae189 /wscript
parentb5bbad8f77e65f8fc8655287f0d2004ebee7c787 (diff)
downloadingen-4999a7199470ee751d710cfca2a39b4fdc561a82.tar.gz
ingen-4999a7199470ee751d710cfca2a39b4fdc561a82.tar.bz2
ingen-4999a7199470ee751d710cfca2a39b4fdc561a82.zip
Remove dependency on glade and glademm (migrate to GtkBuilder).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3295 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 2 insertions, 6 deletions
diff --git a/wscript b/wscript
index 95b2414c..cfd1284d 100644
--- a/wscript
+++ b/wscript
@@ -58,11 +58,9 @@ def configure(conf):
atleast_version='0.3.0', mandatory=False)
if not Options.options.no_gui:
autowaf.check_pkg(conf, 'gtkmm-2.4', uselib_store='GTKMM',
- atleast_version='2.11.12', mandatory=False)
+ atleast_version='2.12.0', mandatory=False)
autowaf.check_pkg(conf, 'gtkmm-2.4', uselib_store='NEW_GTKMM',
atleast_version='2.14.0', mandatory=False)
- autowaf.check_pkg(conf, 'libglademm-2.4', uselib_store='GLADEMM',
- atleast_version='2.6.0', mandatory=False)
autowaf.check_pkg(conf, 'flowcanvas', uselib_store='FLOWCANVAS',
atleast_version='0.8.0', mandatory=False)
if not Options.options.no_http:
@@ -92,9 +90,7 @@ def configure(conf):
autowaf.define(conf, 'INGEN_VERSION', INGEN_VERSION)
- if (not Options.options.no_gui
- and conf.is_defined('HAVE_GLADEMM')
- and conf.is_defined('HAVE_FLOWCANVAS')):
+ if not Options.options.no_gui and conf.is_defined('HAVE_FLOWCANVAS'):
autowaf.define(conf, 'INGEN_BUILD_GUI', 1)
if conf.is_defined('HAVE_JACK'):