CVE-2020-7747 applies to the Javascript lightning-server project, and not to the GNU Lightning project: https://nvd.nist.gov/vuln/detail/CVE-2020-7747 Signed-off-by: Paul Cercueil <paul@crapouillou.net> [yann.morin.1998@free.fr: reword commit log; add URL] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
25 lines
718 B
Makefile
25 lines
718 B
Makefile
################################################################################
|
|
#
|
|
# lightning
|
|
#
|
|
################################################################################
|
|
|
|
LIGHTNING_VERSION = 2.1.3
|
|
LIGHTNING_SITE = $(BR2_GNU_MIRROR)/lightning
|
|
LIGHTNING_LICENSE = LGPL-3.0+
|
|
LIGHTNING_LICENSE_FILES = COPYING.LESSER
|
|
LIGHTNING_INSTALL_STAGING = YES
|
|
# We're patching include/Makefile.am
|
|
LIGHTNING_AUTORECONF = YES
|
|
|
|
# CVE-2020-7747 is for the Javascript lightning-server project, and not for
|
|
# GNU Lightning.
|
|
LIGHTNING_IGNORE_CVES = CVE-2020-7747
|
|
|
|
ifeq ($(BR2_PACKAGE_LIGHTNING_DISASSEMBLER),y)
|
|
LIGHTNING_DEPENDENCIES += binutils zlib
|
|
LIGHTNING_CONF_OPTS += --enable-disassembler
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|