diff --git a/package/rene/apache/apache.conf b/package/rene/apache/apache.conf index bd3bc845e..b06843f88 100644 --- a/package/rene/apache/apache.conf +++ b/package/rene/apache/apache.conf @@ -37,6 +37,12 @@ if [ $pkg = "apache" ] ; then --enable-disk-cache --enable-ssl --enable-proxy \ --enable-speling --enable-rewrite --enable-so --enable-deflate" + [ "$ROCKCFG_PKG_APACHE_INFO" == 1 ] && \ + var_append extraconfopt " " "--enable-info" + + [ "$ROCKCFG_PKG_APACHE_AUTH_DIGEST" == 1 ] && \ + var_append extraconfopt " " "--enable-auth-digest" + hook_add postmake 3 "install_init apache $confdir/apache.init" fi diff --git a/package/rene/apache/config.in b/package/rene/apache/config.in index e37db10b0..7b12b36e1 100644 --- a/package/rene/apache/config.in +++ b/package/rene/apache/config.in @@ -41,6 +41,9 @@ then choice ROCKCFG_PKG_APACHE_BDB $default $list fi + bool "Enable info" ROCKCFG_PKG_APACHE_INFO 0 + bool "Enable Auth Digest" ROCKCFG_PKG_APACHE_AUTH_DIGEST 0 + menu_end fi