From: Paul Brossier Date: Thu, 17 Jan 2019 14:53:23 +0000 (+0100) Subject: [waf] always try to detect blas X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=ce09046e723487a8b4859a22905b0733d44e50bd;p=aubio.git [waf] always try to detect blas --- diff --git a/wscript b/wscript index 4d6fad60..ecd3219b 100644 --- a/wscript +++ b/wscript @@ -84,10 +84,10 @@ def options(ctx): add_option_enable_disable(ctx, 'apple-audio', default = None, help_str = 'use CoreFoundation (darwin only) (auto)', help_disable_str = 'do not use CoreFoundation framework') - add_option_enable_disable(ctx, 'blas', default = False, + add_option_enable_disable(ctx, 'blas', default = None, help_str = 'use BLAS acceleration library (no)', help_disable_str = 'do not use BLAS library') - add_option_enable_disable(ctx, 'atlas', default = False, + add_option_enable_disable(ctx, 'atlas', default = None, help_str = 'use ATLAS acceleration library (no)', help_disable_str = 'do not use ATLAS library') add_option_enable_disable(ctx, 'wavread', default = True,