php源码编译详解

php源码编译详解_php_web-itnose

首页
asp
php
javascript
iis
apache
html/css
coldfusion
ajax
vbscript
cgi
xml/xsl
跨浏览器开发
ruby/rails
程序员
html5
jquery
seo
jboss
json
angularjs
markdown
nginx
thinkphp
yii
pageadmin
extjs
wampserver
kendo ui
coffeescript
gulp
ecmascript
bootstrap

itnose首页 > web > php >

php源码编译详解

2017-05-19 11:42

编译php包:php-5.4.26.tar.bz2

解压php-5.4.26.tar.bz2后,进入php解压目录:

./configure –prefix=/usr/local/php –enable-fpm –enable-debug –with-gd –with-jpeg-dir –with-png-dir –with-freetype-dir –enable-mbstring –with-curl –with-mysql=/usr/local/mysql/ –with-mysqli=/usr/local/mysql/bin/mysql_config –with-config-file-path=/usr/local/php/etc

运行后遇到的问题:

error 1

checking for xml2-config path… configure: error: xml2-config not found. please check your libxml2 installation.

(看提示就明白 是一个lib库没装 先用 yum search 名字 看是否能搜到名字 ,找到名字后 把软件包 开发包装上)

解决办法

yum install libxml2-devel.x86_64 -y

error 2

checking for pkg-config… /usr/bin/pkg-configconfigure: error: cannot find openssl’s

这是ssl没装

解决办法

yum install openssl-devel.x86_64 -y

error 3

checking for bzip2 in default path… not foundconfigure: error: please reinstall the bzip2 distribution

这是bzip2软件包没有安装

解决办法

yum install bzip2-devel.x86_64 -y

error 4

configure: error: please reinstall the libcurl distribution – easy.h should be in /include/curl/

curl和curl库文件没有安装

解决办法

yum install libcurl.x86_64 libcurl-devel.x86_64 -y

error 5

checking whether to enable jis-mapped japanese font support in gd… nochecking for fabsf… yeschecking for floorf… yesconfigure: error: jpeglib.h not found

gd库没有安装

解决办法

yum install libjpeg-devel.x86_64 libpng-devel.x86_64 freetype-devel.x86_64 -y

相关搜索:
.net编译
jsp详解
.net详解
hibernate详解
spring详解

相关文章

2016-02-04 12:03 php源码编译安装
2015-10-05 21:15 linux php 编译参数详解
2015-04-29 14:33 linux下php5.6编译参数详解
2016-07-29 09:58 编译php源码错误集与解决
2016-02-06 08:43 gearman-php扩展源码编译

更多相关文章>>

最新文章

2017-06-20 01:35 老铁们,有没有可能让php文件同时只能一个人访问
2017-06-20 01:35 怎么禁止图片直接通过url访问
2017-06-20 01:35 求救!启动wamp只能用本机访问,同局域网的其它设备访问不到!搞了大半天t-t
2017-06-19 15:35 nginx下的thinkphp问题
2017-06-19 15:35 php form 文件上传

更多最新文章>>

热门搜索

php jsp
php webservice
php 图表
php xml
delphi for php
delphi php
php sqlserver
.net源码
.net 源码
hibernate源码
hibernate 源码
spring源码
html源码
delphi源码
vb.net 编译

京icp备14022385号-2

©2014 itnose软件编程教程 | 联系我们:email:twobrushes@126.com qq:35155868

Posted in 未分类

发表评论