10 oct 2009
so how is that done?
download mumble-1.1.8.tar.gz
extract it
download libcap-2.16.tar and extract it as welll -> ./configure && make but not make install
now go into the mumble source directory and edit
**src/murmur/murmur.pro
LIBS+= -L /home/joachim/mumble-1.1.8/libcap-2.16/libcap -lcap**
** INCLUDEPATH += /home/joachim/mumble-1.1.8/libcap-2.16/libcap/include/**
i just added this two lines, check the path in your installation
now we have to invoke qmake to generate the ‘Makefile’ with qmake main.pro CONFIG+=no-client CONFIG+=no-ice CONFIG+=no-dbus
finally we do ** make**
* if something fails in the make step, either play with the Makefile (which will be lost after doing '**make distclean**' of course
* in case you want to play with the murmur.pro you should use '**make distclean**' and then step 5 again, else you will not get a new **Makefile** and it won't work
** export LD_LIBRARY_PATH=/home/joachim/mumble-1.1.8/libcap-2.16/libcap:$LD_LIBRARY_PATH**
That’s it. Once the concpets are obvious doing things like that gets fairly easy.