90a1652e90
Fixes: - http://autobuild.buildroot.net/results/17802b5ad87f494a86d158f2547e68edddcc0a68 ../../src/util.h:377:21: error: static declaration of 'gettid' follows non-static declaration static inline pid_t gettid(void) ^~~~~~ In file included from .../host/aarch64-buildroot-linux-gnu/sysroot/usr/include/unistd.h:1170, from .../host/aarch64-buildroot-linux-gnu/sysroot/usr/include/daq_common.h:25, from .../host/aarch64-buildroot-linux-gnu/sysroot/usr/include/daq.h:26, from ../../src/decode.h:48, from ../../src/spo_plugbase.h:31, from ../../src/snort.h:36, from sfcontrol.c:37: .../host/aarch64-buildroot-linux-gnu/sysroot/usr/include/bits/unistd_ext.h:34:16: note: previous declaration of 'gettid' was here extern __pid_t gettid (void) __THROW; ^~~~~~ Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# snort
|
|
#
|
|
################################################################################
|
|
|
|
SNORT_VERSION = 2.9.15.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 zlib host-pkgconf
|
|
|
|
# patching configure.in
|
|
SNORT_AUTORECONF = YES
|
|
|
|
SNORT_CONF_OPTS = \
|
|
--with-libpcre-includes=$(STAGING_DIR)/usr/include \
|
|
--with-libpcre-libraries=$(STAGING_DIR)/usr/lib \
|
|
--with-libpcap-includes=$(STAGING_DIR)/usr/include/pcap \
|
|
--disable-static-daq
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_85180),y)
|
|
SNORT_CFLAGS += -O0
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBTIRPC),y)
|
|
SNORT_DEPENDENCIES += libtirpc
|
|
SNORT_CFLAGS += `$(PKG_CONFIG_HOST_BINARY) --cflags libtirpc`
|
|
SNORT_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs libtirpc`
|
|
endif
|
|
|
|
# luajit and openssl should be enabled to build with
|
|
# OpenAppID support
|
|
ifeq ($(BR2_PACKAGE_LUAJIT)$(BR2_PACKAGE_OPENSSL),yy)
|
|
SNORT_DEPENDENCIES += luajit openssl
|
|
SNORT_CONF_OPTS += --enable-open-appid
|
|
else
|
|
SNORT_CONF_OPTS += --disable-open-appid
|
|
endif
|
|
|
|
SNORT_CONF_ENV = \
|
|
CFLAGS="$(TARGET_CFLAGS) $(SNORT_CFLAGS)" \
|
|
LIBS="$(SNORT_LIBS)" \
|
|
have_inaddr_none=yes
|
|
|
|
$(eval $(autotools-package))
|