首页 > CentOS > 升级autoconf automake libtool
2014
12-12

升级autoconf automake libtool

有一些该死的软件. 在编译的时候.总是提示版本过低.

所以呢. 以下为编译高版本的 autoconf automake libtool 的方法.

autoconf
wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.gz
tar zxf autoconf-2.68.tar.gz
cd autoconf-2.68
./configure
make
make install
cd ../

automake
wget ftp://ftp.gnu.org/gnu/automake/automake-1.9.tar.gz
tar zxf automake-1.9.tar.gz
cd automake-1.9
./configure
make
make install
cd ../

libtool
wget ftp://ftp.gnu.org/gnu/libtool/libtool-2.4.tar.gz
tar zxf libtool-2.4.tar.gz
cd libtool-2.4
./configure
make
make install
cd ../

# 检查 /etc/ld.so.conf 有没有 /usr/local/lib
# 没有的话 添加 并执行 ldconfig

最后编辑:
作者:王, 帅
这个作者貌似有点懒,什么都没有留下。

留下一个回复

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