apache httpd 2.2.15がリリースされたのでインストールしました。
環境
- OS(userland): NetBSD 5.0.1
- kernel: NetBSD 5.99.20
- apache: 2.2.15
http://httpd.apache.orgからhttpd-2.2.15.tar.bz2をダウンロードします。
% tar jxvf httpd-2.2.15.tar.bz2
% cd httpd-2.2.15
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 \
--enable-proxy
% make
% su
# make install