Tested on Beaglebone Black. Build-tested with test-pkg. Patch to fix cross-compilation errors submitted upstream [1]. [1] https://lists.snort.org/pipermail/snort-devel/2018-January/011025.html Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> [Romain: - split patch by build issues - convert AC_RUN_IFELSE to AC_CHECK_MEMBERS (ThomasP) - convert AC_RUN_IFELSE to AC_COMPILE_IFELSE (ThomasP) - remove most make variable from SNORT_CONF_ENV - remove SNORT_SOURCE default value] Signed-off-by: Romain Naour <romain.naour@smile.fr> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
33 lines
855 B
Makefile
33 lines
855 B
Makefile
################################################################################
|
|
#
|
|
# snort
|
|
#
|
|
################################################################################
|
|
|
|
SNORT_VERSION = 2.9.11.1
|
|
SNORT_SITE = https://www.snort.org/downloads/snort
|
|
SNORT_LICENSE = GPL-2.0
|
|
SNORT_LICENSE_FILES = LICENSE COPYING
|
|
|
|
SNORT_DEPENDENCIES = libpcap libdnet daq pcre
|
|
|
|
# patching configure.in
|
|
SNORT_AUTORECONF = YES
|
|
|
|
SNORT_CONF_OPTS = \
|
|
--with-libpcap-includes=$(STAGING_DIR)/usr/include/pcap \
|
|
--disable-static-daq
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBTIRPC),y)
|
|
SNORT_DEPENDENCIES += libtirpc host-pkgconf
|
|
SNORT_CFLAGS += `$(PKG_CONFIG_HOST_BINARY) --cflags libtirpc`
|
|
SNORT_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs libtirpc`
|
|
endif
|
|
|
|
SNORT_CONF_ENV = \
|
|
CFLAGS="$(TARGET_CFLAGS) $(SNORT_CFLAGS)" \
|
|
LIBS="$(SNORT_LIBS)" \
|
|
have_inaddr_none=yes
|
|
|
|
$(eval $(autotools-package))
|