From acb2ac95aace13bdc30e69ba5897a11a86c49fd3 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 6 Jan 2012 17:16:57 -0600 Subject: [PATCH] wscript: improve messages --- wscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 060851a4..5044912a 100644 --- a/wscript +++ b/wscript @@ -100,7 +100,8 @@ def configure(conf): try: conf.find_program('pkg-config', var='PKGCONFIG') except conf.errors.ConfigurationError: - conf.to_log('pkg-config was not found, not looking for (ignoring)') + conf.msg('Could not find pkg-config', 'disabling fftw, jack, and lash') + conf.msg('Could not find fftw', 'using ooura') # optional dependancies using pkg-config if conf.env['PKGCONFIG']: @@ -121,6 +122,7 @@ def configure(conf): conf.define('HAVE_FFTW3', 1) else: # fftw disabled, use ooura + conf.msg('Fftw disabled', 'using ooura') pass if (Options.options.enable_jack == True): -- 2.26.2