From 5353b8c88e3c82812e41e3411d1085e0dd481a1b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 19 Oct 2008 21:36:38 +0000 Subject: Make ingen actually run again :) git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1688 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index 13418de3..0570732d 100644 --- a/wscript +++ b/wscript @@ -50,11 +50,12 @@ def configure(conf): fe.define = 'HAVE_POSIX_MEMALIGN' fe.run() - build_gui = conf.env['GLADEMM'] == 1 and conf.env['FLOWCANVAS'] == 1 + build_gui = conf.env['HAVE_GLADEMM'] == 1 and conf.env['HAVE_FLOWCANVAS'] == 1 conf.define('INGEN_VERSION', INGEN_VERSION) conf.define('BUILD_GUI', build_gui) conf.define('HAVE_JACK_MIDI', conf.env['HAVE_JACK'] == 1) + conf.define('INGEN_DATA_DIR', os.path.normpath(conf.env['DATADIR'] + 'ingen')) conf.write_config_header('config.h') autowaf.print_summary(conf) @@ -64,6 +65,7 @@ def configure(conf): autowaf.display_msg("HTTP", str(conf.env['HAVE_SOUP'] == 1), 'YELLOW') autowaf.display_msg("LV2", str(conf.env['HAVE_SLV2'] == 1), 'YELLOW') autowaf.display_msg("LADSPA", str(conf.env['HAVE_LADSPA'] == 1), 'YELLOW') + autowaf.display_msg("Build GUI", str(conf.env['BUILD_GUI'] == 1), 'YELLOW') print def build(bld): -- cgit v1.2.1