From: Fabrice Fontaine Date: Wed, 22 Jan 2020 19:29:44 +0000 (+0100) Subject: package/libpjsip: add libsamplerate support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cdf39726c2ec346d6aeea90f0273a13d026b9c2c;p=buildroot.git package/libpjsip: add libsamplerate support Signed-off-by: Fabrice Fontaine Signed-off-by: Peter Korsgaard --- diff --git a/package/libpjsip/libpjsip.mk b/package/libpjsip/libpjsip.mk index f5c51fadf3..2e6c5abf08 100644 --- a/package/libpjsip/libpjsip.mk +++ b/package/libpjsip/libpjsip.mk @@ -36,7 +36,6 @@ LIBPJSIP_CONF_OPTS = \ --disable-g711-codec \ --disable-l16-codec \ --disable-g722-codec \ - --disable-libsamplerate \ --disable-sdl \ --disable-ffmpeg \ --disable-v4l2 \ @@ -71,6 +70,13 @@ else LIBPJSIP_CONF_OPTS += --disable-ssl endif +ifeq ($(BR2_PACKAGE_LIBSAMPLERATE),y) +LIBPJSIP_DEPENDENCIES += libsamplerate +LIBPJSIP_CONF_OPTS += --enable-libsamplerate +else +LIBPJSIP_CONF_OPTS += --disable-libsamplerate +endif + ifeq ($(BR2_PACKAGE_OPUS),y) LIBPJSIP_DEPENDENCIES += opus LIBPJSIP_CONF_OPTS += --with-opus=$(STAGING_DIR)/usr