2004年9月 7日
▽[PC] Apache/PHP/IMAP-SSL/PostgreSQL
ここらでひとまずまとめを.- PostgreSQL
$ tar zxvf postgresql-7.4.5.tar.gz $ cd postgresql-7.4.5/ $ ./configure --with-perl --with-ssl $ make $ su # make install
- Apache
$ tar zxvf httpd-2.0.50.tar.gz $ cd httpd-2.0.50/ $ ./configure --enable-modules=all --enable-mods-shared=all --enable-ssl $ make $ su # make install
- IMAP-SSL
$ tar zxvf imap.tar.Z $ cd imap-2002e/ $ make slx
- OpenSSL
$ tar zxvf openssl-0.9.7d.tar.gz $ cd openssl-0.9.7d/ $ ./config -fPIC $ make $ mkdir lib $ cp lib*.a lib/
- PHP
$ tar zxvf php-4.3.8.tar.bz2 $ cd php-4.3.8/ $ ./configure --with-pgsql --enable-mbstring --with-mbregex --with-imap=../imap-2002 --with-imap-ssl=../openssl-0.9.7d --enable-track-vars --enable-mbstr-enc-trans --with-apxs2=/usr/local/apache2/bin/apxs $ make $ su # make install # exit $ make distclean $ ./configure --with-pgsql --enable-mbstring --with-mbregex --with-imap=../imap-2002 --with-imap-ssl=../openssl-0.9.7d --enable-track-vars --enable-mbstr-enc-trans $ make $ su # make install
Posted by Rust Stnard at 13:32