kumquat-buildroot/package/librelp/librelp.mk
Fabrice Fontaine 10f8934c59 package/librelp: add LIBRELP_CPE_ID_VENDOR
cpe:2.3🅰️rsyslog:librelp is a valid CPE identifier for this package:

  https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Arsyslog%3Alibrelp

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2021-05-16 19:28:08 +02:00

29 lines
738 B
Makefile

################################################################################
#
# 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))