I'm trying to modify the source code a2dp.c in Bluez bluetooth stack. I want to recompile it and install it in my Ubuntu system. I used the option to import existing makefile project to import the Bluez project into my workspace of Eclipse cdt. As, I have learnt that Bluez includes a makefile for compiling the stack.
I'm facing problems in inclusion of header file like dbus.h, glib.h. I was not able to include them through pkg-config plugin for Eclipse. So, I created variables manually by specifying ($shell pkg-config --cflags --libs dbus-1) and included them successfully. But unfortunately when I include /usr/include path to include stdlib.h through path and symbols, I again get unresolved inclusion message for dbus.h and glib.h which was earlier included through variables.
Can anyone teach me to setup a proper development environment for Bluez under Ubuntu using Eclipse?