[PATCH] baresip: upgrade to 0.4.14

- upgrade baresip to 0.4.14
- uuid module is now part of the core-baresip
- add building of dtmfio module

Signed-off-By: Alfred E. Heggestad <aeh@db.org>
Acked-by: Jiri Slachta <slachta@cesnet.cz>
Tested-by: Jiri Slachta <slachta@cesnet.cz>
This commit is contained in:
Jiri Slachta 2015-08-12 13:56:44 +02:00 committed by Daniel Golle
parent 12e67fca18
commit f0e9d471b0

View file

@ -9,12 +9,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=baresip
PKG_VERSION:=0.4.12
PKG_RELEASE:=3
PKG_VERSION:=0.4.14
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.creytiv.com/pub/
PKG_MD5SUM:=93c0ea33ec0e96b89b1c3e0f78b72c5b
PKG_MD5SUM:=06e0aea9ba3dbbbe834285a8c7e7df83
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=docs/COPYING
@ -34,7 +34,6 @@ baresip-mods:= \
speex-aec \
speex-pp \
stdio \
uuid \
v4l \
v4l2 \
@ -70,12 +69,12 @@ baresip-mod-speex := USE_SPEEX
baresip-mod-speex-aec := USE_SPEEX_AEC
baresip-mod-speex-pp := USE_SPEEX_PP
baresip-mod-stdio := USE_STDIO
baresip-mod-uuid := USE_UUID
baresip-mod-v4l := USE_V4L
baresip-mod-v4l2 := USE_V4L2
BARESIP_MOD_OPTIONS:= \
MOD_AUTODETECT= \
EXTRA_MODULES="dtmfio" \
$(foreach m,$(baresip-mods),$(baresip-mod-$(m))=$(if $(CONFIG_PACKAGE_baresip-mod-$(m)),1))
TARGET_CFLAGS += $(FPIC)
@ -155,6 +154,5 @@ $(eval $(call BuildPlugin,speex,Speex audio codec,speex,+PACKAGE_baresip-mod-spe
$(eval $(call BuildPlugin,speex-aec,Speex Acoustic Echo Cancellation,speex_aec,+PACKAGE_baresip-mod-speex-aec:libspeex))
$(eval $(call BuildPlugin,speex-pp,Speex Pre-processor,speex_pp,+PACKAGE_baresip-mod-speex-pp:libspeex))
$(eval $(call BuildPlugin,stdio,standard I/O UI,stdio,))
$(eval $(call BuildPlugin,uuid,UUID,uuid,+libuuid))
$(eval $(call BuildPlugin,v4l,Video4Linux video source,v4l,+PACKAGE_baresip-mod-v4l:libv4l))
$(eval $(call BuildPlugin,v4l2,Video4Linux2 video source,v4l2,+PACKAGE_baresip-mod-v4l2:libv4l))