nginx-quic/auto/sources

244 lines
7.9 KiB
Plaintext
Raw Normal View History

2003-11-25 17:44:56 -03:00
CORE_MODULES="ngx_core_module ngx_errlog_module"
2004-03-29 13:43:58 -04:00
CORE_INCS="src/core"
2003-11-25 17:44:56 -03:00
CORE_DEPS="src/core/nginx.h \
src/core/ngx_config.h \
2004-02-23 17:57:12 -03:00
src/core/ngx_core.h \
2003-12-19 05:15:11 -03:00
src/core/ngx_atomic.h \
2003-11-25 17:44:56 -03:00
src/core/ngx_log.h \
src/core/ngx_alloc.h \
src/core/ngx_array.h \
src/core/ngx_table.h \
src/core/ngx_hunk.h \
src/core/ngx_string.h \
src/core/ngx_parse.h \
src/core/ngx_inet.h \
src/core/ngx_file.h \
2003-11-30 17:03:18 -03:00
src/core/ngx_crc.h \
2003-12-04 11:53:00 -03:00
src/core/ngx_rbtree.h \
2003-11-25 17:44:56 -03:00
src/core/ngx_times.h \
src/core/ngx_connection.h \
2004-01-05 17:55:48 -03:00
src/core/ngx_cycle.h \
2003-11-25 17:44:56 -03:00
src/core/ngx_conf_file.h \
src/core/ngx_garbage_collector.h"
CORE_SRCS="src/core/nginx.c \
src/core/ngx_log.c \
src/core/ngx_alloc.c \
src/core/ngx_array.c \
src/core/ngx_hunk.c \
src/core/ngx_output_chain.c \
src/core/ngx_string.c \
src/core/ngx_parse.c \
src/core/ngx_inet.c \
src/core/ngx_file.c \
2003-12-04 11:53:00 -03:00
src/core/ngx_rbtree.c \
2003-11-25 17:44:56 -03:00
src/core/ngx_times.c \
2004-01-05 17:55:48 -03:00
src/core/ngx_connection.c \
src/core/ngx_cycle.c \
2003-11-25 17:44:56 -03:00
src/core/ngx_conf_file.c \
src/core/ngx_garbage_collector.c"
2004-02-02 18:19:52 -03:00
REGEX_DEPS=src/core/ngx_regex.h
REGEX_SRCS=src/core/ngx_regex.c
2003-12-19 05:15:11 -03:00
2003-11-25 17:44:56 -03:00
EVENT_MODULES="ngx_events_module ngx_event_core_module"
2004-03-29 13:43:58 -04:00
EVENT_INCS="src/event src/event/modules"
2003-11-25 17:44:56 -03:00
EVENT_DEPS="src/event/ngx_event.h \
src/event/ngx_event_timer.h \
2004-03-02 18:14:37 -03:00
src/event/ngx_event_busy_lock.h \
2003-11-25 17:44:56 -03:00
src/event/ngx_event_connect.h \
src/event/ngx_event_pipe.h"
EVENT_SRCS="src/event/ngx_event.c \
src/event/ngx_event_timer.c \
2004-03-02 18:14:37 -03:00
src/event/ngx_event_busy_lock.c \
2003-11-25 17:44:56 -03:00
src/event/ngx_event_accept.c \
src/event/ngx_event_connect.c \
src/event/ngx_event_pipe.c"
2004-02-02 18:19:52 -03:00
SELECT_MODULE=ngx_select_module
2003-11-25 17:44:56 -03:00
SELECT_SRCS=src/event/modules/ngx_select_module.c
2004-02-02 18:19:52 -03:00
POLL_MODULE=ngx_poll_module
2003-11-25 17:44:56 -03:00
POLL_SRCS=src/event/modules/ngx_poll_module.c
2004-02-02 18:19:52 -03:00
KQUEUE_MODULE=ngx_kqueue_module
2003-11-25 17:44:56 -03:00
KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c
2004-02-02 18:19:52 -03:00
DEVPOLL_MODULE=ngx_devpoll_module
2003-11-25 17:44:56 -03:00
DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c
2004-01-29 18:45:01 -03:00
2004-02-02 18:19:52 -03:00
EPOLL_MODULE=ngx_epoll_module
2004-01-29 18:45:01 -03:00
EPOLL_SRCS=src/event/modules/ngx_epoll_module.c
2004-01-30 14:39:00 -03:00
2004-02-17 14:53:12 -03:00
RTSIG_MODULE=ngx_rtsig_module
RTSIG_SRCS=src/event/modules/ngx_rtsig_module.c
2003-11-25 17:44:56 -03:00
2004-02-02 18:19:52 -03:00
IOCP_MODULE=ngx_iocp_module
2003-11-25 17:44:56 -03:00
IOCP_SRCS=src/event/modules/ngx_iocp_module.c
2004-02-02 18:19:52 -03:00
AIO_MODULE=ngx_aio_module
AIO_SRCS="src/event/modules/ngx_aio_module.c \
src/os/unix/ngx_aio_read.c \
src/os/unix/ngx_aio_write.c \
src/os/unix/ngx_aio_read_chain.c \
src/os/unix/ngx_aio_write_chain.c"
2003-11-25 17:44:56 -03:00
2004-03-29 13:43:58 -04:00
UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix"
2003-11-25 17:44:56 -03:00
UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
src/os/unix/ngx_time.h \
src/os/unix/ngx_types.h \
src/os/unix/ngx_errno.h \
src/os/unix/ngx_files.h \
src/os/unix/ngx_process.h \
2004-02-23 17:57:12 -03:00
src/os/unix/ngx_thread.h \
2003-11-25 17:44:56 -03:00
src/os/unix/ngx_socket.h \
2004-03-04 04:04:55 -03:00
src/os/unix/ngx_os.h \
src/os/unix/ngx_process_cycle.h"
2003-11-25 17:44:56 -03:00
UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
src/os/unix/ngx_time.c \
2003-12-14 17:10:27 -03:00
src/os/unix/ngx_errno.c \
2003-11-25 17:44:56 -03:00
src/os/unix/ngx_files.c \
src/os/unix/ngx_socket.c \
src/os/unix/ngx_recv.c \
src/os/unix/ngx_readv_chain.c \
src/os/unix/ngx_writev_chain.c \
2004-03-04 04:04:55 -03:00
src/os/unix/ngx_daemon.c \
2003-11-25 17:44:56 -03:00
src/os/unix/ngx_process.c \
2004-03-04 04:04:55 -03:00
src/os/unix/ngx_posix_init.c \
src/os/unix/ngx_process_cycle.c"
2003-11-25 17:44:56 -03:00
FREEBSD_DEPS=src/os/unix/ngx_freebsd_config.h
FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c
FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c
2004-02-23 17:57:12 -03:00
FREEBSD_RFORK_SRCS="src/os/unix/ngx_freebsd_rfork_thread.c"
2004-02-24 14:31:46 -03:00
FREEBSD_RFORK_THREAD_SRCS="src/os/unix/rfork_thread.S"
2003-11-25 17:44:56 -03:00
2003-11-26 12:42:18 -03:00
LINUX_DEPS=src/os/unix/ngx_linux_config.h
LINUX_SRCS=src/os/unix/ngx_linux_init.c
LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c
SOLARIS_DEPS=src/os/unix/ngx_solaris_config.h
SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c
2003-11-27 04:45:22 -03:00
SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c
2003-11-26 12:42:18 -03:00
2004-03-29 13:43:58 -04:00
WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32"
2003-11-25 17:44:56 -03:00
WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \
src/os/win32/ngx_win32_config.h \
src/os/win32/ngx_time.h \
src/os/win32/ngx_types.h \
src/os/win32/ngx_errno.h \
src/os/win32/ngx_files.h \
src/os/win32/ngx_process.h \
src/os/win32/ngx_socket.h \
2004-03-04 04:04:55 -03:00
src/os/win32/ngx_os.h \
src/os/win32/ngx_process_cycle.h"
2003-11-25 17:44:56 -03:00
2004-03-09 16:47:07 -03:00
WIN32_CONFIG=src/os/win32/ngx_win32_config.h
2003-11-25 17:44:56 -03:00
WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \
src/os/win32/ngx_errno.c \
src/os/win32/ngx_files.c \
src/os/win32/ngx_time.c \
2004-03-04 04:04:55 -03:00
src/os/win32/ngx_process.c \
2003-11-25 17:44:56 -03:00
src/os/win32/ngx_socket.c \
src/os/win32/ngx_wsarecv.c \
src/os/win32/ngx_wsarecv_chain.c \
src/os/win32/ngx_wsasend_chain.c \
src/os/win32/ngx_win32_init.c \
2004-03-04 04:04:55 -03:00
src/os/win32/ngx_process_cycle.c \
2003-11-25 17:44:56 -03:00
src/event/ngx_event_acceptex.c"
HTTP_MODULES="ngx_http_module \
ngx_http_core_module \
2004-03-12 13:57:08 -03:00
ngx_http_log_module"
HTTP_FILE_CACHE_MODULE=ngx_http_cache_module
2003-11-25 17:44:56 -03:00
HTTP_FILTER_MODULES="ngx_http_write_filter_module \
ngx_http_output_filter_module \
ngx_http_header_filter_module"
HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module
HTTP_RANGE_FILTER_MODULE=ngx_http_range_filter_module
HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module
HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module
HTTP_STATIC_MODULE=ngx_http_static_module
HTTP_INDEX_MODULE=ngx_http_index_module
2004-03-29 13:43:58 -04:00
HTTP_INCS="src/http src/http/modules"
2003-11-25 17:44:56 -03:00
HTTP_DEPS="src/http/ngx_http.h \
src/http/ngx_http_request.h \
src/http/ngx_http_filter.h \
src/http/ngx_http_config.h \
src/http/ngx_http_core_module.h \
src/http/ngx_http_cache.h \
src/http/ngx_http_busy_lock.h \
src/http/ngx_http_log_handler.h"
HTTP_SRCS="src/http/ngx_http.c \
src/http/ngx_http_core_module.c \
src/http/ngx_http_special_response.c \
src/http/ngx_http_request.c \
src/http/ngx_http_parse.c \
src/http/ngx_http_headers.c \
src/http/ngx_http_header_filter.c \
src/http/ngx_http_write_filter.c \
src/http/ngx_http_output_filter.c \
src/http/ngx_http_log_handler.c \
src/http/ngx_http_request_body.c \
src/http/ngx_http_parse_time.c \
src/http/modules/ngx_http_static_handler.c \
src/http/modules/ngx_http_index_handler.c \
src/http/modules/ngx_http_chunked_filter.c \
src/http/modules/ngx_http_range_filter.c \
src/http/modules/ngx_http_charset_filter.c \
src/http/modules/ngx_http_not_modified_filter.c"
2004-03-12 13:57:08 -03:00
# STUB
HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c"
HTPP_CACHE_SRCS=src/http/ngx_http_cache.c
HTPP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
2003-11-25 17:44:56 -03:00
2003-12-25 17:26:58 -03:00
HTTP_REWRITE_MODULE=ngx_http_rewrite_module
HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_handler.c
2003-11-25 17:44:56 -03:00
HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module
HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter.c
2004-01-26 05:52:49 -03:00
HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module
HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter.c
2003-11-25 17:44:56 -03:00
HTTP_PROXY_MODULE=ngx_http_proxy_module
2004-03-29 13:43:58 -04:00
HTTP_PROXY_INCS="src/http/modules/proxy"
2003-11-25 17:44:56 -03:00
HTTP_PROXY_DEPS=src/http/modules/proxy/ngx_http_proxy_handler.h
HTTP_PROXY_SRCS="src/http/modules/proxy/ngx_http_proxy_handler.c \
src/http/modules/proxy/ngx_http_proxy_upstream.c \
src/http/modules/proxy/ngx_http_proxy_parse.c \
src/http/modules/proxy/ngx_http_proxy_header.c"
2004-03-12 13:57:08 -03:00
# STUB
# src/http/modules/proxy/ngx_http_proxy_cache.c \