84fd08cf4f
Fixes the following security vulnerabilites: CVE-2018-20843: In libexpat in Expat before 2.2.7, XML input including XML names that contain a large number of colons could make the XML parser consume a high amount of RAM and CPU resources while processing (enough to be usable for denial-of-service attacks). Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
21 lines
619 B
Makefile
21 lines
619 B
Makefile
################################################################################
|
|
#
|
|
# expat
|
|
#
|
|
################################################################################
|
|
|
|
EXPAT_VERSION = 2.2.7
|
|
EXPAT_SITE = http://downloads.sourceforge.net/project/expat/expat/$(EXPAT_VERSION)
|
|
EXPAT_SOURCE = expat-$(EXPAT_VERSION).tar.bz2
|
|
EXPAT_INSTALL_STAGING = YES
|
|
EXPAT_DEPENDENCIES = host-pkgconf
|
|
HOST_EXPAT_DEPENDENCIES = host-pkgconf
|
|
EXPAT_LICENSE = MIT
|
|
EXPAT_LICENSE_FILES = COPYING
|
|
|
|
EXPAT_CONF_OPTS = --without-docbook
|
|
HOST_EXPAT_CONF_OPTS = --without-docbook
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|