mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
f1a8511a92
https://github.com/OISF/libhtp/releases/tag/0.5.36 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
562 B
Makefile
22 lines
562 B
Makefile
################################################################################
|
|
#
|
|
# libhtp
|
|
#
|
|
################################################################################
|
|
|
|
LIBHTP_VERSION = 0.5.36
|
|
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))
|