From: Sebastian Kemper Date: Sat, 22 Jul 2017 14:25:46 +0000 (+0200) Subject: libs/pjproject: prevent linking against opus X-Git-Url: http://git.openwrt.org/?p=feed%2Ftelephony.git;a=commitdiff_plain;h=535515658a8ca297ac9917dd962b8906661600e0 libs/pjproject: prevent linking against opus When opus is found in staging area it will be linked against, adding a dep that is not in the Makefile. So explicity disable opus. Signed-off-by: Sebastian Kemper --- diff --git a/libs/pjproject/Makefile b/libs/pjproject/Makefile index 10608f1..fe09098 100644 --- a/libs/pjproject/Makefile +++ b/libs/pjproject/Makefile @@ -81,6 +81,7 @@ CONFIGURE_ARGS += \ --disable-g7221-codec \ --disable-speex-codec \ --disable-ilbc-codec \ + --disable-opus \ --disable-resample-dll \ --disable-sdl \ --disable-ffmpeg \