comparison auto/modules @ 38:2879cd3a40cb NGINX_0_1_19

nginx 0.1.19 *) 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.
author Igor Sysoev <http://sysoev.ru>
date Wed, 16 Feb 2005 00:00:00 +0300
parents a39d1b793287
children 0d75d65c642f
comparison
equal deleted inserted replaced
37:3376a7dea5d6 38:2879cd3a40cb
160 have=NGX_STAT_STUB . auto/have 160 have=NGX_STAT_STUB . auto/have
161 HTTP_MODULES="$HTTP_MODULES ngx_http_stub_status_module" 161 HTTP_MODULES="$HTTP_MODULES ngx_http_stub_status_module"
162 HTTP_SRCS="$HTTP_SRCS src/http/modules/ngx_http_stub_status_module.c" 162 HTTP_SRCS="$HTTP_SRCS src/http/modules/ngx_http_stub_status_module.c"
163 fi 163 fi
164 164
165 if [ -r $NGX_OBJS/auto ]; then 165 #if [ -r $NGX_OBJS/auto ]; then
166 . $NGX_OBJS/auto 166 # . $NGX_OBJS/auto
167 fi 167 #fi
168
169
170 if test -n "$NGX_ADDONS"; then
171
172 echo configuring additional modules
173
174 for ngx_addon_dir in $NGX_ADDONS
175 do
176 echo "adding module in $ngx_addon_dir"
177
178 if test -f $ngx_addon_dir/config; then
179 . $ngx_addon_dir/config
180
181 echo " + $ngx_addon_name was configured"
182
183 else
184 echo "$0: error: no $ngx_addon_dir/config was found"
185 exit 1
186 fi
187 done
188 fi
189
168 190
169 modules="$CORE_MODULES $EVENT_MODULES" 191 modules="$CORE_MODULES $EVENT_MODULES"
170 192
171 if [ $HTTP = YES ]; then 193 if [ $HTTP = YES ]; then
172 modules="$modules $HTTP_MODULES $HTTP_FILTER_MODULES \ 194 modules="$modules $HTTP_MODULES $HTTP_FILTER_MODULES \
173 $HTTP_HEADERS_FILTER_MODULE \ 195 $HTTP_HEADERS_FILTER_MODULE \
174 $HTTP_COPY_FILTER_MODULE \ 196 $HTTP_COPY_FILTER_MODULE \
175 $HTTP_RANGE_BODY_FILTER_MODULE \ 197 $HTTP_RANGE_BODY_FILTER_MODULE \
176 $HTTP_NOT_MODIFIED_FILTER_MODULE" 198 $HTTP_NOT_MODIFIED_FILTER_MODULE"
177 fi 199
200 NGX_ADDON_DEPS="$NGX_ADDON_DEPS \$(HTTP_DEPS)"
201 fi
202
178 203
179 IMAP_MODULES=$IMAP_MODULE 204 IMAP_MODULES=$IMAP_MODULE
180 205
181 if [ $IMAP = YES ]; then 206 if [ $IMAP = YES ]; then
182 modules="$modules $IMAP_MODULES" 207 modules="$modules $IMAP_MODULES"