参考文章:http://blog.csdn.net/anljf/article/details/6981247

 

安装php时的报错

checking libxml2 install dir... no
checking for xml2-config path...
configure: error: xml2-config not found. Please check your libxml2 installation.

 

检查是否安装了libxm包

[root@XKWB3403 php-5.3.8]# rpm -qa |grep  libxml2
libxml2-2.6.26-2.1.12
libxml2-python-2.6.26-2.1.12

 

重新安装libxml2和libxml2-devel包

yum install libxml2

yum install libxml2-devel -y

 

安装完之后查找xml2-config文件是否存在

[root@XKWB3403 php-5.3.8]# find / -name "xml2-config"
/usr/bin/xml2-config

 

如果存在的话重新安装php

[root@XKWB3403 php-5.3.8]# ./configure

 

安装成功的标志是

configure: error: xml2-config not found. Please check your libxml2 installation

 

之后再进行编译

make && make install

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-03
  • 2021-08-13
猜你喜欢
  • 2022-02-22
  • 2022-12-23
  • 2022-01-28
  • 2022-01-18
  • 2021-07-08
  • 2021-11-16
相关资源
相似解决方案