Apacheがバージョンアップした。
KAJUAKJU.netのApacheもアップデート。
$ wget http://ftp.kddilabs.jp/infosystems/apache/httpd/httpd-2.2.4.tar.bz2 $ tar xvjf httpd-2.2.4.tar.bz2 $ cd httpd-2.2.4 $ ./configure --disable-userdir --enable-so (省略) Configuring Apache Portable Runtime Utility library... checking for APR-util... yes configure: error: Cannot use an external APR-util with the bundled APR
いつものようにコンパイルしたらエラーが発生した。
configureオプションを変更することで回避できるようだ。
$ ./configure --disable-userdir --enable-so --with-included-apr $ make # make install
プロセスを再起動して完了。
# /sbin/service httpd restart httpd を停止中: [ OK ] httpd を起動中: [ OK ]
コメント