e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
512 B
Makefile
21 lines
512 B
Makefile
#############################################################
|
|
#
|
|
# libeXosip2
|
|
#
|
|
#############################################################
|
|
|
|
LIBEXOSIP2_VERSION = 3.6.0
|
|
LIBEXOSIP2_SITE = http://download.savannah.gnu.org/releases/exosip/
|
|
LIBEXOSIP2_INSTALL_STAGING = YES
|
|
|
|
LIBEXOSIP2_DEPENDENCIES = host-pkg-config libosip2
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
LIBEXOSIP2_DEPENDENCIES += openssl
|
|
LIBEXOSIP2_CONF_OPT += --enable-openssl
|
|
else
|
|
LIBEXOSIP2_CONF_OPT += --disable-openssl
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|