Linux安装PHP依赖软件

PHP依赖软件

安装libxml2

下载地址

http://xmlsoft.org/sources/


第一步   tar  zxvf  libxml2-2.7.2+tab


第二步  cd libxml2

第三步  ./configure --prefix=/usr/local/libxml2 \

--without-zlib


make && make install


下载jpeg8软件:

http://www.ijg.org/

1.cd 到 tar

2.tar  zxvf  jpeg+tab


3../configure --prefix=/usr/local/jper  \--enable-shared --enable-static


4.make&&make install


安装libpng方法:

https://libpng.sourceforge.io/

https://ftp-osl.osuosl.org/pub/libpng/src/libpng15/

1.tar zxvf lib+tab



1

2 ../configure && make &&  make install

安装字体库freetype

https://www.freetype.org/download.html

https://download.savannah.gnu.org/releases/freetype/

1.tar -zxvf  free+tab

2../configure --prefix=/usr/local/freetype

3.make &&make install

安装字体库gd

1.tar -zxvf lib+tab

2.mkdir -p /usr/local/gd

3 cd libgd +tab

4./configure -prefix=/usr/local/gd \

--with-jpeg=/usr/local/jpeg \

--with-png --with-zlib\

--with-freetype=/usr/local/freetype

5 make && make install

参照文章《configure: error: png.h not found.错误的解决方法》

今天安装PHP的时候提示这个错误 configure: error: png.h not found.,这个是选择安装GD模块才会出现的错误,详细错误信息如下:

If configure fails try --with-vpx-dir=

If configure fails try --with-jpeg-dir=

configure: error: png.h not found.

经查资料说是libpng,devel包没安装,

执行下面两条命令即可解决

yum install libpng

yum install libpng-devel

然后重新编译安装就行了   

---------------------

作者:lovely_1014

来源:CSDN

原文:https://blog.csdn.net/lovely_1014/article/details/54023976

版权声明:本文为博主原创文章,转载请附上博文链接!

你可能感兴趣的:(Linux安装PHP依赖软件)