更新!更新!!

仕事で忙しい間にいろいろ出ていた。まとめて更新。

Apache

./configure \
--enable-so \
--enable-modure=all \
--enable-shared=max \
--enable-dav=yes \
--enable-module=so &&
make &&
/etc/rc.d/init.d/httpd.rc stop &&
make install &&
/etc/rc.d/init.d/httpd.rc start &&
cd ..

PHP

wget http://jp.php.net/get/php-5.1.4.tar.gz/from/this/mirror &&
tar zxvof php-5.1.4.tar.gz &&
cd php-5.1.4 &&
./configure \
--without-mysql \
--with-apxs2=/usr/local/apache2/bin/apxs \
--with-mysqli=/usr/local/bin/mysql_config &&
make &&
make install &&
/etc/rc.d/init.d/httpd.rc stop &&
/etc/rc.d/init.d/httpd.rc start &&
cd .. &&

MySQL

wget http://dev.mysql.com/get/Downloads/MySQL-5.0/mysql-5.0.21.tar.gz/from/http://ftp.iij.ad.jp/pub/db/mysql/ &&
tar zxvof mysql-5.0.21.tar.gz &&
cd mysql-5.0.21 &&
./configure \
--with-charset=ujis \
--with-extra-charsets=all \
--with-mysqld-user=mysql &&
make &&
make install &&
/etc/rc.d/init.d/mysql.rc stop &&
/etc/rc.d/init.d/mysql.rc start