【原创】为啥autoconf已是最新了,还报版本错误?

【原创】为啥autoconf已是最新了,还报版本错误?

错误内容:configure.ac:8: error: Autoconf version 2.68 or higher is required

错误原因:安装路径不对

1)查看默认安装路径:

autoconf -V,确定你具体需要安装到什么位置,我的显示的是

-bash: /usr/local/bin/autoconf: No such file or directory

2)路径配置:

网上给出的路径是 ./configure –prefix=/usr/,其安装的路径是 /usr/bin/autoconf,所以,此时应该改为 ./configure –prefix=/usr/local/,默认的安装路径就变成了/usr/local/bin/autoconf

3)最后编译即可

make && make install

4)查看版本是否正确:

autoconf -V 即可看到正确的版本信息了

 

最后正确的安装步骤为:

1、下载:wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz

2、解压:tar -zxvf autoconf-2.69.tar.gz

3、配置:

(1)cd autoconf-2.69

(2)./configure –prefix=/usr/local/

4、编译:make && make install

发表评论

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

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据