diff options
author | David Robillard <d@drobilla.net> | 2018-07-12 08:19:40 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-07-12 08:24:02 +0200 |
commit | b1fdcc6ec7b74be28f67c2f64ae59dd409e327d9 (patch) | |
tree | 747c9a40d0e4b4ba14a5c820de02d1938cb5f1af /wscript | |
parent | 16caee67a4db74e41f0b4e9276f54561f43e45ce (diff) | |
download | lilv-b1fdcc6ec7b74be28f67c2f64ae59dd409e327d9.tar.gz lilv-b1fdcc6ec7b74be28f67c2f64ae59dd409e327d9.tar.bz2 lilv-b1fdcc6ec7b74be28f67c2f64ae59dd409e327d9.zip |
Don't build lv2apply and lv2bench with --no-utilsfix-fake-ms
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -423,14 +423,14 @@ def build(bld): for i in utils.split(): build_util(bld, i, defines) - if bld.env.HAVE_SNDFILE: - obj = build_util(bld, 'utils/lv2apply', defines, 'SNDFILE') - - # lv2bench (less portable than other utilities) - if bld.is_defined('HAVE_CLOCK_GETTIME') and not bld.env.STATIC_PROGS: - obj = build_util(bld, 'utils/lv2bench', defines) - if bld.env.DEST_OS != 'win32' and bld.env.DEST_OS != 'darwin': - obj.lib = ['rt'] + if bld.env.HAVE_SNDFILE: + obj = build_util(bld, 'utils/lv2apply', defines, 'SNDFILE') + + # lv2bench (less portable than other utilities) + if bld.is_defined('HAVE_CLOCK_GETTIME') and not bld.env.STATIC_PROGS: + obj = build_util(bld, 'utils/lv2bench', defines) + if bld.env.DEST_OS != 'win32' and bld.env.DEST_OS != 'darwin': + obj.lib = ['rt'] # Documentation autowaf.build_dox(bld, 'LILV', LILV_VERSION, top, out) |