Solaris10 にインストール

$ ./configure \
 --prefix=/proj/local/mysql-5.0.37 \
 --localstatedir=/proj/local/mysql-5.0.37/data \
 --libexecdir=/proj/local/mysql-5.0.37/bin \
 --enable-thread-safe-client \
 --enable-local-infile \
 --enable-assembler \
 --with-pic \
 --with-fast-mutexes \
 --with-zlib-dir=bundled \
 --with-big-tables \
 --with-yassl \
 --with-readline \
 --with-archive-storage-engine \
 --with-blackhole-storage-engine \
 --with-example-storage-engine \
 --with-federated-storage-engine \
 --with-innodb \
 --with-charset=utf8 \
 --with-extra-charsets=all \
 --with-mysqld-user=mysql
$ /usr/sfw/bin/gmake
# /usr/sfw/bin/gmake install
# groupadd mysql
# useradd -g mysql mysql
# cp support-files/my-medium.cnf /proj/local/mysql-5.0.37/
# cp support-files/mysql.server /etc/init.d/
# cd /etc/rc3.d
# ln -s /etc/init.d/mysql.server S99projmysql