diff --git a/gobex/gobex-header.h b/gobex/gobex-header.h
index c2f975f..6600b1b 100644
--- a/gobex/gobex-header.h
+++ b/gobex/gobex-header.h
#include <glib.h>
-#include <gobex/gobex-defs.h>
-#include <gobex/gobex-apparam.h>
+#include "gobex/gobex-defs.h"
+#include "gobex/gobex-apparam.h"
/* Header ID's */
#define G_OBEX_HDR_INVALID 0x00
diff --git a/gobex/gobex-packet.h b/gobex/gobex-packet.h
index 6121fa7..d1007ea 100644
--- a/gobex/gobex-packet.h
+++ b/gobex/gobex-packet.h
#include <stdarg.h>
#include <glib.h>
-#include <gobex/gobex-defs.h>
-#include <gobex/gobex-header.h>
+#include "gobex/gobex-defs.h"
+#include "gobex/gobex-header.h"
/* Request opcodes */
#define G_OBEX_OP_CONNECT 0x00
diff --git a/gobex/gobex-transfer.c b/gobex/gobex-transfer.c
index 6720129..fe53530 100644
--- a/gobex/gobex-transfer.c
+++ b/gobex/gobex-transfer.c
#include <string.h>
#include <errno.h>
-#include "gobex.h"
-#include "gobex-debug.h"
+#include "gobex/gobex.h"
+#include "gobex/gobex-debug.h"
#define FIRST_PACKET_TIMEOUT 60
diff --git a/gobex/gobex.h b/gobex/gobex.h
index fd2b274..5bc9103 100644
--- a/gobex/gobex.h
+++ b/gobex/gobex.h
#include <stdarg.h>
#include <glib.h>
-#include <gobex/gobex-defs.h>
-#include <gobex/gobex-packet.h>
+#include "gobex/gobex-defs.h"
+#include "gobex/gobex-packet.h"
typedef enum {
G_OBEX_TRANSPORT_STREAM,