PHPのインストール
cd /usr/local/src
tar xvzf php-5.0.3.tar.gz
./configure \
--with-apxs2=/usr/local/apache2/bin/apxs \
--enable-mbstring \
--enable-mbstr-enc-trans \
--enable-mbregex \
データベース関連
--with-pgsql=/usr/local/pgsql \
--with-mysql=/usr/local/mysql \
GD関連
--with-gd \
--with-zlib \
--with-jpeg-dir=/usr/lib \
--with-png-dir=/usr/lib \
その他
--with-gd=/usr/local \
--with-jpeg-dir \
--with-png-dir \
--with-xpm-dir=/usr/X11R6 \
--with-freetype-dir=/usr/local/include/freetype2 \
--with-ttf=/usr/local/include/freetype1 \
--with-tiff-dir \
--with-pdflib=/usr/local \
make
make install
configureのオプションは、必要なものだけ付加する。
インストール後、Apacheを再起動。