happy_boy 发表于 2018-12-18 14:31:46

安装PHP缺少模块报错的解决办法

  遇到如下错误:
configure: error: xml2-config not found. Please check your libxml2 installation.  解决办法是:
yum install -y libxml2-devel遇到如下错误:  
configure: error: jpeglib.h not found.
  

  
解决办法是:
  
yum install -y libjpeg-turbo-devel
  还有错误:
configure: error: Cannot find OpenSSL's   解决办法是:
yum install -y openssl openssl-devel  错误:
checking for BZip2 in default path... not found  
configure: error: Please reinstall the BZip2 distribution
  解决办法:
yum install -y bzip2 bzip2-devel  错误:
configure: error: png.h not found.  解决办法:
yum install -y libpng libpng-devel  错误:
configure: error: freetype.h not found.  解决办法:
yum install -y freetype freetype-devel  错误:
configure: error: mcrypt.h not found. Please reinstall libmcrypt.  解决办法:
wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/attic/libmcrypt/libmcrypt-2.5.7.tar.gz  
tar -zxvf libmcrypt-2.5.7.tar.gz
  

  
cd libmcrypt-2.5.7
  

  
./configure
  

  
make
  

  
make install
  因为centos6.x 默认的yum源没有libmcrypt-devel 这个包,只能借助第三方yum源。


页: [1]
查看完整版本: 安装PHP缺少模块报错的解决办法