diff options
author | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2011-10-20 10:49:42 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2012-12-04 22:22:03 +0100 |
commit | e058d7a519c28f83ff202c20a923cd4256996c96 (patch) | |
tree | 8a35c28f59a4e0a6b92fac6adf744b029d11c641 /gobex | |
parent | 745e460a58cbc5beeca00bc61c0752056b82d419 (diff) |
gobex: fix includes of config.h
Diffstat (limited to 'gobex')
-rw-r--r-- | gobex/gobex-defs.c | 2 | ||||
-rw-r--r-- | gobex/gobex-header.c | 2 | ||||
-rw-r--r-- | gobex/gobex-packet.c | 2 | ||||
-rw-r--r-- | 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 <config.h> #endif #include <glib.h> 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 <config.h> #endif #include <string.h> 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 <config.h> #endif #include <string.h> 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 <config.h> +#endif + #include <string.h> #include <errno.h> |