安装autoconf
curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz
tar -xzf autoconf-2.69.tar.gz
cd autoconf-2.69
./configure && make && sudo make install
安装automake
curl -OL http://ftpmirror.gnu.org/automake/automake-1.14.tar.gz
tar -xzf automake-1.14.tar.gz
cd automake-1.14
./configure && make && sudo make install
安装libtool
curl -OL http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz
tar -xzf libtool-2.4.2.tar.gz
cd libtool-2.4.2
./configure && make && sudo make install
安装pkg-config
与上面同样的命令,分别为:
- 下载mac最新版pkg-config
- 解压,终端cd到解压文件夹下
- 运行配置文件进行系统配置:
./configure --with-internal-glib
- 编译pkgconfig:
make
- 安装包自检测:
make check
- 安装:
make install
网友评论