initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_LIBRELP
|
||||
bool "librelp"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
Reliable Event Logging Protocol library
|
||||
|
||||
https://www.rsyslog.com/librelp/
|
||||
|
||||
comment "librelp needs a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 148db4e4d1a23e8136e9ec08810929a55faf5d45e24c2e3186d5ab34355dab31 librelp-1.10.0.tar.gz
|
||||
sha256 1ed76f935566e93e3c3c0d9f8fad22eb6d8bbe406e2eb8470a4a2764d9fd9685 COPYING
|
||||
@@ -0,0 +1,28 @@
|
||||
################################################################################
|
||||
#
|
||||
# librelp
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBRELP_VERSION = 1.10.0
|
||||
LIBRELP_SITE = http://download.rsyslog.com/librelp
|
||||
LIBRELP_LICENSE = GPL-3.0+
|
||||
LIBRELP_LICENSE_FILES = COPYING
|
||||
LIBRELP_CPE_ID_VENDOR = rsyslog
|
||||
LIBRELP_INSTALL_STAGING = YES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
LIBRELP_DEPENDENCIES += gnutls host-pkgconf
|
||||
LIBRELP_CONF_OPTS += --enable-tls
|
||||
else
|
||||
LIBRELP_CONF_OPTS += --disable-tls
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HAS_OPENSSL),y)
|
||||
LIBRELP_DEPENDENCIES += openssl host-pkgconf
|
||||
LIBRELP_CONF_OPTS += --enable-tls-openssl
|
||||
else
|
||||
LIBRELP_CONF_OPTS += --disable-tls-openssl
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user