Como resolver o erro GLIB antigo

5

Estou no processo de instalar o GTK +, mas ele precisa de vários pré-requisitos. Estes são

  • simplificado - 2.0 > = 2.35.3
  • atk - > = 2,7,5
  • Pango- > = 1.32.4
  • gdk-pixbuf-2.0 > = 2.27.1

Agora eu atualizei meu glib-2.0 para o 2.38.2 e tentei atualizar o atk, o pango e o gdk-pixbuf

checking for GLIB - version >= 2.31.2... 
'pkg-config --modversion glib-2.0' returned 2.38.2, but GLIB (2.32.4)
was found! If pkg-config was correct, then it is best
to remove the old version of GLib. You may also be able to fix the error
by modifying your LD_LIBRARY_PATH enviroment variable, or by editing
/etc/ld.so.conf. Make sure you have run ldconfig if that is
required on your system.
If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH
to point to the correct configuration files

configure: error: 
GLIB 2.31.2 or better is required. The latest version of
GLIB is always available from ftp://ftp.gtk.org/. If GLIB is installed
but not in the same location as pkg-config add the location of the file
glib-2.0.pc to the environment variable PKG_CONFIG_PATH.
Eu tenho andado em círculos nas últimas horas tentando fazer isso funcionar, se alguém lá fora puder ajudar, seria muito apreciado. Agradecemos antecipadamente

    
por Hakim_Djzarie 20.02.2014 / 23:05

2 respostas

3

Eu tenho o mesmo problema que você.

Eu defino PKG_CONFIG_PATH e LD_LIBRARY_PATH como

PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
LD_LIBRARY_PATH=/usr/local/lib

veja link

Mas não funcionou. Então eu encontrei alguém resolvê-lo como

echo $LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib

veja link

E funcionou!

    
por Seyer 16.03.2014 / 15:55
0

Eu testei isso várias vezes, e verifiquei que, se instalássemos o glib a partir do código-fonte, precisaríamos de opções:

  1. Se com ./configure --prefix=/usr --with-pcre=system , como nas instruções , significa que tem glib instalado em /usr/lib path . Então, precisamos fazer export LD_LIBRARY_PATH=/usr/lib .
  2. Se não usarmos --prefix= , o caminho padrão será /usr/local/lib/ . Então, se pkg_config encontrar duas bibliotecas instaladas, precisamos fazer export LD_LIBRARY_PATH=/usr/local/lib se instalamos no caminho padrão.

Espero que ajude alguém.

    
por R. Rodrigues 17.08.2017 / 17:18