问题描述
我想在Ubuntu 11.04中构建Empathy。当我按照构建过程,
./autogen.sh
Shell 对我说
libtoolize: copying file `m4/lt~obsolete.m4'
checking for autoconf >= 2.53...
testing autoconf2.50... not found.
testing autoconf... found 2.67
checking for automake >= 1.9...
testing automake-1.11... found 1.11.1
checking for libtool >= 1.5...
testing libtoolize... found 2.2.6b
checking for glib-gettext >= 2.2.0...
testing glib-gettextize... not found.
***Error***: You must have glib-gettext >= 2.2.0 installed
to build Empathy. Download the appropriate package for
from your distribution or get the source tarball at
ftp://ftp.gtk.org/pub/gtk/v2.2/glib-2.2.0.tar.gz
但是当我找不到安装glib的方法时。我该怎么做才能在ubuntu 11中安装它?
最佳解决思路
您需要libglib2.0-dev用于glib-gettext。你可以安装它
sudo apt-get install libglib2.0-dev
次佳解决思路
你还需要安装libgtk2.0-dev才能完全安装glib(glib是一部分:libgtk2.0-dev)
sudo apt-get install libgtk2.0-dev
请参阅此链接以获取更多解释:installing gtk and glib
第三种解决思路
我建议你搜索可用的ppa,如果你想结识新的同理心而不是你。我认为这个ppa是最好的选择或者只是这样做
sudo add-apt-repository ppa:telepathy/ppa
或者如果你需要构建它。
sudo apt-get build-dep empathy
这将安装从源代码构建同理心所需的所有依赖项。