comparison auto/sources @ 297:ee394e997c77

nginx-0.0.3-2004-03-29-21:43:58 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 29 Mar 2004 17:43:58 +0000
parents f81d075ad172
children 6b91bfbc4123
comparison
equal deleted inserted replaced
296:bfe099e3f5b4 297:ee394e997c77
1 1
2 CORE_MODULES="ngx_core_module ngx_errlog_module" 2 CORE_MODULES="ngx_core_module ngx_errlog_module"
3 3
4 CORE_INCS="-I 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_atomic.h \ 9 src/core/ngx_atomic.h \
46 REGEX_SRCS=src/core/ngx_regex.c 46 REGEX_SRCS=src/core/ngx_regex.c
47 47
48 48
49 EVENT_MODULES="ngx_events_module ngx_event_core_module" 49 EVENT_MODULES="ngx_events_module ngx_event_core_module"
50 50
51 EVENT_INCS="-I src/event -I src/event/modules" 51 EVENT_INCS="src/event src/event/modules"
52 52
53 EVENT_DEPS="src/event/ngx_event.h \ 53 EVENT_DEPS="src/event/ngx_event.h \
54 src/event/ngx_event_timer.h \ 54 src/event/ngx_event_timer.h \
55 src/event/ngx_event_busy_lock.h \ 55 src/event/ngx_event_busy_lock.h \
56 src/event/ngx_event_connect.h \ 56 src/event/ngx_event_connect.h \
91 src/os/unix/ngx_aio_write.c \ 91 src/os/unix/ngx_aio_write.c \
92 src/os/unix/ngx_aio_read_chain.c \ 92 src/os/unix/ngx_aio_read_chain.c \
93 src/os/unix/ngx_aio_write_chain.c" 93 src/os/unix/ngx_aio_write_chain.c"
94 94
95 95
96 UNIX_INCS="$CORE_INCS $EVENT_INCS -I src/os/unix" 96 UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix"
97 97
98 UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \ 98 UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
99 src/os/unix/ngx_time.h \ 99 src/os/unix/ngx_time.h \
100 src/os/unix/ngx_types.h \ 100 src/os/unix/ngx_types.h \
101 src/os/unix/ngx_errno.h \ 101 src/os/unix/ngx_errno.h \
133 SOLARIS_DEPS=src/os/unix/ngx_solaris_config.h 133 SOLARIS_DEPS=src/os/unix/ngx_solaris_config.h
134 SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c 134 SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c
135 SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c 135 SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c
136 136
137 137
138 WIN32_INCS="$CORE_INCS $EVENT_INCS -I src/os/win32" 138 WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32"
139 139
140 WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \ 140 WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \
141 src/os/win32/ngx_win32_config.h \ 141 src/os/win32/ngx_win32_config.h \
142 src/os/win32/ngx_time.h \ 142 src/os/win32/ngx_time.h \
143 src/os/win32/ngx_types.h \ 143 src/os/win32/ngx_types.h \
180 HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module 180 HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module
181 181
182 HTTP_STATIC_MODULE=ngx_http_static_module 182 HTTP_STATIC_MODULE=ngx_http_static_module
183 HTTP_INDEX_MODULE=ngx_http_index_module 183 HTTP_INDEX_MODULE=ngx_http_index_module
184 184
185 HTTP_INCS="-I src/http -I src/http/modules" 185 HTTP_INCS="src/http src/http/modules"
186 186
187 HTTP_DEPS="src/http/ngx_http.h \ 187 HTTP_DEPS="src/http/ngx_http.h \
188 src/http/ngx_http_request.h \ 188 src/http/ngx_http_request.h \
189 src/http/ngx_http_filter.h \ 189 src/http/ngx_http_filter.h \
190 src/http/ngx_http_config.h \ 190 src/http/ngx_http_config.h \
230 HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module 230 HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module
231 HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter.c 231 HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter.c
232 232
233 233
234 HTTP_PROXY_MODULE=ngx_http_proxy_module 234 HTTP_PROXY_MODULE=ngx_http_proxy_module
235 HTTP_PROXY_INCS="-I src/http/modules/proxy" 235 HTTP_PROXY_INCS="src/http/modules/proxy"
236 HTTP_PROXY_DEPS=src/http/modules/proxy/ngx_http_proxy_handler.h 236 HTTP_PROXY_DEPS=src/http/modules/proxy/ngx_http_proxy_handler.h
237 HTTP_PROXY_SRCS="src/http/modules/proxy/ngx_http_proxy_handler.c \ 237 HTTP_PROXY_SRCS="src/http/modules/proxy/ngx_http_proxy_handler.c \
238 src/http/modules/proxy/ngx_http_proxy_upstream.c \ 238 src/http/modules/proxy/ngx_http_proxy_upstream.c \
239 src/http/modules/proxy/ngx_http_proxy_parse.c \ 239 src/http/modules/proxy/ngx_http_proxy_parse.c \
240 src/http/modules/proxy/ngx_http_proxy_header.c" 240 src/http/modules/proxy/ngx_http_proxy_header.c"