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

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

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

[root@wslu-cs wslu]# autoconfconfigure.ac:8: error: Autoconf version 2.64 or higher is requiredconfigure.ac:8: the top levelautom4te: /usr/bin/m4 failed with exit status: 63
查询当前版本:

[root@wslu-cs wslu]# rpm -qf /usr/bin/autoconfautoconf-2.63-5.1.el6.noarch
卸载当前版本:

[root@wslu-cs wslu]# rpm -e --nodeps autoconf-2.63
安装最新版本:

[root@wslu-cs wslu]# wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz[root@wslu-cs wslu]# tar zxvf autoconf-2.69.tar.gz[root@wslu-cs wslu]# cd autoconf-2.69[root@wslu-cs wslu]# ./configure --prefix=/usr/[root@wslu-cs wslu]# make && make install
查看当前版本:

[root@wslu-cs autoconf-2.69]# /usr/bin/autoconf -Vautoconf (GNU Autoconf) 2.69Copyright (C) 2010 Free Software Foundation, Inc.License GPLv3+/Autoconf: GNU GPL version 3 or later
,
This is free software: you are free to change and redistribute it.There is NO WARRANTY, to the extent permitted by law.Written by David J. MacKenzie and Akim Demaille.

至此,autoconf已升级到2.69。

转载地址:http://ekkun.baihongyu.com/

你可能感兴趣的文章
设计模式之责任链模式
查看>>
怎么成为一个合格的ERP系统管理员
查看>>
企业为什么要用ERP
查看>>
ERP计划层次探讨
查看>>
ERP的五大核心思想
查看>>
ERP、PLM是什么意思?ERP、PLM有什么内在联系
查看>>
公司升级ERP管理系统的三大诱因
查看>>
Android四大应用组件(一)——Activity
查看>>
Spring5框架——IOC(基于xml配置文件)(一)
查看>>
spring5框架——IOC(基于注解)&AOP(二)
查看>>
SpringMVC框架(一)
查看>>
SpringMVC框架(二)
查看>>
IDEA整合SSM框架
查看>>
Spring注解驱动开发(一)
查看>>
Spring注解驱动开发(二)
查看>>
SpringSecurity&thyemleaf命名空间约束地址
查看>>
字符串(二)
查看>>
字符串(三)
查看>>
字符串练习
查看>>
正则表达式
查看>>