码迷,mamicode.com
首页 > Web开发 > 详细

编译PHP

时间:2015-12-13 02:19:02      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:php

版本PHP-5.3.27


 1. [root@KAKA php-5.3.27]# ./configure \

--prefix=/usr/local/php \

--with-apxs2=/usr/local/apache2/bin/apxs \

--with-config-file-path=/usr/local/php/etc  \

--with-mysql=/usr/local/mysql \

--with-libxml-dir \

--with-gd \

--with-jpeg-dir \

--with-png-dir \

--with-freetype-dir \

--with-iconv-dir \

--with-zlib-dir \

--with-bz2 \

--with-openssl \

--with-mcrypt \

--enable-soap \

--enable-gd-native-ttf \

--enable-mbstring \

--enable-sockets \

--enable-exif \

--disable-ipv6

2.$ echo $?

0

3.$ make 

4.$ echo $?

0

5.$ make install

6.$ echo $?

0


完成


根据参数选项,先安装依赖包:

yum install -y libxml2-devel openssl openssl-devel  bzip2 bzip2-devel  libpng libpng-devel freetype freetype-devel libjpeg libjpeg-devel


安装加密模块:libmcrypt

wget http://nchc.dl.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz

$ tar zxf libmcrypt

$ cd libmcrypt

$ ./configure

提示需要缺少c++库

$ yum install -ygcc-c++

$ make &&make install

$ cd ..                               #回到PHP目录


编译PHP

标签:php

原文地址:http://752030200.blog.51cto.com/8936921/1722379

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!