环境安装好了,我遇到了第一个困扰,Mac OS 没有 yum/apt-get,不能 ./configure,不能 make 解决这个问题的办法: 1、安装 Xcode,在 App Store 中可以免费获取 2、打开 Xcode,菜单依次是:Xcode > Preferences > Downloads > Components 3、点击 Command Line Tools 右边的 Install 按钮 安装 Xcode 与 Command Line Tools 的过程都非常长,耐心等待,安装后你就拥有了 Mac make && make install 功能了。
# m4 tar xjf m4-1.4.16.tar.bz2 cd m4-1.4.16 ./configure --prefix=/usr/local make clean && make -j4 && make install-strip cd .. rm -rf m4-1.4.16
# autoconf tar xjf autoconf-2.68.tar.bz2 cd cd autoconf-2.68 ./configure --prefix=/usr/local make clean && make -j4 && make install-strip cd .. rm -rf autoconf-2.68
# automake tar xjf automake-1.11.1.tar.bz2 cd automake-1.11.1 ./configure --prefix=/usr/local make clean && make -j4 && make install-strip cd .. rm -rf automake-1.11.1
# libtool tar xjf libtool-2.4.tar.gz cd libtool-2.4 ./configure --prefix=/usr/local make clean && make -j4 && make install-strip cd .. rm -rf libtool-2.4
# PCRE tar xzf pcre-8.30.tar.gz cd pcre-8.30 ./configure --prefix=/usr/local --enable-utf8 make clean && make && make install cd .. rm -rf pcre-8.30
第三步,安装 Yaf 到 MacOS 下载YAF,地址是:pecl.php.net/package/yaf,然后执行命令: tar -xzf yaf-2.1.16.tgz cd yaf-2.1.16 /Applications/XAMPP/xamppfiles/bin/phpize ./configure --with-php-config=/Applications/XAMPP/xamppfiles/bin/php-config make && make install