comparison auto/sources @ 0:f0b350454894 NGINX_0_1_0

nginx 0.1.0 *) The first public version.
author Igor Sysoev <http://sysoev.ru>
date Mon, 04 Oct 2004 00:00:00 +0400
parents
children cc9f381affaa
comparison
equal deleted inserted replaced
-1:000000000000 0:f0b350454894
1
2 # Copyright (C) Igor Sysoev
3
4
5 CORE_MODULES="ngx_core_module ngx_errlog_module ngx_conf_module"
6
7 CORE_INCS="src/core"
8
9 CORE_DEPS="src/core/nginx.h \
10 src/core/ngx_config.h \
11 src/core/ngx_core.h \
12 src/core/ngx_log.h \
13 src/core/ngx_palloc.h \
14 src/core/ngx_array.h \
15 src/core/ngx_list.h \
16 src/core/ngx_table.h \
17 src/core/ngx_buf.h \
18 src/core/ngx_string.h \
19 src/core/ngx_parse.h \
20 src/core/ngx_inet.h \
21 src/core/ngx_file.h \
22 src/core/ngx_crc.h \
23 src/core/ngx_rbtree.h \
24 src/core/ngx_times.h \
25 src/core/ngx_connection.h \
26 src/core/ngx_cycle.h \
27 src/core/ngx_conf_file.h \
28 src/core/ngx_garbage_collector.h"
29
30 # src/core/ngx_radix_tree.h \
31 # src/core/ngx_radix_tree.c \
32
33 CORE_SRCS="src/core/nginx.c \
34 src/core/ngx_log.c \
35 src/core/ngx_palloc.c \
36 src/core/ngx_array.c \
37 src/core/ngx_list.c \
38 src/core/ngx_buf.c \
39 src/core/ngx_output_chain.c \
40 src/core/ngx_string.c \
41 src/core/ngx_parse.c \
42 src/core/ngx_inet.c \
43 src/core/ngx_file.c \
44 src/core/ngx_rbtree.c \
45 src/core/ngx_times.c \
46 src/core/ngx_connection.c \
47 src/core/ngx_cycle.c \
48 src/core/ngx_spinlock.c \
49 src/core/ngx_conf_file.c \
50 src/core/ngx_garbage_collector.c"
51
52
53 REGEX_DEPS=src/core/ngx_regex.h
54 REGEX_SRCS=src/core/ngx_regex.c
55
56
57 EVENT_MODULES="ngx_events_module ngx_event_core_module"
58
59 EVENT_INCS="src/event src/event/modules"
60
61 EVENT_DEPS="src/event/ngx_event.h \
62 src/event/ngx_event_timer.h \
63 src/event/ngx_event_posted.h \
64 src/event/ngx_event_busy_lock.h \
65 src/event/ngx_event_connect.h \
66 src/event/ngx_event_pipe.h"
67
68 EVENT_SRCS="src/event/ngx_event.c \
69 src/event/ngx_event_timer.c \
70 src/event/ngx_event_posted.c \
71 src/event/ngx_event_busy_lock.c \
72 src/event/ngx_event_accept.c \
73 src/event/ngx_event_connect.c \
74 src/event/ngx_event_pipe.c"
75
76
77 SELECT_MODULE=ngx_select_module
78 SELECT_SRCS=src/event/modules/ngx_select_module.c
79
80 POLL_MODULE=ngx_poll_module
81 POLL_SRCS=src/event/modules/ngx_poll_module.c
82
83 KQUEUE_MODULE=ngx_kqueue_module
84 KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c
85
86 DEVPOLL_MODULE=ngx_devpoll_module
87 DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c
88
89 EPOLL_MODULE=ngx_epoll_module
90 EPOLL_SRCS=src/event/modules/ngx_epoll_module.c
91
92 RTSIG_MODULE=ngx_rtsig_module
93 RTSIG_SRCS=src/event/modules/ngx_rtsig_module.c
94
95 IOCP_MODULE=ngx_iocp_module
96 IOCP_SRCS=src/event/modules/ngx_iocp_module.c
97
98 AIO_MODULE=ngx_aio_module
99 AIO_SRCS="src/event/modules/ngx_aio_module.c \
100 src/os/unix/ngx_aio_read.c \
101 src/os/unix/ngx_aio_write.c \
102 src/os/unix/ngx_aio_read_chain.c \
103 src/os/unix/ngx_aio_write_chain.c"
104
105
106 OPENSSL_DEPS=src/event/ngx_event_openssl.h
107 OPENSSL_SRCS=src/event/ngx_event_openssl.c
108
109
110 UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix"
111
112 UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
113 src/os/unix/ngx_time.h \
114 src/os/unix/ngx_types.h \
115 src/os/unix/ngx_errno.h \
116 src/os/unix/ngx_alloc.h \
117 src/os/unix/ngx_files.h \
118 src/os/unix/ngx_channel.h \
119 src/os/unix/ngx_shared.h \
120 src/os/unix/ngx_process.h \
121 src/os/unix/ngx_atomic.h \
122 src/os/unix/ngx_thread.h \
123 src/os/unix/ngx_socket.h \
124 src/os/unix/ngx_os.h \
125 src/os/unix/ngx_process_cycle.h"
126
127 UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
128 src/os/unix/ngx_time.c \
129 src/os/unix/ngx_errno.c \
130 src/os/unix/ngx_alloc.c \
131 src/os/unix/ngx_files.c \
132 src/os/unix/ngx_socket.c \
133 src/os/unix/ngx_recv.c \
134 src/os/unix/ngx_readv_chain.c \
135 src/os/unix/ngx_send.c \
136 src/os/unix/ngx_writev_chain.c \
137 src/os/unix/ngx_channel.c \
138 src/os/unix/ngx_shared.c \
139 src/os/unix/ngx_process.c \
140 src/os/unix/ngx_daemon.c \
141 src/os/unix/ngx_posix_init.c \
142 src/os/unix/ngx_process_cycle.c"
143
144 POSIX_DEPS=src/os/unix/ngx_posix_config.h
145
146 FREEBSD_DEPS=src/os/unix/ngx_freebsd_config.h
147 FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c
148 FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c
149 FREEBSD_RFORK_DEPS="src/os/unix/ngx_freebsd_rfork_thread.h"
150 FREEBSD_RFORK_SRCS="src/os/unix/ngx_freebsd_rfork_thread.c"
151 FREEBSD_RFORK_THREAD_SRCS="src/os/unix/rfork_thread.S"
152
153 PTHREAD_SRCS="src/os/unix/ngx_pthread_thread.c"
154
155 LINUX_DEPS=src/os/unix/ngx_linux_config.h
156 LINUX_SRCS=src/os/unix/ngx_linux_init.c
157 LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c
158
159
160 SOLARIS_DEPS=src/os/unix/ngx_solaris_config.h
161 SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c
162 SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c
163
164
165 WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32"
166
167 WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \
168 src/os/win32/ngx_win32_config.h \
169 src/os/win32/ngx_time.h \
170 src/os/win32/ngx_types.h \
171 src/os/win32/ngx_errno.h \
172 src/os/win32/ngx_alloc.h \
173 src/os/win32/ngx_files.h \
174 src/os/win32/ngx_shared.h \
175 src/os/win32/ngx_process.h \
176 src/os/win32/ngx_atomic.h \
177 src/os/win32/ngx_socket.h \
178 src/os/win32/ngx_os.h \
179 src/os/win32/ngx_process_cycle.h"
180
181 WIN32_CONFIG=src/os/win32/ngx_win32_config.h
182
183 WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \
184 src/os/win32/ngx_errno.c \
185 src/os/win32/ngx_alloc.c \
186 src/os/win32/ngx_files.c \
187 src/os/win32/ngx_time.c \
188 src/os/win32/ngx_process.c \
189 src/os/win32/ngx_socket.c \
190 src/os/win32/ngx_wsarecv.c \
191 src/os/win32/ngx_wsarecv_chain.c \
192 src/os/win32/ngx_wsasend_chain.c \
193 src/os/win32/ngx_win32_init.c \
194 src/os/win32/ngx_process_cycle.c \
195 src/event/ngx_event_acceptex.c"
196
197
198 HTTP_MODULES="ngx_http_module \
199 ngx_http_core_module \
200 ngx_http_log_module"
201
202 HTTP_FILE_CACHE_MODULE=ngx_http_cache_module
203
204 HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module"
205 HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module"
206
207 HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module
208 HTTP_HEADERS_FILTER_MODULE=ngx_http_headers_filter_module
209 HTTP_COPY_FILTER_MODULE=ngx_http_copy_filter_module
210
211 HTTP_RANGE_HEADER_FILTER_MODULE=ngx_http_range_header_filter_module
212 HTTP_RANGE_BODY_FILTER_MODULE=ngx_http_range_body_filter_module
213
214 HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module
215
216 HTTP_STATIC_MODULE=ngx_http_static_module
217 HTTP_INDEX_MODULE=ngx_http_index_module
218
219 HTTP_INCS="src/http src/http/modules"
220
221 HTTP_DEPS="src/http/ngx_http.h \
222 src/http/ngx_http_request.h \
223 src/http/ngx_http_config.h \
224 src/http/ngx_http_core_module.h \
225 src/http/ngx_http_cache.h \
226 src/http/ngx_http_busy_lock.h \
227 src/http/ngx_http_log_handler.h"
228
229 HTTP_SRCS="src/http/ngx_http.c \
230 src/http/ngx_http_core_module.c \
231 src/http/ngx_http_special_response.c \
232 src/http/ngx_http_request.c \
233 src/http/ngx_http_parse.c \
234 src/http/ngx_http_header_filter.c \
235 src/http/ngx_http_write_filter.c \
236 src/http/ngx_http_copy_filter.c \
237 src/http/ngx_http_log_handler.c \
238 src/http/ngx_http_request_body.c \
239 src/http/ngx_http_parse_time.c \
240 src/http/modules/ngx_http_static_handler.c \
241 src/http/modules/ngx_http_index_handler.c \
242 src/http/modules/ngx_http_chunked_filter.c \
243 src/http/modules/ngx_http_range_filter.c \
244 src/http/modules/ngx_http_headers_filter.c \
245 src/http/modules/ngx_http_not_modified_filter.c"
246
247 # STUB
248 HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c"
249
250 HTPP_CACHE_SRCS=src/http/ngx_http_cache.c
251 HTPP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
252
253
254 HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module
255 HTTP_CHARSET_SRCS=src/http/modules/ngx_http_charset_filter.c
256
257
258 HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module
259 HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter.c
260
261
262 HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module
263 HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter.c
264
265
266 HTTP_USERID_FILTER_MODULE=ngx_http_userid_filter_module
267 HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_filter.c
268
269
270 HTTP_ACCESS_MODULE=ngx_http_access_module
271 HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_handler.c
272
273
274 HTTP_STATUS_MODULE=ngx_http_status_module
275 HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_handler.c
276
277
278 HTTP_REWRITE_MODULE=ngx_http_rewrite_module
279 HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_handler.c
280
281
282 HTTP_SSL_MODULE=ngx_http_ssl_module
283 HTTP_SSL_DEPS=src/http/modules/ngx_http_ssl_module.h
284 HTTP_SSL_SRCS=src/http/modules/ngx_http_ssl_module.c
285
286
287 HTTP_PROXY_MODULE=ngx_http_proxy_module
288 HTTP_PROXY_INCS="src/http/modules/proxy"
289 HTTP_PROXY_DEPS=src/http/modules/proxy/ngx_http_proxy_handler.h
290 HTTP_PROXY_SRCS="src/http/modules/proxy/ngx_http_proxy_handler.c \
291 src/http/modules/proxy/ngx_http_proxy_upstream.c \
292 src/http/modules/proxy/ngx_http_proxy_parse.c \
293 src/http/modules/proxy/ngx_http_proxy_header.c"
294
295 # STUB
296 # src/http/modules/proxy/ngx_http_proxy_cache.c \
297
298
299 IMAP_INCS="src/imap"
300
301 IMAP_DEPS="src/imap/ngx_imap.h"
302
303 IMAP_MODULE=ngx_imap_module
304 IMAP_SRCS="src/imap/ngx_imap.c \
305 src/imap/ngx_imap_handler.c \
306 src/imap/ngx_imap_parse.c \
307 src/imap/ngx_imap_proxy.c"