14

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.

ubfan1
  • 19,049
Subin
  • 760
  • 4
  • 16
  • 32

2 Answers2

31

You need the header files. In Ubuntu and other Debian-based operating systems, header files are provided by -dev packages. So install libglib2.0-dev Install libglib2.0-dev, by clicking that link or by running:

sudo apt-get update && sudo apt-get install libglib2.0-dev
Zeppe
  • 466
3

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.