« PostgreSQL 7.3.2 | メイン | 今日の FFXI »

2003年2月22日

[memorandum] Apache 2.0.44 & OpenSSL 0.9.7a & PHP 4.3.1 & c-client

で,ここでいっそ 2.0 系にしてみることにする
  • Apache configure
    $ tar zxvf httpd-2.0.44.tar.gz
    $ cd httpd-2.0.44
    $ ./configure
    
  • Build c-cliend (Library は前回インストール済み)
    $ tar zxvf c-client.tar.Z
    $ cd imap-2002
    $ make slx
    $ su
    
  • Build OpenSSL
    $ tar zxvf openssl-0.9.7a.tar.gz
    $ cd openssl-0.9.7a
    $ ./config -fPIC shared
    $ make
    $ su
    # make install
    # exit
    $ mkdir lib
    $ cp -a libcrypto.* lib
    $ cp -a libssl.* lib
    
  • Build PHP
    $ tar zxvf php-4.3.1.tar.gz
    $ cd php-4.3.1
    $ ./configure --with-pgsql --enable-mbstring --with-mbregex
    --with-apache2=../httpd-2.0.44 --with-imap=../imap-2002
    --with-imap-ssl=../openssl-0.9.7a
    $ make
    $ su
    # make install
    
  • Build Areche2
    $ tar zxvf httpd-2.0.44.tar.gz
    $ cd httpd-2.0.44
    $ ./configure --enable-mods-shared=all
    --activate-module=src/modules/php4/libphp4.a
    $ make
    $ su
    # make install
    
    とりあえずインストールまで.設定は後日.

    Posted by Rust Stnard at 00:00