From ea04acbcacfdcfcd3d3519d2b56220969f982aea Mon Sep 17 00:00:00 2001 From: Chris Cannam Date: Tue, 9 Feb 2021 12:13:09 +0000 Subject: [PATCH] See if we can work around a curious error from Meson 0.53 --- meson.build | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/meson.build b/meson.build index 5bd44ef..ee32c9b 100644 --- a/meson.build +++ b/meson.build @@ -130,7 +130,7 @@ endif extra_include_args = [] foreach d: get_option('extra_include_dirs') - extra_include_args += '-I' + d + extra_include_args += [ '-I' + d ] endforeach if fft == 'kissfft' @@ -272,9 +272,6 @@ have_sndfile = sndfile_dep.found() ladspa_symbol_args = [] vamp_symbol_args = [] -platform_static_name_prefix = [] -platform_static_name_suffix = [] - if get_option('buildtype').startswith('release') feature_defines += ['-DNO_THREAD_CHECKS', '-DNO_TIMING', '-DNDEBUG'] endif @@ -337,6 +334,8 @@ else rubberband_static_name = 'rubberband' rubberband_dynamic_name = 'rubberband' rubberband_program_name = 'rubberband' + platform_static_name_prefix = 'lib' + platform_static_name_suffix = 'a' endif