summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2004-03-31 19:50:46 +0000
committerMarcel Holtmann <marcel@holtmann.org>2004-03-31 19:50:46 +0000
commit51e671b116fe121053444c4817e38ad07e9586f8 (patch)
tree46c7b9688acf78de7745744e33d948b9d7052902
parent51342992af3f09ffad66197aa84e5960e1fc4c28 (diff)
Use $(top_builddir) as include root directory
-rw-r--r--src/Makefile.am2
-rw-r--r--src/bluetooth.c4
-rw-r--r--src/hci.c6
-rw-r--r--src/sdp.c14
4 files changed, 13 insertions, 13 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 6c6b9fc4..17fdbf6d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -10,4 +10,4 @@ libbluetooth_la_LDFLAGS = -version-info 1:4:0
libsdp_la_SOURCES =
libsdp_la_LDFLAGS = -version-info 2:2:0
-INCLUDES = -I$(top_srcdir)/include
+INCLUDES = -I$(top_builddir)/include
diff --git a/src/bluetooth.c b/src/bluetooth.c
index 1607c04f..a57809d7 100644
--- a/src/bluetooth.c
+++ b/src/bluetooth.c
@@ -32,8 +32,8 @@
#include <errno.h>
#include <sys/socket.h>
-#include <bluetooth.h>
-#include <hci.h>
+#include <bluetooth/bluetooth.h>
+#include <bluetooth/hci.h>
void baswap(bdaddr_t *dst, const bdaddr_t *src)
{
diff --git a/src/hci.c b/src/hci.c
index 3778f064..1530f395 100644
--- a/src/hci.c
+++ b/src/hci.c
@@ -43,9 +43,9 @@
#include <sys/ioctl.h>
#include <sys/socket.h>
-#include <bluetooth.h>
-#include <hci.h>
-#include <hci_lib.h>
+#include <bluetooth/bluetooth.h>
+#include <bluetooth/hci.h>
+#include <bluetooth/hci_lib.h>
typedef struct {
char *str; unsigned int val;
diff --git a/src/sdp.c b/src/sdp.c
index 4ffb0d93..b793f64f 100644
--- a/src/sdp.c
+++ b/src/sdp.c
@@ -38,13 +38,13 @@
#include <sys/un.h>
#include <sys/socket.h>
-#include <bluetooth.h>
-#include <hci.h>
-#include <hci_lib.h>
-#include <l2cap.h>
-#include <sdp.h>
-#include <sdp_lib.h>
-#include <sdp_internal.h>
+#include <bluetooth/bluetooth.h>
+#include <bluetooth/hci.h>
+#include <bluetooth/hci_lib.h>
+#include <bluetooth/l2cap.h>
+#include <bluetooth/sdp.h>
+#include <bluetooth/sdp_lib.h>
+#include <bluetooth/sdp_internal.h>
#define BASE_UUID "00000000-0000-1000-8000-00805F9B34FB"