Criando o kit da web a partir da origem

6

Eu tentei instalar o aplicativo webkit de fontes usando este manual:

link

Quando eu digito:

./autogen.sh --prefix=/usr

o seguinte erro ocorre:

checking for _FILE_OFFSET_BITS value needed for large files... 64
configure: error: Compiler GCC >= 4.7 or Clang >= 3.0 is required for C++ compilation

Quando eu digito:

gcc --version

Responde:

gcc (Ubuntu/Linaro 4.7.2-11precise2) 4.7.2

Por isso, o erro não diz respeito à versão do gcc. Por que a execução falha?

Editado: O problema anterior foi resolvido atualizando g + + para 4.7. Mas o seguinte erro ocorre ainda mais:

checking for GAIL... no
configure: error: Package requirements (gail-3.0 >= 3.0) were not met:

No package 'gail-3.0' found 

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables GAIL_CFLAGS
and GAIL_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

Eu tenho o apt-get install gail-3.0, mas o erro permanece.

Editado: Também fiz:

apt-get install gail-3.0-dev
apt-get build-dep webkit

Mas mais pacotes ausentes revelaram:     erro: os requisitos de pacote (libsoup-2.4 > = 2.40.0) não foram atendidos:

Requested 'libsoup-2.4 >= 2.40.0' but version of libsoup is 2.38.1

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables LIBSOUP_CFLAGS
and LIBSOUP_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
    
por Sashko Lykhenko 17.03.2013 / 23:14

1 resposta

4

O PPA mencionado na pergunta é muito desatualizado para 12.04, portanto, é necessário desativá-lo e encontrar outras instruções sobre como criar o webkit a partir do código-fonte. Além disso, alguém tem que editar o wiki.

Parece que o webkit está agora em libwebkitgtk-3.0-0 . Experimente estes:

sudo apt-get build-dep libwebkitgtk-3.0-0
apt-get source libwebkitgtk-3.0-0
cd webkit-*
dpkg-buildpackage

Vou editar o wiki se funcionar.

    
por int_ua 19.03.2013 / 23:16