zlib error webkit

1

Eu baixei o código-fonte do WebKit e estou construindo o código-fonte no Ubuntu 10.04 Depois de executar o comando abaixo, recebi erros relacionados ao glib-2.31.2.

./autogen.sh --prefix=/usr

Eu resolvi esses erros e novamente emiti o comando acima. Eu tenho erros abaixo.

checking for ZLIB... configure: error: Package requirements (zlib) were not met:

No package 'zlib' 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 ZLIB_CFLAGS
and ZLIB_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

Obrigado.

    
por varun 19.11.2012 / 17:15

2 respostas

0

Parece que você está perdendo os arquivos de desenvolvimento para zlib (não glib). Seria simples:

sudo apt-get install zlib1g-dev

consertar isso?

    
por taneli 27.11.2012 / 10:33
0

Instale o zlib no servidor web Linux

Para o Ubuntu, ou distribuição baseada no Debian

# apt-get update && apt-get install libgcrypt11-dev zlib1g-dev
    
por Blanca Higgins 26.03.2014 / 05:25