標籤:php編譯
./configure的時候出現如下錯誤:configure: error: xslt-confignot found. Please reinstall the libxslt >= 1.1.0 distribution 解決方案:yum install libxslt-devel* -y錯誤 1 checking for xml2-config path... configure: error: xml2-config not found.Please check your libxml2 installation.解決辦法:# yum -y install libxml2-devel 錯誤 2 checking for BZip2 in default path... notfoundconfigure: error: Please reinstall theBZip2 distribution解決辦法:# yum install -y bzip2-devel 錯誤 3 If configure fails try --with-vpx-dir=configure: error: png.h not found. 解決辦法:# yum -y install libpng-devel 錯誤 4If configure fails try --with-xpm-dir=configure: error: freetype.h not found. 解決辦法:# yum -y install freetype-devel 錯誤 5 checking for specified location of theMySQL UNIX socket... noconfigure: error: Cannot find MySQLheader files under /usr/local/mysql.Note that the MySQL client library isnot bundled anymore!解決辦法:安裝mysql 錯誤 6configure: error: mcrypt.h not found.Please reinstall libmcrypt. 解決辦法:安裝libmcryptwgetftp://mcrypt.hellug.gr/pub/crypto/mcrypt/attic/libmcrypt/libmcrypt-2.5.7.tar.gztar -zxvf libmcrypt-2.5.7.tar.gzcd libmcrypt-2.5.7mkdir -p /usr/local/libmcrytp./configure prefix=/usr/local/libmcrytp/makemake install
本文出自 “小菜鳥” 部落格,請務必保留此出處http://baishuchao.blog.51cto.com/12918589/1929980
PHP 編譯錯誤及解決辦法