Add suricata

This commit is contained in:
Torsten Kurbad
2025-10-16 16:11:45 +02:00
parent 76335f7cee
commit 8c45b543d3
12 changed files with 612 additions and 0 deletions
@@ -0,0 +1,23 @@
--- a/configure.ac
+++ b/configure.ac
@@ -2292,7 +2292,11 @@
fi
# Check for lz4
-enable_liblz4="yes"
+AC_ARG_ENABLE(lz4,
+ AS_HELP_STRING([--enable-lz4], [Enable compressed pcap logging using liblz4]),
+ [enable_liblz4=$enableval],
+ [enable_liblz4=yes])
+if test "x$enable_liblz4" != "xno"; then
AC_CHECK_LIB(lz4, LZ4F_createCompressionContext, , enable_liblz4="no")
if test "$enable_liblz4" = "no"; then
@@ -2306,6 +2310,7 @@
echo " yum install lz4-devel"
echo
fi
+fi
# get cache line size
AC_PATH_PROG(HAVE_GETCONF_CMD, getconf, "no")