PHP动态编译出现Cannot find autoconf的解决方法
程序员文章站
2022-06-05 20:45:53
本文详细讲述了php动态编译出现cannot find autoconf的解决方法。分享给大家供大家参考。具体方法如下:
在安装完php后,想动态编译php的memcac...
本文详细讲述了php动态编译出现cannot find autoconf的解决方法。分享给大家供大家参考。具体方法如下:
在安装完php后,想动态编译php的memcache扩展库
复制代码 代码如下:
cd memcache-2.2.5/
/usr/local/webserver/php/bin/phpize
./configure --with-php-config=/usr/local/webserver/php/bin/php-config
/usr/local/webserver/php/bin/phpize
./configure --with-php-config=/usr/local/webserver/php/bin/php-config
但是执行/usr/local/webserver/php/bin/phpize时出现错误:
复制代码 代码如下:
configuring for:
php api version: 20041225
zend module api no: 20060613
zend extension api no: 220060519
cannot find autoconf. please check your autoconf installation and the $php_autoconf environment variable is set correctly and then rerun this script.
php api version: 20041225
zend module api no: 20060613
zend extension api no: 220060519
cannot find autoconf. please check your autoconf installation and the $php_autoconf environment variable is set correctly and then rerun this script.
在网上搜索一通,发现这个问题提的人还挺多,摘了一段下来:
复制代码 代码如下:
# wget http://ftp.gnu.org/gnu/m4/m4-1.4.9.tar.gz
# tar -zvxf 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
# tar -zvxf 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
如果是ubuntu的话,可以更简单:
复制代码 代码如下:
sudo apt-get install m4
sudo apt-get install autoconf
sudo apt-get install autoconf
或者直接:
复制代码 代码如下:
sudo apt-get install autoconf
因为autoconf 依赖于m4,所以会自动下载解决这个依赖关系.
希望本文所述对大家的php程序设计有所帮助。
上一篇: 吃什么胖的快?吃它一天暴涨5斤!
下一篇: 五元店
推荐阅读
-
为PHP安装imagick时出现Cannot locate header file MagickWand.h错误的解决方法
-
PHP动态编译出现Cannot find autoconf的解决方法
-
php出现Cannot modify header information问题的解决方法大全
-
SublimeText 2编译python出错的解决方法(The system cannot find the file specified)
-
为PHP安装imagick时出现Cannot locate header file MagickWand.h错误的解决方法
-
php出现Cannot modify header information问题的解决方法
-
php出现Cannot modify header information问题的解决方法大全
-
php出现Cannot modify header information问题的解决方法大全_PHP教程
-
php出现Cannot modify header information问题的解决方法大全_php技巧
-
php出现Cannot modify header information问题的解决方法大全_php技巧