From 1ebfead9da0596e8e84231f7ea8ba25a650a4d1e Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 16 Feb 2005 13:40:36 +0000 Subject: nginx-0.1.19-RELEASE import *) Bugfix: now, if request contains the zero, then the 404 error is returned for the local requests. *) Bugfix: nginx could not be built on NetBSD 2.0. *) Bugfix: the timeout may occur while reading of the the client request body via SSL connections. --- auto/modules | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) (limited to 'auto/modules') diff --git a/auto/modules b/auto/modules index 2c001e28b..1fe9ac8d1 100644 --- a/auto/modules +++ b/auto/modules @@ -162,10 +162,32 @@ if [ $HTTP_STUB_STATUS = YES ]; then HTTP_SRCS="$HTTP_SRCS src/http/modules/ngx_http_stub_status_module.c" fi -if [ -r $NGX_OBJS/auto ]; then - . $NGX_OBJS/auto +#if [ -r $NGX_OBJS/auto ]; then +# . $NGX_OBJS/auto +#fi + + +if test -n "$NGX_ADDONS"; then + + echo configuring additional modules + + for ngx_addon_dir in $NGX_ADDONS + do + echo "adding module in $ngx_addon_dir" + + if test -f $ngx_addon_dir/config; then + . $ngx_addon_dir/config + + echo " + $ngx_addon_name was configured" + + else + echo "$0: error: no $ngx_addon_dir/config was found" + exit 1 + fi + done fi + modules="$CORE_MODULES $EVENT_MODULES" if [ $HTTP = YES ]; then @@ -174,8 +196,11 @@ if [ $HTTP = YES ]; then $HTTP_COPY_FILTER_MODULE \ $HTTP_RANGE_BODY_FILTER_MODULE \ $HTTP_NOT_MODIFIED_FILTER_MODULE" + + NGX_ADDON_DEPS="$NGX_ADDON_DEPS \$(HTTP_DEPS)" fi + IMAP_MODULES=$IMAP_MODULE if [ $IMAP = YES ]; then -- cgit