baaf5f569f
Fix CVE-2024-23837 and CVE-2024-28871
https://github.com/OISF/libhtp/security/advisories/GHSA-f9wf-rrjj-qx8m
https://github.com/OISF/libhtp/security/advisories/GHSA-ffr2-45w9-7wmg
https://github.com/OISF/libhtp/blob/0.5.48/ChangeLog
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit babb39c873
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
590 B
Makefile
23 lines
590 B
Makefile
################################################################################
|
|
#
|
|
# libhtp
|
|
#
|
|
################################################################################
|
|
|
|
LIBHTP_VERSION = 0.5.48
|
|
LIBHTP_SITE = $(call github,OISF,libhtp,$(LIBHTP_VERSION))
|
|
LIBHTP_LICENSE = BSD-3-Clause
|
|
LIBHTP_LICENSE_FILES = LICENSE
|
|
LIBHTP_CPE_ID_VENDOR = oisf
|
|
LIBHTP_DEPENDENCIES = \
|
|
$(if $(BR2_PACKAGE_LIBICONV),libiconv) \
|
|
zlib
|
|
LIBHTP_INSTALL_STAGING = YES
|
|
# From git
|
|
LIBHTP_AUTORECONF = YES
|
|
|
|
# Let our gcc/wrapper handle SSP
|
|
LIBHTP_CONF_ENV = NO_STACK_PROTECTOR=true
|
|
|
|
$(eval $(autotools-package))
|