summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-10-19 21:36:38 +0000
committerDavid Robillard <d@drobilla.net>2008-10-19 21:36:38 +0000
commit5353b8c88e3c82812e41e3411d1085e0dd481a1b (patch)
treeac2aed59660324784d2d81da2b3b93f0a0e72888 /wscript
parent7b2b8aaa0c810909922b662729774befc05e061e (diff)
downloadingen-5353b8c88e3c82812e41e3411d1085e0dd481a1b.tar.gz
ingen-5353b8c88e3c82812e41e3411d1085e0dd481a1b.tar.bz2
ingen-5353b8c88e3c82812e41e3411d1085e0dd481a1b.zip
Make ingen actually run again :)
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1688 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 3 insertions, 1 deletions
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):