安装m4
wget http://mirrors.kernel.org/gnu/m4/m4-1.4.13.tar.gz
tar -xzvf m4-1.4.13.tar.gz
cd m4-1.4.13
./configure –prefix=/usr/local
make && make install
安装autoconf
wget http://mirrors.kernel.org/gnu/autoconf/autoconf-2.63.tar.gz
tar -xzvf autoconf-2.63.tar.gz
cd autoconf-2.63
./configure --prefix=/usr/local
make && make install
安装automake
wget http://mirrors.kernel.org/gnu/automake/automake-1.10.tar.gz
tar xzvf automake-1.10.tar.gz
cd automake-1.10
./configure –prefix=/usr/local
make && make install
安装libtool
wget http://mirrors.kernel.org/gnu/libtool/libtool-2.4.tar.gz
tar xzvf libtool-2.4.tar.gz
cd libtool-2.4
./configure –prefix=/usr/local
make && make install
参考文章:https://blog.csdn.net/qq_30549833/article/details/72955881