]> git.ipfire.org Git - thirdparty/snort3.git/commitdiff
build 170 updates
authorRuss Combs <rucombs@cisco.com>
Thu, 17 Sep 2015 15:41:21 +0000 (11:41 -0400)
committerRuss Combs <rucombs@cisco.com>
Thu, 17 Sep 2015 15:41:21 +0000 (11:41 -0400)
ChangeLog
configure.ac
doc/features.txt
src/main/build.h

index 46ba783c540891204efc6c6d1caadb485137acf6..78af6025437b5fe3078ad754d41227a8e0a39fab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,18 @@
-15/09/04 - build 169
+15/09/17 - build 170
+
+-- removed unused control socket defines from cmake
+-- fixed build error with valgrind build option
+-- cleanup *FLAGS use in configure.ac
+-- change configure.ac compiler search order to prefer clang over gcc
+-- update where to get dnet
+-- update usage and bug list
+-- move extra daqs and extra hext logger to main source tree
+-- fix breakloop in file daq
+-- fix plain file processing
+-- fix detection of stream_user and stream_file data
+-- log innermost proto for type of broken packets
+
+15/09/10 - build 169
 
 -- fix chunked manual install
 -- add event direction bug
index 7811b7d7455ebbc30d2b20bbbc7ba3b1f90d53b1..5841dd8c93ba5d02ca12205629c0ab5972a6a707 100644 (file)
@@ -526,22 +526,6 @@ if test "x$LPCAP" = "xno"; then
   fi
 fi
 
-AC_MSG_CHECKING([for pcap_lex_destroy])
-AC_RUN_IFELSE(
-[AC_LANG_PROGRAM(
-[[
-#include <pcap.h>
-]],
-[[
-   pcap_lex_destroy();
-]])],
-[have_pcap_lex_destroy="yes"],
-[have_pcap_lex_destroy="no"])
-AC_MSG_RESULT($have_pcap_lex_destroy)
-if test "x$have_pcap_lex_destroy" = "xyes"; then
-    AC_DEFINE([HAVE_PCAP_LEX_DESTROY],[1],[Can cleanup lex buffer stack created by pcap bpf filter])
-fi
-
 AC_MSG_CHECKING([for pcap_lib_version])
 AC_LINK_IFELSE(
     [AC_LANG_PROGRAM(
index 47d54ac2fb0de9bee3b5ec5dc1529ec35f0ed892..6d58ea7c693f04061d5185037899f12b6d0d08e0 100644 (file)
@@ -9,3 +9,26 @@ into the Snort binary.  For a full list of build features, run ./configure
 
 *  *--enable-shell*: enable local and remote command line shell support.
 
+These features are built only if the required libraries and headers are
+present.  There is no need to explicitly enable.
+
+* *lzma*: from http://www.7-zip.org/sdk.html for decompression of SWF fles.
+
+* *openssl*: from https://www.openssl.org for SHA and MD5 file signatures and
+  the protected_content rule option.
+
+* *intel-soft-cpm": an optional pattern matcher based on a library from
+  Intel.
+
+If you need to use headers and/or libraries in non-standard locations, you
+can use these options:
+
+* *--with-pkg-includes*: specify the directory containing the package
+  headers.
+
+* *--with-pkg-libraries*: specify the directory containing the package
+  libraries.
+
+These can be use for pcap, luajit, pcre, dnet, daq, lzma, openssl, and
+intel-soft-cpm packages.
+
index 9ac061567e3f1326de8f8f0ac3394921889de27d..3fbdd683974c6aa80b68148f1c967ce7eee18427 100644 (file)
@@ -10,7 +10,7 @@
 //                                               //
 //-----------------------------------------------//
 
-#define BUILD "169"
+#define BUILD "170"
 
 #endif