Skip to content

Instantly share code, notes, and snippets.

@tomoh1r
Created January 4, 2012 14:14
Show Gist options
  • Select an option

  • Save tomoh1r/1560221 to your computer and use it in GitHub Desktop.

Select an option

Save tomoh1r/1560221 to your computer and use it in GitHub Desktop.
PHP5.4RC4 ビルド用のシェルスクリプト
#!/bin/sh
# このページより PHP のオプションを参考にいたしました。
# http://blog.madapaja.net/2011/12/php54-symfony2.html
# 下記のページより、ビルド用シェルスクリプトの着想を得ました。
# http://okwave.jp/qa/q566511.html
# 改めて御礼いたします。
cd php-5.4.0RC4
make clean
./configure \
--prefix=/path/to/php-5.4.0RC4 \
--with-apxs2=/usr/bin/apxs2 \
--with-openssl=shared \
--with-pcre-regex \
--with-zlib \
--with-mhash \
--with-xsl \
--enable-intl \
--enable-mbstring \
--with-mcrypt \
--enable-pcntl \
--with-libedit \
--with-readline \
--with-pear \
--disable-debug \
--enable-mysqlnd \
--with-gd --enable-gd-native-ttf --enable-gd-jis-conv
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment