php configure時のエラーと対処

エラー内容1

configure: error: xml2-config not found. Please check your libxml2 installation.

対応

libxml2がないので、インストールする。
# yum install libxml2

エラー内容2

checking for PCRE headers location... configure: error: Could not find pcre.h in /usr

対応

# yum install "pcre*"

エラー内容3

configure: error: png.h not found.

対応

# yum install libpng-devel

エラー内容4

configure: error: xpm.h not found.

対応

# yum install libXpm-devel.x86_64

エラー内容5

configure: error: Unable to locate gmp.h

対応

# yum install gmp-devel

おすすめの記事