diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2004-03-31 19:50:46 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2004-03-31 19:50:46 +0000 |
commit | 51e671b116fe121053444c4817e38ad07e9586f8 (patch) | |
tree | 46c7b9688acf78de7745744e33d948b9d7052902 /src | |
parent | 51342992af3f09ffad66197aa84e5960e1fc4c28 (diff) |
Use $(top_builddir) as include root directory
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/bluetooth.c | 4 | ||||
-rw-r--r-- | src/hci.c | 6 | ||||
-rw-r--r-- | src/sdp.c | 14 |
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) { @@ -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; @@ -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" |