Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.