« やはり.... | メイン | Final ? »

2002年12月 3日

[PC] PHP with IMAP

で,どうも変なのでもう一度再構築.
  • Apache
    $ tar zxvf apache-1.3.27.tar.gz
    $ cd apache-1.3.27
    $ ./configure
    
  • c-cliet
    $ tar zxvf c-client.tar.Z
    $ cd imap-2002
    $ make slx
    $ su
    # cp c-client/c-client.a /usr/local/lib/libc-client.a
    # cp c-client/rfc822.h /usr/local/include
    # cp c-client/mail.h /usr/local/include
    # cp c-client/linkage.h /usr/local/include
    
  • PHP with IMAP
    $ tar zxvf php-4.2.2.tar.gz
    $ cd php-4.2.2
    $ ./configure --with-pgsql --enable-mbstring --enable-mbstr-enc-trans
    --with-apache=../apache_1.3.27/ --enable-track-vars
    --with-imap-ssl=../imap-2002
    $ make
    $ su
    # make install
    
  • mod_ssl
    $ ./configure --with-apache=../apache_1.3.27/
    --with-ssl=../openssl-0.9.6g/ --enable-rule=SHARED_CORE
    --with-layout=Apache --enable-module=so --enable-module=status
    --enable-module=info --enable-module=rewrite --enable-module=usertrack
    --activate-module=src/modules/php4/libphp4.a --enable-shared=ssl
    
  • Apache
    $ cd ../apache-1.3.27/
    $ make
    $ make certificate
    $ su
    # make install
    
    のような感じ. これで何度目だろう(ぉ.

    Posted by Rust Stnard at 00:00