From 5bd8271fbceb7dc8cec8e9624bc36f26858a4693 Mon Sep 17 00:00:00 2001 From: Rene Rebe Date: Tue, 20 Jan 2004 18:30:30 +0000 Subject: [PATCH] "Alan J. Wylie" : added configuration options for server status and mod_auth_digest to apache git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@2208 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- package/rene/apache/apache.conf | 6 ++++++ package/rene/apache/config.in | 3 +++ 2 files changed, 9 insertions(+) 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