$ ./configure
.
.
.

configure: Configuring Apache Portable Runtime library...
configure:
checking for APR... no
configure: error: APR not found. Please read the documentation.


APRが無いためエラーが出力される。
apache2.4ではこれを別に入れなければいけない。
一旦 apacheのディレクトリを出る事を忘れずに。

APRのダウンロードページに行って、apr-1.5.2.tar.gzをダウンロード。
tar コマンドで展開後、ディレクトリに入る。
READMEに目を通し、オプションを確認する。

$ ./configure --prefix=/usr/local/apr-1.5.2 ←オプション例

rm: cannot remove `libtoolT': No such file or directory ←バグなので気にしない。本体の稼動に問題なし。

$ make
$ su
# make install

問題なくインストール後は、apacheディレクトリに戻り、オプションを付けて、makeファイルを作成する。

$ ./configure --with-apr=/usr/local/apr-1.5.2 ←オプション付き

checking for APR-util... no
configure: error: APR-util not found. Please read the documentation.

今度は APR-util がないので、探してインストール。