zlib 错误 webkit

zlib 错误 webkit

我下载了 WebKit 源代码,并在 ubuntu 10.04 上构建源代码。执行以下命令后,出现与 glib-2.31.2 相关的错误。

./autogen.sh --prefix=/usr

我解决了这些错误并再次发出上述命令。我得到了以下错误。

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.

谢谢。

答案1

看来您缺少 zlib(不是 glib)的开发文件。 简单来说:

sudo apt-get install zlib1g-dev

修复它?

答案2

在 Linux Web 服务器上安装 zlib

对于 ubuntu 或基于 debian 的发行版

# apt-get update && apt-get install libgcrypt11-dev zlib1g-dev

相关内容