SOFTELメモ Developer's blog

会社概要 ブログ 調査依頼 採用情報 ...
技術者募集中

【php】さくらのVPSでphp5.3.3をコンパイルしたときのconfigureオプションのメモ

こんな感じで。

./configure \
--enable-mbstring \
--enable-mbregex \
--with-gd \
--with-jpeg-dir=/usr \
--with-zlib=/usr \
--with-png-dir=/usr \
--enable-bcmath \
--enable-ftp \
--with-mysql \
--with-curl \
--with-pdo-mysql \
--with-ldap \
--enable-soap \
--with-openssl \
--with-xsl \
--with-xmlrpc \
--disable-magic-quotes \
--enable-sockets \
--prefix=/usr/local/php/5.3.3 \
--with-libdir=lib64 \
--without-pear

prefixを指定して、バージョン違いも気軽に入れようかという計画。

64bit環境だから –with-libdir=lib64 を指定。

fastcgiを使うことにして、apacheのモジュール版はコンパイルせず(CGI版はデフォルトではコンパイルされる)。

prefixを指定したときは、こんなシンボリックリンクを作っておくと、コマンドラインからphpを使うとき便利。

ln -s /usr/local/php/5.3.3/bin/php /usr/local/bin/php



関連するメモ

コメント