我想在Ubuntu11.04中建立一种移情。当我遵循构建过程时,
./autogen.sh贝壳对我说
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中安装它呢?
发布于 2011-08-23 12:40:15
对于glib-gettext,您需要libglib2.0dev。你可以用
sudo apt-get install libglib2.0-dev发布于 2013-10-21 16:56:36
还需要安装libgtk2.0dev才能完全安装glib (glib是:libgtk2.0dev的一部分)
sudo apt-get install libgtk2.0-dev有关更多解释,请参见此链接:安装gtk和glib
发布于 2011-08-23 05:10:58
我建议你寻找可用的ppa,如果你只想看看比你更新的移情。我认为这个ppa是最好的选择,或者干脆这么做
sudo add-apt-repository ppa:telepathy/ppa
或者如果你需要建造它。
sudo apt-get build-dep empathy
它将安装从源构建移情所需的所有依赖项。
https://askubuntu.com/questions/58321
复制相似问题