使用 phpfarm 安装/卸载 php-5.2.17

Install / Uninstall php-5.2.17 using phpfarm

我之前简单地安装了 php-5.2.17

./compile.sh 5.2.17

我没有定义任何自定义选项。但后来我意识到它正在使用 cgi 并且我希望它使用 fastcgi 所以我将自定义文件创建为

configoptions="
    –enable-cli \
    –with-pear \
    –with-openssl=/usr \
    –with-iconv \
    –with-curl \
    –with-mysqli \
    –enable-mbstring \
    –enable-exif \
    –with-jpeg-dir=/usr \
    –with-zlib \
    –with-zlib-dir \
    –with-png-dir=/usr \
    –with-gd \
    –with-gettext \
    –enable-gd-native-ttf \
    –with-mhash \
    –enable-ftp \
    –with-pspell \
    –with-mcrypt \
    –enable-bcmath \
    –with-mime-magic \
    –with-pdo-mysql \
    –enable-sockets \
    –enable-soap \
   –enable-calendar \
    –enable-fastcgi \
    –enable-force-cgi-redirect \
"

现在当我使用上面的命令编译时,它给出了

5.2.17 5 2 17
configure: error: can only configure for one host and one target at a time
configure.sh failed.

请注意,我已经根据在线教程修补了所有必要的内容。

我正在使用 Ubuntu 14.4

我通读了 php-农场 github 页面,this 部分引起了我的注意。

说明经常使用custom/default-versions.txt文件重新编译同一个php版本。