configure: error: libpng.(a|so) not found解决办法

今天在安装PHP的时候.
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-config-file-path=/usr/local/php/etc --enable-sockets --with-mysql=/usr/local/mysql --with-zlib-dir=/usr/include --with-gd
先是报出如下错误:
configure: error: libxml2-config not found,check your libxml2 installation.
解决办法:
安装libxml2-devel,因为rpm -aq |grep libxml2 的时候显示libxml2本身已经安装;
 
解决之后再次configure, 这次报出如下错误:
configure: error: libpng.(a|so) not found
 
解决之道差不多, 同样通过安装libpng-devel解决.