Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-09-05 23:54:02 +0400
committerIgor Sysoev <igor@sysoev.ru>2004-09-05 23:54:02 +0400
commit980a92472cc30271ad7e88eb2dcc43f00e984d4d (patch)
treeb8940cd9e6b8859c78e3c023c1373bae02371f2e /auto/modules
parentb9e344175f4e971284aa14c8fe685936a4957d52 (diff)
nginx-0.0.10-2004-09-05-23:54:02 import
Diffstat (limited to 'auto/modules')
-rw-r--r--auto/modules14
1 files changed, 9 insertions, 5 deletions
diff --git a/auto/modules b/auto/modules
index be76fd83a..d80a05cb8 100644
--- a/auto/modules
+++ b/auto/modules
@@ -126,11 +126,15 @@ if [ -r $OBJS/auto ]; then
. $OBJS/auto
fi
-modules="$CORE_MODULES $EVENT_MODULES $HTTP_MODULES $HTTP_FILTER_MODULES \
- $HTTP_HEADERS_FILTER_MODULE \
- $HTTP_COPY_FILTER_MODULE \
- $HTTP_RANGE_BODY_FILTER_MODULE \
- $HTTP_NOT_MODIFIED_FILTER_MODULE"
+modules="$CORE_MODULES $EVENT_MODULES"
+
+if [ $HTTP = YES ]; then
+ modules="$modules $HTTP_MODULES $HTTP_FILTER_MODULES \
+ $HTTP_HEADERS_FILTER_MODULE \
+ $HTTP_COPY_FILTER_MODULE \
+ $HTTP_RANGE_BODY_FILTER_MODULE \
+ $HTTP_NOT_MODIFIED_FILTER_MODULE"
+fi
echo "#include <ngx_config.h>" > $NGX_MODULES_C