From e058d7a519c28f83ff202c20a923cd4256996c96 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 20 Oct 2011 10:49:42 +0300 Subject: [PATCH] gobex: fix includes of config.h --- gobex/gobex-defs.c | 2 +- gobex/gobex-header.c | 2 +- gobex/gobex-packet.c | 2 +- gobex/gobex-transfer.c | 4 ++++ 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gobex/gobex-defs.c b/gobex/gobex-defs.c index beb773d10..c184c9c91 100644 --- a/gobex/gobex-defs.c +++ b/gobex/gobex-defs.c @@ -20,7 +20,7 @@ */ #ifdef HAVE_CONFIG_H -# include "config.h" +#include #endif #include diff --git a/gobex/gobex-header.c b/gobex/gobex-header.c index 0dade5132..c2f0085d3 100644 --- a/gobex/gobex-header.c +++ b/gobex/gobex-header.c @@ -20,7 +20,7 @@ */ #ifdef HAVE_CONFIG_H -# include "config.h" +#include #endif #include diff --git a/gobex/gobex-packet.c b/gobex/gobex-packet.c index df9403177..de5a1a8c7 100644 --- a/gobex/gobex-packet.c +++ b/gobex/gobex-packet.c @@ -20,7 +20,7 @@ */ #ifdef HAVE_CONFIG_H -# include "config.h" +#include #endif #include diff --git a/gobex/gobex-transfer.c b/gobex/gobex-transfer.c index 7278cb344..ab8cf2b1e 100644 --- a/gobex/gobex-transfer.c +++ b/gobex/gobex-transfer.c @@ -19,6 +19,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include -- 2.47.3