comparison auto/sources @ 195:8dee38ea9117

nginx-0.0.1-2003-11-25-23:44:56 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 25 Nov 2003 20:44:56 +0000
parents
children 11fbd0fc041d
comparison
equal deleted inserted replaced
194:2357fa41738a 195:8dee38ea9117
1
2 CORE_MODULES="ngx_core_module ngx_errlog_module"
3
4 CORE_INCS="-I src/core"
5
6 CORE_DEPS="src/core/nginx.h \
7 src/core/ngx_config.h \
8 src/core/ngx_log.h \
9 src/core/ngx_alloc.h \
10 src/core/ngx_array.h \
11 src/core/ngx_table.h \
12 src/core/ngx_hunk.h \
13 src/core/ngx_string.h \
14 src/core/ngx_parse.h \
15 src/core/ngx_inet.h \
16 src/core/ngx_file.h \
17 src/core/ngx_regex.h \
18 src/core/ngx_times.h \
19 src/core/ngx_connection.h \
20 src/core/ngx_conf_file.h \
21 src/core/ngx_garbage_collector.h"
22
23 CORE_SRCS="src/core/nginx.c \
24 src/core/ngx_log.c \
25 src/core/ngx_alloc.c \
26 src/core/ngx_array.c \
27 src/core/ngx_hunk.c \
28 src/core/ngx_output_chain.c \
29 src/core/ngx_string.c \
30 src/core/ngx_parse.c \
31 src/core/ngx_inet.c \
32 src/core/ngx_file.c \
33 src/core/ngx_regex.c \
34 src/core/ngx_times.c \
35 src/core/ngx_conf_file.c \
36 src/core/ngx_garbage_collector.c"
37
38
39 EVENT_MODULES="ngx_events_module ngx_event_core_module"
40
41 EVENT_INCS="-I src/event -I src/event/modules"
42
43 EVENT_DEPS="src/event/ngx_event.h \
44 src/event/ngx_event_timer.h \
45 src/event/ngx_event_connect.h \
46 src/event/ngx_event_pipe.h"
47
48 EVENT_SRCS="src/event/ngx_event.c \
49 src/event/ngx_event_timer.c \
50 src/event/ngx_event_close.c \
51 src/event/ngx_event_accept.c \
52 src/event/ngx_event_connect.c \
53 src/event/ngx_event_pipe.c"
54
55
56 SELECT_MODULE="ngx_select_module"
57 SELECT_SRCS=src/event/modules/ngx_select_module.c
58
59 POLL_MODULE="ngx_poll_module"
60 POLL_SRCS=src/event/modules/ngx_poll_module.c
61
62 KQUEUE_MODULE="ngx_kqueue_module"
63 KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c
64
65 DEVPOLL_MODULE="ngx_devpoll_module"
66 DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c
67
68 IOCP_MODULE="ngx_iocp_module"
69 IOCP_SRCS=src/event/modules/ngx_iocp_module.c
70
71 AIO_MODULE="ngx_aio_module"
72 AIO_SRCS=src/event/modules/ngx_aio_module.c
73
74
75 UNIX_INCS="$CORE_INCS $EVENT_INCS -I src/os/unix"
76
77 UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
78 src/os/unix/ngx_time.h \
79 src/os/unix/ngx_types.h \
80 src/os/unix/ngx_errno.h \
81 src/os/unix/ngx_files.h \
82 src/os/unix/ngx_process.h \
83 src/os/unix/ngx_socket.h \
84 src/os/unix/ngx_os.h"
85
86 UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
87 src/os/unix/ngx_time.c \
88 src/os/unix/ngx_sendv.c \
89 src/os/unix/ngx_files.c \
90 src/os/unix/ngx_socket.c \
91 src/os/unix/ngx_recv.c \
92 src/os/unix/ngx_readv_chain.c \
93 src/os/unix/ngx_writev_chain.c \
94 src/os/unix/ngx_posix_init.c \
95 src/os/unix/ngx_process.c \
96 src/os/unix/ngx_daemon.c"
97
98
99 LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c
100
101 FREEBSD_DEPS=src/os/unix/ngx_freebsd_config.h
102 FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c
103 FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c
104
105
106 WIN32_INCS="$CORE_INCS $EVENT_INCS -I src/os/win32"
107
108 WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \
109 src/os/win32/ngx_win32_config.h \
110 src/os/win32/ngx_time.h \
111 src/os/win32/ngx_types.h \
112 src/os/win32/ngx_errno.h \
113 src/os/win32/ngx_files.h \
114 src/os/win32/ngx_process.h \
115 src/os/win32/ngx_socket.h \
116 src/os/win32/ngx_os.h"
117
118 WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \
119 src/os/win32/ngx_errno.c \
120 src/os/win32/ngx_files.c \
121 src/os/win32/ngx_time.c \
122 src/os/win32/ngx_socket.c \
123 src/os/win32/ngx_wsarecv.c \
124 src/os/win32/ngx_wsarecv_chain.c \
125 src/os/win32/ngx_wsasend_chain.c \
126 src/os/win32/ngx_sendv.c \
127 src/os/win32/ngx_win32_init.c \
128 src/event/ngx_event_acceptex.c"
129
130
131 HTTP_MODULES="ngx_http_module \
132 ngx_http_core_module \
133 ngx_http_log_module \
134 ngx_http_cache_module"
135
136 HTTP_FILTER_MODULES="ngx_http_write_filter_module \
137 ngx_http_output_filter_module \
138 ngx_http_header_filter_module"
139
140 HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module
141 HTTP_RANGE_FILTER_MODULE=ngx_http_range_filter_module
142 HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module
143 HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module
144
145 HTTP_STATIC_MODULE=ngx_http_static_module
146 HTTP_INDEX_MODULE=ngx_http_index_module
147
148 HTTP_INCS="-I src/http -I src/http/modules"
149
150 HTTP_DEPS="src/http/ngx_http.h \
151 src/http/ngx_http_request.h \
152 src/http/ngx_http_filter.h \
153 src/http/ngx_http_config.h \
154 src/http/ngx_http_core_module.h \
155 src/http/ngx_http_cache.h \
156 src/http/ngx_http_busy_lock.h \
157 src/http/ngx_http_log_handler.h"
158
159 HTTP_SRCS="src/http/ngx_http.c \
160 src/http/ngx_http_core_module.c \
161 src/http/ngx_http_special_response.c \
162 src/http/ngx_http_request.c \
163 src/http/ngx_http_cache.c \
164 src/http/ngx_http_busy_lock.c \
165 src/http/ngx_http_parse.c \
166 src/http/ngx_http_headers.c \
167 src/http/ngx_http_header_filter.c \
168 src/http/ngx_http_write_filter.c \
169 src/http/ngx_http_output_filter.c \
170 src/http/ngx_http_log_handler.c \
171 src/http/ngx_http_request_body.c \
172 src/http/ngx_http_parse_time.c \
173 src/http/modules/ngx_http_static_handler.c \
174 src/http/modules/ngx_http_index_handler.c \
175 src/http/modules/ngx_http_chunked_filter.c \
176 src/http/modules/ngx_http_range_filter.c \
177 src/http/modules/ngx_http_charset_filter.c \
178 src/http/modules/ngx_http_not_modified_filter.c"
179
180
181 HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module
182 HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter.c
183 HTTP_GZIP_UNIX_LIBS=-lz
184 HTTP_GZIP_WIN_LIBS=zlib.lib
185
186
187 HTTP_PROXY_MODULE=ngx_http_proxy_module
188 HTTP_PROXY_INCS="-I src/http/modules/proxy"
189 HTTP_PROXY_DEPS=src/http/modules/proxy/ngx_http_proxy_handler.h
190 HTTP_PROXY_SRCS="src/http/modules/proxy/ngx_http_proxy_handler.c \
191 src/http/modules/proxy/ngx_http_proxy_upstream.c \
192 src/http/modules/proxy/ngx_http_proxy_cache.c \
193 src/http/modules/proxy/ngx_http_proxy_parse.c \
194 src/http/modules/proxy/ngx_http_proxy_header.c"