CentOS php 5 インストールメモ
yumでインストールするとmecab + Senna でカスタムインストールしたMySQLとうまく連携できなかったためソースからインストール
yum install libjpeg-devel
yum install libpng-devel
yum install gd-devel
yum install freetype-devel
cd php-5.2.6
./configure --with-apxs2=/usr/local/apache2/bin/apxs --enable-magic-quotes --enable-mbregex --enable-mbstring --enable-zend-multibyte --with-mysql=/usr/local/mysql --with-zlib --with-gd --with-gettext --with-jpeg-dir=/usr/lib --with-png-dir=/usr/lib
make
make install