-ソースからコンパイルする場合のTIPS
-インストール時に開発環境をいれておくのが最良(コンパイル時にヘッダーが必要になることが多いため)
<h1>hoge</h1>
#contents
*MySQL [#ff1087a4]
-[[参考URL:http://www.y-kit.jp/saba/xp/postgreinst.htm]]
# groupadd mysql
# useradd -g mysql -d /usr/local/mysql mysql
# passwd mysql
# chown -R mysql:mysql /usr/local/mysql/
*PostgreSQL7.x [#ac2af84a]
-[[参考URL:http://www.y-kit.jp/saba/xp/postgreinst.htm]]
# groupadd postgres
# useradd -g postgres -d /usr/local/pgsql postgres
# cd /usr/local/pgsql
# chown -R postgres:postgres /usr/local/pgsql/
readlineとzlibがconfigureでエラーになるので
./configure --enable-multibyte=EUC_JP --prefix=/usr/local/pgsql --without-readline --without-zlib
make check
make install
-Miracle2.1,Redhat8&9
*Lynx [#x636f590]
コンパイル時にcursesというライブラリが必要
ncursesというのがGNUにある
vineならapt-get install ncurses-devel