2020-09-21 18:58:33 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# librelp
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2021-03-01 10:39:28 +01:00
|
|
|
LIBRELP_VERSION = 1.10.0
|
2020-09-21 18:58:33 +02:00
|
|
|
LIBRELP_SITE = http://download.rsyslog.com/librelp
|
|
|
|
LIBRELP_LICENSE = GPL-3.0+
|
|
|
|
LIBRELP_LICENSE_FILES = COPYING
|
2021-05-16 19:08:42 +02:00
|
|
|
LIBRELP_CPE_ID_VENDOR = rsyslog
|
2020-09-21 18:58:33 +02:00
|
|
|
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
|
|
|
|
|
2020-10-13 18:28:45 +02:00
|
|
|
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
|
|
|
|
|
2020-09-21 18:58:33 +02:00
|
|
|
$(eval $(autotools-package))
|