diff --git a/obexd/client/bluetooth.c b/obexd/client/bluetooth.c
index 8e09d03..1857c65 100644
--- a/obexd/client/bluetooth.c
+++ b/obexd/client/bluetooth.c
#include <inttypes.h>
#include <glib.h>
-#include <gdbus/gdbus.h>
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/rfcomm.h>
-#include <bluetooth/sdp.h>
-#include <bluetooth/sdp_lib.h>
+#include "lib/bluetooth.h"
+#include "lib/rfcomm.h"
+#include "lib/sdp.h"
+#include "lib/sdp_lib.h"
+#include "gdbus/gdbus.h"
#include "btio/btio.h"
#include "log.h"
diff --git a/obexd/client/map.c b/obexd/client/map.c
index e6c1073..10e2285 100644
--- a/obexd/client/map.c
+++ b/obexd/client/map.c
#include <stdbool.h>
#include <inttypes.h>
#include <stdlib.h>
+
#include <glib.h>
-#include <gdbus/gdbus.h>
-#include <gobex/gobex-apparam.h>
-#include <bluetooth/sdp.h>
+
+#include "lib/sdp.h"
+
+#include "gobex/gobex-apparam.h"
+#include "gdbus/gdbus.h"
#include "dbus.h"
#include "log.h"
diff --git a/obexd/client/pbap.c b/obexd/client/pbap.c
index 28203a8..6b93ed0 100644
--- a/obexd/client/pbap.c
+++ b/obexd/client/pbap.c
#include <errno.h>
#include <string.h>
#include <stdio.h>
+
#include <glib.h>
-#include <gdbus/gdbus.h>
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/sdp.h>
-#include <gobex/gobex-apparam.h>
+#include "lib/bluetooth.h"
+#include "lib/sdp.h"
+
+#include "gobex/gobex-apparam.h"
+#include "gdbus/gdbus.h"
#include "log.h"
diff --git a/obexd/plugins/phonebook-ebook.c b/obexd/plugins/phonebook-ebook.c
index 2e49576..c339240 100644
--- a/obexd/plugins/phonebook-ebook.c
+++ b/obexd/plugins/phonebook-ebook.c
#include <string.h>
#include <errno.h>
-#include <glib.h>
-#include <bluetooth/bluetooth.h>
+#include <glib.h>
#include <libebook/e-book.h>
+#include "lib/bluetooth.h"
+
#include "log.h"
#include "obex.h"
#include "service.h"
diff --git a/obexd/plugins/syncevolution.c b/obexd/plugins/syncevolution.c
index fbeac1e..f1da945 100644
--- a/obexd/plugins/syncevolution.c
+++ b/obexd/plugins/syncevolution.c
#include <glib.h>
#include <dbus/dbus.h>
-#include <bluetooth/bluetooth.h>
+#include "lib/bluetooth.h"
-#include <gdbus/gdbus.h>
+#include "gdbus/gdbus.h"
#include "btio/btio.h"
#include "plugin.h"