環境
- OS: NetBSD 3.1
- apache: 2.2.6
- php: 5.2.4
http://httpd.apache.orgからhttpd-2.2.6.tar.bz2をダウンロードします。
% tar jxvf httpd-2.2.6.tar.bz2
% cd httpd-2.2.6
aprのインストール
% cd srclib/apr
% ./configure --prefix=/usr/local/apache2
% make
# make install
apr-utilのインストール
% cd ../apr-util
% ./configure --prefix=/usr/local/apache2 --with-apr=/usr/local/apache2
% make
# make install
httpdのインストール
% ./configure --prefix=/usr/local/apache2 \
              --with-apr=/usr/local/apache2 \
              --with-apr-util=/usr/local/apache2 \
              --enable-dav \
              --enable-dav-fs \
              --enable-headers \
              --enable-mods-shared=most \
              --enable-ssl \
              --enable-so
% make
% su
# make install
apacheインストール後にphp-5.2.4を再インストール