PHP 7.4 configure 错误 error: Package requirements (zlib) were not met
问题描述
在 Linux 编译 php-7.4.6,./configure --prefix=/opt/php-7.4.6 --with-pdo-mysql --enable-fpm --with-curl
,最后出现以下错误。
checking for zlib... no
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.
解决方法
需要安装 zlib-devel
,可以手动安装或者命令行安装。
1. 手动安装
在 https://pkgs.org/search/?q=zlib 页面中,找到与操作系统相对应的 zlib-devel
版本,并下载安装。
2. 命令行安装
Ubuntu / Debian
sudo apt-get install zlib1g-dev
RHEL / CentOS
sudo yum install zlib-devel