From: Paul Brossier Date: Fri, 21 Dec 2018 11:41:36 +0000 (+0100) Subject: [waf] also link against vorbis and ogg X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=4ed1e47d19c17aee4bf508771a0b7aa52afcb9cf;p=aubio.git [waf] also link against vorbis and ogg Required where vorbisenc doesn't mark these as NEEDED (e.g. osx) --- diff --git a/wscript b/wscript index 7f66dde6..823fe6e0 100644 --- a/wscript +++ b/wscript @@ -434,7 +434,7 @@ def configure(ctx): # check for vorbisenc if (ctx.options.enable_vorbis != False): - ctx.check_cfg(package = 'vorbisenc', + ctx.check_cfg(package = 'vorbisenc vorbis ogg', args = '--cflags --libs', uselib_store = 'VORBISENC', mandatory = ctx.options.enable_vorbis)