comparison src/core/ngx_config.h @ 469:2ff194b74f1e release-0.1.9

nginx-0.1.9-RELEASE import *) 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; the bug had appeared in 0.1.8.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 25 Nov 2004 16:17:31 +0000
parents bbd6b0b4a2b1
children 31ee1b50354f
comparison
equal deleted inserted replaced
468:1a67596d0349 469:2ff194b74f1e
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_ */