Ubuntu – Getting missing dependency for compilation glib-compile-schemas

gnomemakemakefile

I Downloaded empathy-3.0.1.tar.bz2 to install in Ubuntu 10.04 LTS.
I ran the makefile and I got the error :

configure: error: glib-compile-schemas not found.

How can I fix this problem ? Please help me.

Best Answer

As far as I can tell, glib-compile-schemas is not available in any package for 10.04 LTS (Lucid). What I did to get around this, is to compile and install the latest glib manually, using: ./configure && make && make install. I also needed to add /usr/local/lib to my LD_LIBRARY_PATH.

Related Question