ソースから入れたapacheのconfigureオプションを調べる

なんか毎回忘れるのでメモ。

ソールから入れたapacheのconfigureオプションを調べるには以下のファイルを調べる。

$ cat /usr/local/apache2/build/config.nice
#! /bin/sh
#
# Created by configure

"./configure" \
"--prefix=/usr/local/apache2" \
"--with-mpm=worker" \
"--enable-ssl" \
"--enable-rewrite" \
"--enable-proxy" \
"$@"

こんなんでいいんです。