comparison src/core/ngx_config.h @ 517:dadfa78d2270 release-0.1.33

nginx-0.1.33-RELEASE import *) Bugfix: nginx could not be built with the --without-pcre parameter; the bug had appeared in 0.1.29. *) Bugfix: 3, 4, 7, and 8 the "proxy_set_header" directives in one level cause the bus fault on start up. *) Bugfix: the HTTP protocol was specified in the HTTPS redirects. *) Bugfix: if the "rewrite" directive used the captures inside the "if" directive, then the 500 error code was returned.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 23 May 2005 12:07:45 +0000
parents b1648294f693
children e48ebafc6939
comparison
equal deleted inserted replaced
516:ea9642a65514 517:dadfa78d2270
124 #define NGX_MAXHOSTNAMELEN MAXHOSTNAMELEN 124 #define NGX_MAXHOSTNAMELEN MAXHOSTNAMELEN
125 */ 125 */
126 126
127 127
128 #if ((__GNU__ == 2) && (__GNUC_MINOR__ < 8)) 128 #if ((__GNU__ == 2) && (__GNUC_MINOR__ < 8))
129 #define NGX_MAX_UINT32_VALUE 0xffffffffLL 129 #define NGX_MAX_UINT32_VALUE (uint32_t) 0xffffffffLL
130 #else 130 #else
131 #define NGX_MAX_UINT32_VALUE 0xffffffff 131 #define NGX_MAX_UINT32_VALUE (uint32_t) 0xffffffff
132 #endif 132 #endif
133 133
134 134
135 #endif /* _NGX_CONFIG_H_INCLUDED_ */ 135 #endif /* _NGX_CONFIG_H_INCLUDED_ */