diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-10-31 18:21:47 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-10-31 18:21:47 +0100 |
commit | 14f3b45151864aa4170de515f406a69ad2931eba (patch) | |
tree | 67b7befa0d837e803008b0915ddf4f9245006b6b | |
parent | b44dcabe90de000cb98c02f74ce44929aa11a818 (diff) | |
download | rsyslog-14f3b45151864aa4170de515f406a69ad2931eba.tar.gz rsyslog-14f3b45151864aa4170de515f406a69ad2931eba.tar.bz2 rsyslog-14f3b45151864aa4170de515f406a69ad2931eba.zip |
module omruleset is no longer enabled by default.
Note that it has been deprecated in v7 and been replaced by the "call"
statement. Also, it can still be build without problems, the option must
just explicitely be given.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,4 +1,10 @@ --------------------------------------------------------------------------- +Version 8.1.0 [devel] 2013-11-?? +- module omruleset is no longer enabled by default. + Note that it has been deprecated in v7 and been replaced by the "call" + statement. Also, it can still be build without problems, the option must + just explicitely be given. +--------------------------------------------------------------------------- Version 7.5.7 [devel] 2013-11-?? - bugfix: ommysql lost configfile/section parameters after first close This means that when a connection was broken, it was probably diff --git a/configure.ac b/configure.ac index 3abd559e..de4c3ea9 100644 --- a/configure.ac +++ b/configure.ac @@ -1353,7 +1353,7 @@ AC_ARG_ENABLE(omruleset, no) enable_omruleset="no" ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-omruleset) ;; esac], - [enable_omruleset=yes] + [enable_omruleset=no] ) AM_CONDITIONAL(ENABLE_OMRULESET, test x$enable_omruleset = xyes) |