web-dev-qa-db-fra.com

Comment installer glib?

Je veux construire l'empathie dans Ubuntu 11.04. Quand je suis le processus de construction,

 ./autogen.sh

La coquille m'a dit que

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

Mais quand je ne peux pas trouver le moyen d'installer glib. Que dois-je faire pour installer cela dans Ubuntu 11?

38
user8260

Vous avez besoin de libglib2.0-dev pour glib-gettext. Vous pouvez l'installer avec

Sudo apt-get install libglib2.0-dev
84
binW

vous devez également installer libgtk2.0-dev pour pouvoir installer glib complètement (glib fait partie de: libgtk2.0-dev)

Sudo apt-get install libgtk2.0-dev

voir ce lien pour plus d'explications: installer gtk et glib

5
Ali.A

Je vous recommande de rechercher les PPA disponibles si vous souhaitez simplement acheter la nouvelle empathie que vous avez. Je pense que ceci ppa est le meilleur choix ou tout simplement faire ceci

Sudo add-apt-repository ppa:telepathy/ppa

Ou si vous avez besoin de le construire.

Sudo apt-get build-dep empathy

qui installera toutes les dépendances nécessaires pour construire l'empathie à partir des sources.

3
sagarchalise