phpize 报错:Cannot find autoconf. Please check your autoconf installation and the

原因:操作系统没有安装autoconf。
autoconf是一个用于生成可以自动地配置软件源码包,用以适应多种UNIX类系统的shell脚本工具,其中autoconf需要用到 m4,便于生成脚本


解决方案1:
使用yum安装:yum install -y autoconf


解决方案2:
使用源码安装:
cd /usr/local/src/
wget http://ftp.gnu.org/gnu/m4/m4-1.4.9.tar.gz
tar -zxvf m4-1.4.9.tar.gz
cd m4-1.4.9/
./configure && make && make install

cd ../
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.62.tar.gz
tar -zvxf autoconf-2.62.tar.gz
cd autoconf-2.62/
./configure && make && make install











发表评论

邮箱地址不会被公开。 必填项已用*标注