« 短編集?(マリア様がみてるーバラエティギフトー) | メイン | あ,赤い((((;゚Д゚))) »

2004年9月 7日

[PC] Apache/PHP/IMAP-SSL/PostgreSQL

ここらでひとまずまとめを.
  1. PostgreSQL
    $ tar zxvf postgresql-7.4.5.tar.gz
    $ cd postgresql-7.4.5/
    $ ./configure --with-perl --with-ssl
    $ make
    $ su
    # make install
    
  2. 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
    
  3. IMAP-SSL
    $ tar zxvf imap.tar.Z
    $ cd imap-2002e/
    $ make slx
    
  4. OpenSSL
    $ tar zxvf openssl-0.9.7d.tar.gz
    $ cd openssl-0.9.7d/
    $ ./config -fPIC
    $ make
    $ mkdir lib
    $ cp lib*.a lib/
    
  5. 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
    
重要なのは,OpenSSLのlibraryをlib/配下にCopyすること. なんでだろうね,ここでエラーでるの.

Posted by Rust Stnard at 13:32