-
- cd libpng-1.2.40
- mv scripts/makefile.linux ./Makefile #一定要使用script下的Makefile ,不要通过./configure
复制代码
生成:
2,下载freetype库,很多GD函数都需要此库的支持
http://ftp.twaren.net/Unix/NonGNU/freetype/freetype-2.3.5.tar.gz
解压后,进入目录:
-
- cd freetype-2.3.5
- ./configure --prefix=/usr/local/freetype #指定freetype的安装目录,以便php编译时用到
- make
- make install
复制代码
3,下载GD库
从http://www.libgd.org上选择合适的版本下载
解压后,进入目录:
-
- ./configure --prefix=/usr/local/gd2 --with-png --with-freetype #不需要指定freetype目录,需要指定gd库的安装路径
- make
- make install
复制代码
4,编译PHP
进入php源码目录:
-
- ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --without-sqlite --
- without-pdo-sqlite --with-gd=/usr/local/gd2 --with-freetype-dir=/usr/local/freetype/
- make
- make install
复制代码
重启apache服务,完成PHP5 GD库的安装。
|