a98e1bdd74
Quoting http://www.linphone.org/technical-corner/bcg729/downloads regarding patent information: "ITU G729 Annex A/B were offically released October/November 1996 (https://www.itu.int/rec/T-REC-G.729), hence all patents covering these specifications shall have expired in November 2016. Patent pool administrator confirmed most licensed patents under the G.729 Consortium have expired (http://www.sipro.com/G729.html)." Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
674 B
Makefile
22 lines
674 B
Makefile
################################################################################
|
|
#
|
|
# bcg729
|
|
#
|
|
################################################################################
|
|
|
|
BCG729_VERSION = 1.0.4
|
|
BCG729_SITE = $(call github,BelledonneCommunications,bcg729,$(BCG729_VERSION))
|
|
BCG729_LICENSE = GPL-2.0+
|
|
BCG729_LICENSE_FILES = COPYING
|
|
BCG729_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
BCG729_CONF_OPTS += -DENABLE_SHARED=OFF -DENABLE_STATIC=ON
|
|
else ifeq ($(BR2_SHARED_STATIC_LIBS),y)
|
|
BCG729_CONF_OPTS += -DENABLE_SHARED=ON -DENABLE_STATIC=ON
|
|
else ifeq ($(BR2_SHARED_LIBS),y)
|
|
BCG729_CONF_OPTS += -DENABLE_SHARED=ON -DENABLE_STATIC=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|