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=1e1fa8ecf8372dc5d12a4ac330a300db77f2da45;p=aubio.git [waf] always try to detect blas --- diff --git a/wscript b/wscript index a37b628d..71ea095c 100644 --- a/wscript +++ b/wscript @@ -99,10 +99,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,