= 1..."/>
溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

PHP 編譯錯(cuò)誤及解決辦法

發(fā)布時(shí)間:2020-07-04 13:17:17 來源:網(wǎng)絡(luò) 閱讀:630 作者:baishuchao 欄目:web開發(fā)
./configure的時(shí)候出現(xiàn)如下錯(cuò)誤:
configure: error: xslt-confignot found. Please reinstall the libxslt >= 1.1.0 distribution
 
解決方法:
yum install libxslt-devel* -y

錯(cuò)誤 1
 
checking for xml2-config path... 
configure: error: xml2-config not found.Please check your libxml2 installation.
解決辦法:
# yum -y install libxml2-devel
 
 
 
錯(cuò)誤 2
 
checking for BZip2 in default path... notfound
configure: error: Please reinstall theBZip2 distribution
解決辦法:
# yum install -y  bzip2-devel
 
 
錯(cuò)誤 3 
If configure fails try --with-vpx-dir=
configure: error: png.h not found.
 
解決辦法:
# yum -y install libpng-devel
 
 
錯(cuò)誤 4
If configure fails try --with-xpm-dir=
configure: error: freetype.h not found.
 
解決辦法:
# yum -y install freetype-devel
 
 
錯(cuò)誤 5 
checking for specified location of theMySQL UNIX socket... no
configure: error: Cannot find MySQLheader files under /usr/local/mysql.
Note that the MySQL client library isnot bundled anymore!


解決辦法:
安裝mysql 
 
 
錯(cuò)誤 6
configure: error: mcrypt.h not found.Please reinstall libmcrypt.
 
解決辦法:安裝libmcrypt
wgetftp://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
mkdir -p /usr/local/libmcrytp
./configure prefix=/usr/local/libmcrytp/
make
make install




向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI