Created
January 4, 2012 14:14
-
-
Save tomoh1r/1560221 to your computer and use it in GitHub Desktop.
PHP5.4RC4 ビルド用のシェルスクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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