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 | 5e4654826a1b726a8b2fc88520975311a2553d71 (patch) | |
tree | fe7a9dd7a982234f96cfbcf48ca5415400c573d5 /wscript | |
parent | d59b269867eb5cc2567b645c8bcff58e838b5842 (diff) | |
download | lilv-5e4654826a1b726a8b2fc88520975311a2553d71.tar.gz lilv-5e4654826a1b726a8b2fc88520975311a2553d71.tar.bz2 lilv-5e4654826a1b726a8b2fc88520975311a2553d71.zip |
Print configuration header before running configure checks.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2320 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -51,6 +51,7 @@ def set_options(opt): def configure(conf): autowaf.configure(conf) + autowaf.display_header('SLV2 Configuration') conf.check_tool('compiler_cc') autowaf.check_pkg(conf, 'lv2core', uselib_store='LV2CORE', mandatory=True) autowaf.check_pkg(conf, 'redland', uselib_store='REDLAND', atleast_version='1.0.6', mandatory=True) @@ -66,7 +67,6 @@ def configure(conf): conf.env['BASH_COMPLETION'] = Options.options.bash_completion autowaf.print_summary(conf) - autowaf.display_header('SLV2 Configuration') autowaf.display_msg(conf, "Jack clients", str(conf.env['USE_JACK'])) autowaf.display_msg(conf, "Unit tests", str(conf.env['BUILD_TESTS'])) autowaf.display_msg(conf, "Dynamic Manifest Support", str(conf.env['SLV2_DYN_MANIFEST'] == 1)) |