From 78c1465ed309d2e8937dc00a19635f40c8a4b05a Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Thu, 21 Apr 2011 12:35:34 +0200 Subject: add #include to all source files When using config.h, it must be the very first include in all source files since it contains #define that may change the compilation process (eg libc structure layout changes when it's used to enable large file support on 32 bit x86 archs). This commit adds it at the beginning of all .c and .cpp files --- server/agent-msg-filter.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'server/agent-msg-filter.c') diff --git a/server/agent-msg-filter.c b/server/agent-msg-filter.c index cd1f78c3..71ff49b7 100644 --- a/server/agent-msg-filter.c +++ b/server/agent-msg-filter.c @@ -17,6 +17,9 @@ Red Hat Authors: hdegoede@redhat.com */ +#ifdef HAVE_CONFIG_H +#include +#endif #include #include "red_common.h" -- cgit