so you identified the problem with your installation.  when running &quot;./configure&quot; if the configure fails, the last line of code will tell you the first dependency error.  The problem is that you&#39;re missing a program/library that&#39;s required by the bluez.  There&#39;s typically a whole chain of dependencies for any one program that need to be satisfied.  So what you&#39;ve got to do to finish compiling is to track down one by one all the dependencies that cause a configure error.  In each case you need to navigate to the extracted download folder, and run the &quot;./configure&quot; -&gt; &quot;make&quot; -&gt; &quot;make install&quot; (with prefixed &quot;sudo &quot; in case you have a permission denial) chain pausing to satisfy each subsequent dependency as you go.  In this case you want the D-Bus library (<a href="http://www.linuxfromscratch.org/blfs/view/svn/general/dbus.html">http://www.linuxfromscratch.org/blfs/view/svn/general/dbus.html</a>), which in turn requires the expat library (<a href="http://www.linuxfromscratch.org/blfs/view/svn/general/expat.html">http://www.linuxfromscratch.org/blfs/view/svn/general/expat.html</a>).  So download and extract both then install the expat library first and then the d-bus library, then try to configure bluez again.<br>
-Outskut<br>