Total Pageviews

Sunday 9 October 2016

升级automake,autoconf, libtool

wget http://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz
tar zxvf automake-1.15.tar.gz (这是写本文时的最新版,2016-10-09)
cd automake-1.15
./configure
make
make install

wget http://ftp.gnu.org/gnu/autoconf/autoconf-latest.tar.gz
tar zxvf autoconf-latest.tar.gz
cd autoconf-latest
./configure
make
make install

wget http://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz
tar zxvf libtool-2.4.6.tar.gz
cd libtool-2.4.6
./configure
make
make install

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