b0444f7e3b
Security fixes:
- CVE-2024-28757 -- Prevent billion laughs attacks with isolated
use of external parsers. Please see the commit message of
commit 1d50b80cf31de87750103656f6eb693746854aa8 for details.
https://blog.hartwork.org/posts/expat-2-6-2-released/
https://github.com/libexpat/libexpat/blob/R_2_6_2/expat/Changes
Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit 1dfe980b19
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
705 B
Makefile
22 lines
705 B
Makefile
################################################################################
|
|
#
|
|
# expat
|
|
#
|
|
################################################################################
|
|
|
|
EXPAT_VERSION = 2.6.2
|
|
EXPAT_SITE = http://downloads.sourceforge.net/project/expat/expat/$(EXPAT_VERSION)
|
|
EXPAT_SOURCE = expat-$(EXPAT_VERSION).tar.xz
|
|
EXPAT_INSTALL_STAGING = YES
|
|
EXPAT_LICENSE = MIT
|
|
EXPAT_LICENSE_FILES = COPYING
|
|
EXPAT_CPE_ID_VENDOR = libexpat_project
|
|
EXPAT_CPE_ID_PRODUCT = libexpat
|
|
|
|
EXPAT_CONF_OPTS = \
|
|
--without-docbook --without-examples --without-tests --without-xmlwf
|
|
HOST_EXPAT_CONF_OPTS = --without-docbook --without-examples --without-tests
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|