diff options
author | Tomas Heinrich <theinric@redhat.com> | 2013-05-19 09:53:30 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-05-20 21:32:49 +0200 |
commit | b424b8c249891e977d4bc26ac97b5aea36e91f77 (patch) | |
tree | 8e939df819f2ef09eec14bd1b2c3b9202b15758a | |
parent | 2203a324c8631df3bfa98235831f47a57e181f37 (diff) | |
download | rsyslog-b424b8c249891e977d4bc26ac97b5aea36e91f77.tar.gz rsyslog-b424b8c249891e977d4bc26ac97b5aea36e91f77.tar.bz2 rsyslog-b424b8c249891e977d4bc26ac97b5aea36e91f77.zip |
Don't #include libestr and libee headers when not necessary
Through msg.h, many unrelated components needlessly required
LIBEE_CFLAGS.
-rw-r--r-- | plugins/mmaudit/mmaudit.c | 3 | ||||
-rw-r--r-- | plugins/mmjsonparse/mmjsonparse.c | 1 | ||||
-rw-r--r-- | runtime/msg.h | 2 |
3 files changed, 1 insertions, 5 deletions
diff --git a/plugins/mmaudit/mmaudit.c b/plugins/mmaudit/mmaudit.c index 018e1771..6b6b804c 100644 --- a/plugins/mmaudit/mmaudit.c +++ b/plugins/mmaudit/mmaudit.c @@ -43,8 +43,7 @@ #include <errno.h> #include <unistd.h> #include <ctype.h> -#include <libestr.h> -#include <libee/libee.h> +#include <json/json.h> #include "conf.h" #include "syslogd-types.h" #include "template.h" diff --git a/plugins/mmjsonparse/mmjsonparse.c b/plugins/mmjsonparse/mmjsonparse.c index c47aceb6..35f69aab 100644 --- a/plugins/mmjsonparse/mmjsonparse.c +++ b/plugins/mmjsonparse/mmjsonparse.c @@ -35,7 +35,6 @@ #include <errno.h> #include <unistd.h> #include <ctype.h> -#include <libestr.h> #include <json/json.h> #include "conf.h" #include "syslogd-types.h" diff --git a/runtime/msg.h b/runtime/msg.h index edf5ed98..6faf066a 100644 --- a/runtime/msg.h +++ b/runtime/msg.h @@ -35,8 +35,6 @@ #include "syslogd-types.h" #include "template.h" #include "atomic.h" -#include "libee/libee.h" - /* rgerhards 2004-11-08: The following structure represents a * syslog message. |