編譯php的時候遇到的問題:
編譯**:
報錯資訊:configure: error: please reinstall the libcurl distribution -
easy.h should be in /include/curl/
解決辦法:yum install curl-devel
再次編譯報錯:
configure: error: jpeglib.h not found.
解決方法:
檢查之後發現已經安裝了libjpeg
[root@localhost php-5.2.14]#yum list installed|grep libpng
libpng.x86_64 2:1.2.49-1.el6_2
或者:
[root@localhost php-5.2.14]#rpm -qa|grep libjpeg
libjpeg-turbo-1.2.1-3.el6_5.x86_64
如果沒有安裝則需要:
yum install libjpeg libpng freetype libjpeg-devel libpng-devel freetype-devel -y
若是64位系統
解決方法:
yum install libjpeg.x86_64 libpng.x86_64 freetype.x86_64 libjpeg-devel.x86_64 libpng-devel.x86_64 freetype-devel.x86_64 -y
安裝完後再安裝libjpeg-devel
安裝libjpeg-devel
yum -y install libjpeg-devel
記住一點就好了:編譯過程**現錯誤不可怕,出現乙個解決乙個就好了。
PHP編譯遇到的問題
編譯php的時候遇到的問題 編譯 報錯資訊 configure error please reinstall the libcurl distribution easy.h should be in include curl 解決辦法 yum install curl devel 再次編譯報錯 co...
編譯安裝PHP遇到的問題
今天公升級了伺服器的mysql到5.5,是通過rpm安裝,公升級之後發現專案中php報錯,於是打算將php也公升級下。configure prefix usr local php with config file path usr local php etc with mysql usr with ...
php編譯安裝以及遇到的問題
關於linux安裝php編譯的一些問題解決,原作者部落格很好 安裝完mysql以及一些擴充套件庫後,方可開始安裝php。安裝php依賴庫 寫道 yum install y gcc gcc c make zlib zlib devel pcre pcre devel libjpeg libjpeg d...