comparison auto/modules @ 70:8ad297c88dcb NGINX_0_1_35

nginx 0.1.35 *) Feature: the "working_directory" directive. *) Feature: the "port_in_redirect" directive. *) Bugfix: the segmentation fault was occurred if the backend response header was in several packets; bug appeared in 0.1.29. *) Bugfix: if more than 10 servers were configured or some server did not use the "listen" directive, then the segmentation fault was occurred on the start. *) Bugfix: the segmentation fault might occur if the response was bigger than the temporary file. *) Bugfix: nginx returned the 400 response on requests like "GET http://www.domain.com/uri HTTP/1.0"; bug appeared in 0.1.28.
author Igor Sysoev <http://sysoev.ru>
date Tue, 07 Jun 2005 00:00:00 +0400
parents b55cbf18157e
children e916a291e9aa
comparison
equal deleted inserted replaced
69:cce7ea52608c 70:8ad297c88dcb
46 fi 46 fi
47 47
48 if [ $NGX_TEST_BUILD_SOLARIS_SENDFILEV = YES ]; then 48 if [ $NGX_TEST_BUILD_SOLARIS_SENDFILEV = YES ]; then
49 have=NGX_TEST_BUILD_SOLARIS_SENDFILEV . auto/have 49 have=NGX_TEST_BUILD_SOLARIS_SENDFILEV . auto/have
50 CORE_SRCS="$CORE_SRCS $SOLARIS_SENDFILEV_SRCS" 50 CORE_SRCS="$CORE_SRCS $SOLARIS_SENDFILEV_SRCS"
51 fi
52
53
54 if [ $HTTP != YES ]; then
55 have=NGX_CRYPT . auto/nohave
56 CRYPT_LIB=
51 fi 57 fi
52 58
53 59
54 if [ $HTTP_SSI = YES ]; then 60 if [ $HTTP_SSI = YES ]; then
55 HTTP_POSTPONE=YES 61 HTTP_POSTPONE=YES
217 223
218 NGX_ADDON_DEPS="$NGX_ADDON_DEPS \$(HTTP_DEPS)" 224 NGX_ADDON_DEPS="$NGX_ADDON_DEPS \$(HTTP_DEPS)"
219 fi 225 fi
220 226
221 227
222 IMAP_MODULES=$IMAP_MODULE
223
224 if [ $IMAP = YES ]; then 228 if [ $IMAP = YES ]; then
225 modules="$modules $IMAP_MODULES" 229 modules="$modules $IMAP_MODULES"
230
231 modules="$modules $IMAP_AUTH_HTTP_MODULE"
232 IMAP_SRCS="$IMAP_SRCS $IMAP_AUTH_HTTP_SRCS"
233
234 modules="$modules $IMAP_PROXY_MODULE"
235 IMAP_SRCS="$IMAP_SRCS $IMAP_PROXY_SRCS"
226 fi 236 fi
227 237
228 238
229 cat << END > $NGX_MODULES_C 239 cat << END > $NGX_MODULES_C
230 240