summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2011-10-20 10:49:42 +0300
committerJohan Hedberg <johan.hedberg@intel.com>2011-10-20 10:58:44 +0300
commit97311fa71c3f309cab58b0a4d01a24bd7410d7ec (patch)
treec2169750608c817e168862b5862d042f24a3abae
parentafd4401044f488cacad62148f157afac6bffbf37 (diff)
downloadobexd-97311fa71c3f309cab58b0a4d01a24bd7410d7ec.tar.gz
gobex: fix includes of config.h
-rw-r--r--gobex/gobex-defs.c2
-rw-r--r--gobex/gobex-header.c2
-rw-r--r--gobex/gobex-packet.c2
-rw-r--r--gobex/gobex-transfer.c4
4 files changed, 7 insertions, 3 deletions
diff --git a/gobex/gobex-defs.c b/gobex/gobex-defs.c
index beb773d..c184c9c 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 0dade51..c2f0085 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 df94031..de5a1a8 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 7278cb3..ab8cf2b 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>