From: Paul Brossier Date: Fri, 6 Jan 2012 23:16:57 +0000 (-0600) Subject: wscript: improve messages X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=acb2ac95aace13bdc30e69ba5897a11a86c49fd3;p=aubio.git wscript: improve messages --- 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):