comparison auto/sources @ 417:0526206251f6

nginx-0.0.10-2004-09-07-19:29:22 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 07 Sep 2004 15:29:22 +0000
parents b9bd635011de
children cf072d26d6d6
comparison
equal deleted inserted replaced
416:b9bd635011de 417:0526206251f6
2 CORE_MODULES="ngx_core_module ngx_errlog_module ngx_conf_module" 2 CORE_MODULES="ngx_core_module ngx_errlog_module ngx_conf_module"
3 3
4 CORE_INCS="src/core" 4 CORE_INCS="src/core"
5 5
6 CORE_DEPS="src/core/nginx.h \ 6 CORE_DEPS="src/core/nginx.h \
7 src/core/ngx_config.h \ 7 src/core/ngx_config.h \
8 src/core/ngx_core.h \ 8 src/core/ngx_core.h \
9 src/core/ngx_log.h \ 9 src/core/ngx_log.h \
10 src/core/ngx_palloc.h \ 10 src/core/ngx_palloc.h \
11 src/core/ngx_array.h \ 11 src/core/ngx_array.h \
12 src/core/ngx_list.h \ 12 src/core/ngx_list.h \
13 src/core/ngx_table.h \ 13 src/core/ngx_table.h \
14 src/core/ngx_buf.h \ 14 src/core/ngx_buf.h \
15 src/core/ngx_string.h \ 15 src/core/ngx_string.h \
16 src/core/ngx_parse.h \ 16 src/core/ngx_parse.h \
17 src/core/ngx_inet.h \ 17 src/core/ngx_inet.h \
18 src/core/ngx_file.h \ 18 src/core/ngx_file.h \
19 src/core/ngx_crc.h \ 19 src/core/ngx_crc.h \
20 src/core/ngx_rbtree.h \ 20 src/core/ngx_rbtree.h \
21 src/core/ngx_radix_tree.h \ 21 src/core/ngx_radix_tree.h \
22 src/core/ngx_times.h \ 22 src/core/ngx_times.h \
23 src/core/ngx_connection.h \ 23 src/core/ngx_connection.h \
24 src/core/ngx_cycle.h \ 24 src/core/ngx_cycle.h \
25 src/core/ngx_conf_file.h \ 25 src/core/ngx_conf_file.h \
26 src/core/ngx_garbage_collector.h" 26 src/core/ngx_garbage_collector.h"
27 27
28 CORE_SRCS="src/core/nginx.c \ 28 CORE_SRCS="src/core/nginx.c \
29 src/core/ngx_log.c \ 29 src/core/ngx_log.c \
30 src/core/ngx_palloc.c \ 30 src/core/ngx_palloc.c \
31 src/core/ngx_array.c \ 31 src/core/ngx_array.c \
32 src/core/ngx_list.c \ 32 src/core/ngx_list.c \
33 src/core/ngx_buf.c \ 33 src/core/ngx_buf.c \
34 src/core/ngx_output_chain.c \ 34 src/core/ngx_output_chain.c \
35 src/core/ngx_string.c \ 35 src/core/ngx_string.c \
36 src/core/ngx_parse.c \ 36 src/core/ngx_parse.c \
37 src/core/ngx_inet.c \ 37 src/core/ngx_inet.c \
38 src/core/ngx_file.c \ 38 src/core/ngx_file.c \
39 src/core/ngx_rbtree.c \ 39 src/core/ngx_rbtree.c \
40 src/core/ngx_radix_tree.c \ 40 src/core/ngx_radix_tree.c \
41 src/core/ngx_times.c \ 41 src/core/ngx_times.c \
42 src/core/ngx_connection.c \ 42 src/core/ngx_connection.c \
43 src/core/ngx_cycle.c \ 43 src/core/ngx_cycle.c \
44 src/core/ngx_spinlock.c \ 44 src/core/ngx_spinlock.c \
45 src/core/ngx_conf_file.c \ 45 src/core/ngx_conf_file.c \
46 src/core/ngx_garbage_collector.c" 46 src/core/ngx_garbage_collector.c"
47 47
48 48
49 REGEX_DEPS=src/core/ngx_regex.h 49 REGEX_DEPS=src/core/ngx_regex.h
50 REGEX_SRCS=src/core/ngx_regex.c 50 REGEX_SRCS=src/core/ngx_regex.c
51 51
126 src/os/unix/ngx_alloc.c \ 126 src/os/unix/ngx_alloc.c \
127 src/os/unix/ngx_files.c \ 127 src/os/unix/ngx_files.c \
128 src/os/unix/ngx_socket.c \ 128 src/os/unix/ngx_socket.c \
129 src/os/unix/ngx_recv.c \ 129 src/os/unix/ngx_recv.c \
130 src/os/unix/ngx_readv_chain.c \ 130 src/os/unix/ngx_readv_chain.c \
131 src/os/unix/ngx_send.c \
131 src/os/unix/ngx_writev_chain.c \ 132 src/os/unix/ngx_writev_chain.c \
132 src/os/unix/ngx_channel.c \ 133 src/os/unix/ngx_channel.c \
133 src/os/unix/ngx_shared.c \ 134 src/os/unix/ngx_shared.c \
134 src/os/unix/ngx_process.c \ 135 src/os/unix/ngx_process.c \
135 src/os/unix/ngx_daemon.c \ 136 src/os/unix/ngx_daemon.c \
189 src/os/win32/ngx_process_cycle.c \ 190 src/os/win32/ngx_process_cycle.c \
190 src/event/ngx_event_acceptex.c" 191 src/event/ngx_event_acceptex.c"
191 192
192 193
193 HTTP_MODULES="ngx_http_module \ 194 HTTP_MODULES="ngx_http_module \
194 ngx_http_core_module \ 195 ngx_http_core_module \
195 ngx_http_log_module" 196 ngx_http_log_module"
196 197
197 HTTP_FILE_CACHE_MODULE=ngx_http_cache_module 198 HTTP_FILE_CACHE_MODULE=ngx_http_cache_module
198 199
199 HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module" 200 HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module"
200 HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module" 201 HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module"
212 HTTP_INDEX_MODULE=ngx_http_index_module 213 HTTP_INDEX_MODULE=ngx_http_index_module
213 214
214 HTTP_INCS="src/http src/http/modules" 215 HTTP_INCS="src/http src/http/modules"
215 216
216 HTTP_DEPS="src/http/ngx_http.h \ 217 HTTP_DEPS="src/http/ngx_http.h \
217 src/http/ngx_http_request.h \ 218 src/http/ngx_http_request.h \
218 src/http/ngx_http_config.h \ 219 src/http/ngx_http_config.h \
219 src/http/ngx_http_core_module.h \ 220 src/http/ngx_http_core_module.h \
220 src/http/ngx_http_cache.h \ 221 src/http/ngx_http_cache.h \
221 src/http/ngx_http_busy_lock.h \ 222 src/http/ngx_http_busy_lock.h \
222 src/http/ngx_http_log_handler.h" 223 src/http/ngx_http_log_handler.h"
223 224
224 HTTP_SRCS="src/http/ngx_http.c \ 225 HTTP_SRCS="src/http/ngx_http.c \
225 src/http/ngx_http_core_module.c \ 226 src/http/ngx_http_core_module.c \
226 src/http/ngx_http_special_response.c \ 227 src/http/ngx_http_special_response.c \
227 src/http/ngx_http_request.c \ 228 src/http/ngx_http_request.c \
228 src/http/ngx_http_parse.c \ 229 src/http/ngx_http_parse.c \
229 src/http/ngx_http_header_filter.c \ 230 src/http/ngx_http_header_filter.c \
230 src/http/ngx_http_write_filter.c \ 231 src/http/ngx_http_write_filter.c \
231 src/http/ngx_http_copy_filter.c \ 232 src/http/ngx_http_copy_filter.c \
232 src/http/ngx_http_log_handler.c \ 233 src/http/ngx_http_log_handler.c \
233 src/http/ngx_http_request_body.c \ 234 src/http/ngx_http_request_body.c \
234 src/http/ngx_http_parse_time.c \ 235 src/http/ngx_http_parse_time.c \
235 src/http/modules/ngx_http_static_handler.c \ 236 src/http/modules/ngx_http_static_handler.c \
236 src/http/modules/ngx_http_index_handler.c \ 237 src/http/modules/ngx_http_index_handler.c \
237 src/http/modules/ngx_http_chunked_filter.c \ 238 src/http/modules/ngx_http_chunked_filter.c \
238 src/http/modules/ngx_http_range_filter.c \ 239 src/http/modules/ngx_http_range_filter.c \
239 src/http/modules/ngx_http_headers_filter.c \ 240 src/http/modules/ngx_http_headers_filter.c \
240 src/http/modules/ngx_http_not_modified_filter.c" 241 src/http/modules/ngx_http_not_modified_filter.c"
241 242
242 # STUB 243 # STUB
243 HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c" 244 HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c"
244 245
245 HTPP_CACHE_SRCS=src/http/ngx_http_cache.c 246 HTPP_CACHE_SRCS=src/http/ngx_http_cache.c
281 282
282 HTTP_PROXY_MODULE=ngx_http_proxy_module 283 HTTP_PROXY_MODULE=ngx_http_proxy_module
283 HTTP_PROXY_INCS="src/http/modules/proxy" 284 HTTP_PROXY_INCS="src/http/modules/proxy"
284 HTTP_PROXY_DEPS=src/http/modules/proxy/ngx_http_proxy_handler.h 285 HTTP_PROXY_DEPS=src/http/modules/proxy/ngx_http_proxy_handler.h
285 HTTP_PROXY_SRCS="src/http/modules/proxy/ngx_http_proxy_handler.c \ 286 HTTP_PROXY_SRCS="src/http/modules/proxy/ngx_http_proxy_handler.c \
286 src/http/modules/proxy/ngx_http_proxy_upstream.c \ 287 src/http/modules/proxy/ngx_http_proxy_upstream.c \
287 src/http/modules/proxy/ngx_http_proxy_parse.c \ 288 src/http/modules/proxy/ngx_http_proxy_parse.c \
288 src/http/modules/proxy/ngx_http_proxy_header.c" 289 src/http/modules/proxy/ngx_http_proxy_header.c"
289 290
290 # STUB 291 # STUB
291 # src/http/modules/proxy/ngx_http_proxy_cache.c \ 292 # src/http/modules/proxy/ngx_http_proxy_cache.c \
293
294
295 IMAP_INCS="src/imap"
296
297 IMAP_DEPS="src/imap/ngx_imap.h"
298
299 IMAP_MODULE=ngx_imap_module
300 IMAP_SRCS="src/imap/ngx_imap.c \
301 src/imap/ngx_imap_handler.c"