0ff153461f
Changes: - Major upgrade, no API or ABI breaking changes (that we know of). https://github.com/libnet/libnet/releases/tag/v1.3 Packaging: - Verified builds on *all* test-pkg archs & toolchains - Verified test-pkg also with ngrep, suricata, and mz - Drop backported int64_t patch - Disable doxygen (html docs) in build - sha256sum of tarball now generated upstream Signed-off-by: Joachim Wiberg <troglobit@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
21 lines
615 B
Makefile
21 lines
615 B
Makefile
################################################################################
|
|
#
|
|
# libnet
|
|
#
|
|
################################################################################
|
|
|
|
LIBNET_VERSION = 1.3
|
|
LIBNET_SITE = \
|
|
https://github.com/libnet/libnet/releases/download/v$(LIBNET_VERSION)
|
|
LIBNET_INSTALL_STAGING = YES
|
|
# PF_PACKET is always available on Linux
|
|
LIBNET_CONF_OPTS = \
|
|
libnet_cv_have_packet_socket=yes \
|
|
--disable-doxygen-doc
|
|
LIBNET_LICENSE = BSD-2-Clause, BSD-3-Clause
|
|
LIBNET_LICENSE_FILES = LICENSE
|
|
LIBNET_CPE_ID_VENDOR = libnet_project
|
|
LIBNET_CONFIG_SCRIPTS = libnet-config
|
|
|
|
$(eval $(autotools-package))
|