comparison src/os/unix/ngx_posix_config.h @ 342:4276c2f1f434 NGINX_0_6_15

nginx 0.6.15 *) Feature: cygwin compatibility. Thanks to Vladimir Kutakov. *) Feature: the "merge_slashes" directive. *) Feature: the "gzip_vary" directive. *) Feature: the "server_tokens" directive. *) Bugfix: nginx did not unescape URI in the "include" SSI command. *) Bugfix: the segmentation fault was occurred on start or while reconfiguration if variable was used in the "charset" or "source_charset" directives. *) Bugfix: nginx returned the 400 response on requests like "GET http://www.domain.com HTTP/1.0". Thanks to James Oakley. *) Bugfix: if request with request body was redirected using the "error_page" directive, then nginx tried to read the request body again; bug appeared in 0.6.7. *) Bugfix: a segmentation fault occurred in worker process if no server_name was explicitly defined for server processing request; bug appeared in 0.6.7.
author Igor Sysoev <http://sysoev.ru>
date Mon, 22 Oct 2007 00:00:00 +0400
parents 9fc4ab6673f9
children babd3d9efb62
comparison
equal deleted inserted replaced
341:183b4761fe5b 342:4276c2f1f434
14 #endif 14 #endif
15 15
16 16
17 #if (NGX_TRU64) 17 #if (NGX_TRU64)
18 #define _REENTRANT 18 #define _REENTRANT
19 #endif
20
21
22 #ifdef __CYGWIN__
23 #define timezonevar /* timezone is variable */
24 #define NGX_BROKEN_SCM_RIGHTS 1
19 #endif 25 #endif
20 26
21 27
22 #include <sys/types.h> 28 #include <sys/types.h>
23 #include <sys/time.h> 29 #include <sys/time.h>
62 68
63 #if (NGX_HAVE_LIMITS_H) 69 #if (NGX_HAVE_LIMITS_H)
64 #include <limits.h> /* IOV_MAX */ 70 #include <limits.h> /* IOV_MAX */
65 #endif 71 #endif
66 72
73 #if (NGX_HAVE_MALLOC_H)
74 #include <malloc.h> /* memalign() */
75 #endif
76
77 #if (NGX_HAVE_CRYPT_H)
78 #include <crypt.h>
79 #endif
80
81
67 #ifndef IOV_MAX 82 #ifndef IOV_MAX
68 #define IOV_MAX 16 83 #define IOV_MAX 16
69 #endif 84 #endif
70 85
71 86