comparison auto/modules @ 10:46833bd150cb NGINX_0_1_5

nginx 0.1.5 *) Bugfix: on Solaris and Linux there may be too many "recvmsg() returned not enough data" alerts. *) Bugfix: there were the "writev() failed (22: Invalid argument)" errors on Solaris in proxy mode without sendfile. On other platforms that do not support sendfile at all the process got caught in an endless loop. *) Bugfix: segmentation fault on Solaris in proxy mode and using sendfile. *) Bugfix: segmentation fault on Solaris. *) Bugfix: on-line upgrade did not work on Linux. *) Bugfix: the ngx_http_autoindex_module module did not escape the spaces, the quotes, and the percent signs in the directory listing. *) Change: the decrease of the copy operations. *) Feature: the userid_p3p directive.
author Igor Sysoev <http://sysoev.ru>
date Thu, 11 Nov 2004 00:00:00 +0300
parents 80ba094c6b3e
children 74b1868dd3cd
comparison
equal deleted inserted replaced
9:77eee314ddbd 10:46833bd150cb
152 if [ $IMAP = YES ]; then 152 if [ $IMAP = YES ]; then
153 modules="$modules $IMAP_MODULES" 153 modules="$modules $IMAP_MODULES"
154 fi 154 fi
155 155
156 156
157 echo "#include <ngx_config.h>" > $NGX_MODULES_C 157 cat << END > $NGX_MODULES_C
158 echo "#include <ngx_core.h>" >> $NGX_MODULES_C 158
159 echo >> $NGX_MODULES_C 159 #include <ngx_config.h>
160 #include <ngx_core.h>
161
162 $NGX_PRAGMA
163
164 END
160 165
161 for mod in $modules 166 for mod in $modules
162 do 167 do
163 echo "extern ngx_module_t $mod;" >> $NGX_MODULES_C 168 echo "extern ngx_module_t $mod;" >> $NGX_MODULES_C
164 done 169 done
169 for mod in $modules 174 for mod in $modules
170 do 175 do
171 echo " &$mod," >> $NGX_MODULES_C 176 echo " &$mod," >> $NGX_MODULES_C
172 done 177 done
173 178
174 echo " NULL" >> $NGX_MODULES_C 179 cat << END >> $NGX_MODULES_C
175 echo "};" >> $NGX_MODULES_C 180 NULL
181 };
182
183 END