From 745e460a58cbc5beeca00bc61c0752056b82d419 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 18 Oct 2011 11:12:25 +0300 Subject: [PATCH] gobex: add missing checks for config.h --- gobex/gobex-defs.c | 4 ++++ gobex/gobex-header.c | 4 ++++ gobex/gobex-packet.c | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/gobex/gobex-defs.c b/gobex/gobex-defs.c index f1f3b38ff..beb773d10 100644 --- a/gobex/gobex-defs.c +++ b/gobex/gobex-defs.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include "gobex-defs.h" diff --git a/gobex/gobex-header.c b/gobex/gobex-header.c index 68e23411d..0dade5132 100644 --- a/gobex/gobex-header.c +++ b/gobex/gobex-header.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include "gobex-header.h" diff --git a/gobex/gobex-packet.c b/gobex/gobex-packet.c index e2914a4e3..df9403177 100644 --- a/gobex/gobex-packet.c +++ b/gobex/gobex-packet.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include -- 2.47.3