initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
config BR2_PACKAGE_LIBEXOSIP2
bool "libeXosip2"
depends on BR2_USE_MMU # fork()
select BR2_PACKAGE_LIBOSIP2
help
eXosip is a library that hides the complexity of using the
SIP protocol for multimedia session establishment.
This protocol is mainly to be used by VoIP telephony
applications (endpoints or conference server) but might be
also useful for any application that wish to establish
sessions like multiplayer games.
eXosip is based in libosip.
http://savannah.nongnu.org/projects/exosip/
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 87256b45a406f3c038e1e75e31372d526820366527c2af3bb89329bafd87ec42 libexosip2-5.2.1.tar.gz
sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
+38
View File
@@ -0,0 +1,38 @@
################################################################################
#
# libexosip2
#
################################################################################
LIBEXOSIP2_VERSION = 5.2.1
# Since version 5.0, letter 'X' in library's name is in lower case
LIBEXOSIP2_SOURCE = libexosip2-$(LIBEXOSIP2_VERSION).tar.gz
LIBEXOSIP2_SITE = http://download.savannah.gnu.org/releases/exosip
LIBEXOSIP2_INSTALL_STAGING = YES
LIBEXOSIP2_LICENSE = GPL-2.0+
LIBEXOSIP2_LICENSE_FILES = COPYING
LIBEXOSIP2_CPE_ID_VENDOR = gnu
LIBEXOSIP2_CPE_ID_PRODUCT = exosip
LIBEXOSIP2_DEPENDENCIES = host-pkgconf libosip2
ifeq ($(BR2_arc),y)
# toolchain __arc__ define conflicts with libeXosip2 source
LIBEXOSIP2_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -U__arc__"
endif
ifeq ($(BR2_PACKAGE_C_ARES),y)
LIBEXOSIP2_DEPENDENCIES += c-ares
endif
ifeq ($(BR2_PACKAGE_OPENSSL),y)
LIBEXOSIP2_DEPENDENCIES += openssl
LIBEXOSIP2_CONF_OPTS += --enable-openssl
else
LIBEXOSIP2_CONF_OPTS += --disable-openssl
endif
LIBEXOSIP2_CONF_OPTS += \
--enable-mt=$(if $(BR2_TOOLCHAIN_HAS_THREADS),yes,no)
$(eval $(autotools-package))