diff options
author | David Robillard <d@drobilla.net> | 2009-12-30 04:36:28 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-12-30 04:36:28 +0000 |
commit | 55a6b71971b2fe55def218e3b3021a4c39308240 (patch) | |
tree | f350915dee5219fb1f3a907b3b3b8725c3ae46ea /wscript | |
parent | 7f7157ca058d0b904da9674ede1e1eb00de81890 (diff) | |
download | machina-55a6b71971b2fe55def218e3b3021a4c39308240.tar.gz machina-55a6b71971b2fe55def218e3b3021a4c39308240.tar.bz2 machina-55a6b71971b2fe55def218e3b3021a4c39308240.zip |
Print configuration header before running configure checks.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@2320 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,6 +18,7 @@ def set_options(opt): def configure(conf): autowaf.configure(conf) + autowaf.display_header('Machina Configuration') conf.check_tool('compiler_cxx') autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.14.0', mandatory=True) @@ -58,7 +59,6 @@ def configure(conf): conf.write_config_header('machina-config.h') autowaf.print_summary(conf) - autowaf.display_header('Machina Configuration') autowaf.display_msg(conf, "Jack", str(conf.env['HAVE_JACK'] == 1)) autowaf.display_msg(conf, "GUI", str(conf.env['BUILD_MACHINA_GUI'] == 1)) print |