From 4ed1e47d19c17aee4bf508771a0b7aa52afcb9cf Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 21 Dec 2018 12:41:36 +0100 Subject: [PATCH] [waf] also link against vorbis and ogg Required where vorbisenc doesn't mark these as NEEDED (e.g. osx) --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.11.0