comparison src/os/win32/ngx_win32_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 a88a3e4e158f
children 8e8f3af115b5
comparison
equal deleted inserted replaced
468:1a67596d0349 469:2ff194b74f1e
113 typedef int sig_atomic_t; 113 typedef int sig_atomic_t;
114 typedef uint32_t ngx_atomic_t; 114 typedef uint32_t ngx_atomic_t;
115 115
116 116
117 #define TIME_T_LEN sizeof("-2147483648") - 1 117 #define TIME_T_LEN sizeof("-2147483648") - 1
118 #define OFF_T_MAX_VALUE 9223372036854775807
119 #define NGX_HAVE_LITTLE_ENDIAN 1
120
121 #define NGX_THREADS 1
118 122
119 123
120 #define NGX_WIN_NT 200000 124 #define NGX_WIN_NT 200000
121 125
122 126
123 #define NGX_THREADS 1 127 #ifndef NGX_HAVE_INHERITED_NONBLOCK
124 128 #define NGX_HAVE_INHERITED_NONBLOCK 1
125
126 #ifndef HAVE_INHERITED_NONBLOCK
127 #define HAVE_INHERITED_NONBLOCK 1
128 #endif 129 #endif
129 130
130 #ifndef HAVE_WIN32_TRANSMITPACKETS 131 #ifndef NGX_HAVE_WIN32_TRANSMITPACKETS
131 #define HAVE_WIN32_TRANSMITPACKETS 1 132 #define NGX_HAVE_WIN32_TRANSMITPACKETS 1
132 #define HAVE_WIN32_TRANSMITFILE 0 133 #define NGX_HAVE_WIN32_TRANSMITFILE 0
133 #endif 134 #endif
134 135
135 #ifndef HAVE_WIN32_TRANSMITFILE 136 #ifndef NGX_HAVE_WIN32_TRANSMITFILE
136 #define HAVE_WIN32_TRANSMITFILE 1 137 #define NGX_HAVE_WIN32_TRANSMITFILE 1
137 #endif 138 #endif
138 139
139 #if (HAVE_WIN32_TRANSMITPACKETS) || (HAVE_WIN32_TRANSMITFILE) 140 #if (NGX_HAVE_WIN32_TRANSMITPACKETS) || (NGX_HAVE_WIN32_TRANSMITFILE)
140 #define HAVE_SENDFILE 1 141 #define NGX_HAVE_SENDFILE 1
141 #endif 142 #endif
142 143
143 144
144 #define OFF_T_MAX_VALUE 9223372036854775807
145
146
147 /* STUB */
148 #define HAVE_LITTLE_ENDIAN 1
149
150
151 #endif /* _NGX_WIN32_CONFIG_H_INCLUDED_ */ 145 #endif /* _NGX_WIN32_CONFIG_H_INCLUDED_ */