Mac上常见基础构建工具的安装

安装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上常见基础构建工具的安装】与上面同样的命令,分别为:
  1. 下载mac最新版pkg-config
  2. 解压,终端cd到解压文件夹下
  3. 运行配置文件进行系统配置:./configure --with-internal-glib
  4. 编译pkgconfig:make
  5. 安装包自检测: make check
  6. 安装: make install

    推荐阅读