comparison src/core/ngx_config.h @ 18:6f8b0dc0f8dd NGINX_0_1_9

nginx 0.1.9 *) Bugfix: the proxied request was sent without arguments if the request contains "//", "/./", "/../" or "%XX". *) Bugfix: the large compressed responses may be transferred not completely. *) Bugfix: the files bigger than 2G was not transferred on Linux that does not support sendfile64(). *) Bugfix: while the build configuration on Linux the --with-poll_module parameter was required; bug appeared in 0.1.8.
author Igor Sysoev <http://sysoev.ru>
date Thu, 25 Nov 2004 00:00:00 +0300
parents 74b1868dd3cd
children 636dad238b63
comparison
equal deleted inserted replaced
17:9acb68bb0698 18:6f8b0dc0f8dd
7 #ifndef _NGX_CONFIG_H_INCLUDED_ 7 #ifndef _NGX_CONFIG_H_INCLUDED_
8 #define _NGX_CONFIG_H_INCLUDED_ 8 #define _NGX_CONFIG_H_INCLUDED_
9 9
10 10
11 #include <ngx_auto_headers.h> 11 #include <ngx_auto_headers.h>
12
13
14 #if ((__GNU__ == 2) && (__GNUC_MINOR__ < 8))
15 #define NGX_MAX_UINT32_VALUE 0xffffffffLL
16 #else
17 #define NGX_MAX_UINT32_VALUE 0xffffffff
18 #endif
12 19
13 20
14 #if defined __DragonFly__ && !defined __FreeBSD__ 21 #if defined __DragonFly__ && !defined __FreeBSD__
15 #define __FreeBSD__ 4 22 #define __FreeBSD__ 4
16 #define __FreeBSD_version 480101 23 #define __FreeBSD_version 480101
125 #define NGX_MAXHOSTNAMELEN 64 132 #define NGX_MAXHOSTNAMELEN 64
126 /* 133 /*
127 #define NGX_MAXHOSTNAMELEN MAXHOSTNAMELEN 134 #define NGX_MAXHOSTNAMELEN MAXHOSTNAMELEN
128 */ 135 */
129 136
130 #if ((__GNU__ == 2) && (__GNUC_MINOR__ < 8))
131 #define NGX_MAX_UINT32_VALUE 0xffffffffLL
132 #else
133 #define NGX_MAX_UINT32_VALUE 0xffffffff
134 #endif
135
136
137 137
138 #endif /* _NGX_CONFIG_H_INCLUDED_ */ 138 #endif /* _NGX_CONFIG_H_INCLUDED_ */