升级autoconf automake libtool

来源:互联网 发布:java手机短信接口 编辑:程序博客网 时间:2024/05/22 01:53

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

所以呢. 以下为编译高版本的 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

1 0