Files
buildroot/package/libhtp/libhtp.mk
Fabrice Fontaine 1c7c8303e6 package/libhtp: security bump to version 0.5.33
- ChangeLog:
  - compression bomb protection
  - memory handling issue found by Oss-Fuzz
  - improve handling of anomalies in traffic
- Drop first patch (already in version)
- Update indentation of hash file (two spaces)

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit b3d5194696)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2020-05-10 20:26:32 +02:00

22 lines
562 B
Makefile

################################################################################
#
# libhtp
#
################################################################################
LIBHTP_VERSION = 0.5.33
LIBHTP_SITE = $(call github,OISF,libhtp,$(LIBHTP_VERSION))
LIBHTP_LICENSE = BSD-3-Clause
LIBHTP_LICENSE_FILES = LICENSE
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))