博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS6.9升级autoconf版本,解决”Autoconf version 2.64 or higher is required“错误
阅读量:7040 次
发布时间:2019-06-28

本文共 977 字,大约阅读时间需要 3 分钟。

安装软件时提示说需要Autoconf 2.64或更高的版本:

1 # autoconf  2 configure.ac:8: error: Autoconf version 2.64 or higher is required  3 configure.ac:8: the top level  4 autom4te: /usr/bin/m4 failed with exit status: 63

查询当前版本:

1 # rpm -qf /usr/bin/autoconf  2 autoconf-2.63-5.1.el6.noarch

卸载当前版本:

1 # rpm -e --nodeps autoconf-2.63

安装最新版本:

1 # wget https://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz2 # tar zxvf autoconf-2.69.tar.gz  3 # cd autoconf-2.69  4 # ./configure5 # make && make install

查看当前版本:

1 # /usr/bin/autoconf -V  2     autoconf (GNU Autoconf) 2.69  3     Copyright (C) 2010 Free Software Foundation, Inc.  4     License GPLv3+/Autoconf: GNU GPL version 3 or later  5     
,
6 This is free software: you are free to change and redistribute it. 7 There is NO WARRANTY, to the extent permitted by law. 8 9 Written by David J. MacKenzie and Akim Demaille.

至此,autoconf已升级到2.69

转载于:https://www.cnblogs.com/lokion/p/8430960.html

你可能感兴趣的文章
296. Best Meeting Point
查看>>
681. Next Closest Time(Accepted)
查看>>
Web前端学习——JavaScript
查看>>
IDEA一直在indexing的解决方案
查看>>
关于String类的课后验证
查看>>
Codeforces D - High Load
查看>>
商旅服务平台的会员制规划与运营
查看>>
SQL根据细粒度为天的查询
查看>>
数论 - Miller_Rabin素数测试 + pollard_rho算法分解质因数 ---- poj 1811 : Prime Test
查看>>
Django_ORM操作 - 查询
查看>>
C#进行MapX二次开发之图层操作
查看>>
4、通过配置启动SuperSocket
查看>>
python学习笔记二
查看>>
正则表达式
查看>>
Pytorch中cudnn版本查询
查看>>
解决Eclipse的HTML文件乱码问题
查看>>
存储过程与存储函数
查看>>
ecshop Ajax使用
查看>>
C#声明、实例化和使用委托
查看>>
JS实现回到顶部效果
查看>>