From 2a9af2d2f6aa9025adabf2f9bc6e42c65b43c08a Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 11 Oct 2018 00:17:00 +0200 Subject: Always use internal, modified, zita-resampler zita-resampler was modified from the original: * a dedicated mono variable-resampler version was added * full-cycle no-resampling was optimized into a delayline --- libs/zita-resampler/wscript | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/libs/zita-resampler/wscript b/libs/zita-resampler/wscript index 91edc4f9ab..bdd4d333a1 100644 --- a/libs/zita-resampler/wscript +++ b/libs/zita-resampler/wscript @@ -37,16 +37,10 @@ def options(opt): autowaf.set_options(opt) def configure(conf): - if conf.is_defined('USE_EXTERNAL_LIBS'): - autowaf.check_pkg(conf, 'zita-resampler', uselib_store='LIBZRESAMPLER', atleast_version=ZRESAMPLER_LIB_VERSION, mandatory=True) - else: - conf.load ('compiler_cxx') - autowaf.configure(conf) + conf.load ('compiler_cxx') + autowaf.configure(conf) def build(bld): - if bld.is_defined('USE_EXTERNAL_LIBS'): - return - obj = bld.stlib(features = 'cxx cxxstlib', source = zresampler_sources) obj.cxxflags = [ '-fPIC', '-O3', '-ffast-math' ] obj.export_includes = ['.'] @@ -59,4 +53,3 @@ def build(bld): def shutdown(): autowaf.shutdown() - -- cgit v1.2.3