nginx-quic/auto/sources

262 lines
8.7 KiB
Plaintext
Raw Permalink Normal View History

2003-11-25 17:44:56 -03:00
# Copyright (C) Igor Sysoev
2012-01-18 12:07:43 -03:00
# Copyright (C) Nginx, Inc.
2004-05-18 11:29:08 -04:00
CORE_MODULES="ngx_core_module ngx_errlog_module ngx_conf_module"
2003-11-25 17:44:56 -03:00
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 \
src/core/ngx_core.h \
src/core/ngx_log.h \
src/core/ngx_palloc.h \
src/core/ngx_array.h \
src/core/ngx_list.h \
src/core/ngx_hash.h \
src/core/ngx_buf.h \
2007-11-23 13:32:50 -03:00
src/core/ngx_queue.h \
src/core/ngx_string.h \
src/core/ngx_parse.h \
src/core/ngx_parse_time.h \
src/core/ngx_inet.h \
src/core/ngx_file.h \
src/core/ngx_crc.h \
2006-10-18 16:00:21 -03:00
src/core/ngx_crc32.h \
2011-04-15 07:59:24 -03:00
src/core/ngx_murmurhash.h \
2007-10-16 08:59:47 -03:00
src/core/ngx_md5.h \
2007-10-16 09:16:58 -03:00
src/core/ngx_sha1.h \
src/core/ngx_rbtree.h \
src/core/ngx_radix_tree.h \
2015-03-21 08:05:08 -03:00
src/core/ngx_rwlock.h \
2006-11-20 05:51:45 -03:00
src/core/ngx_slab.h \
src/core/ngx_times.h \
src/core/ngx_shmtx.h \
src/core/ngx_connection.h \
src/core/ngx_cycle.h \
src/core/ngx_conf_file.h \
src/core/ngx_module.h \
2007-11-23 14:13:26 -03:00
src/core/ngx_resolver.h \
src/core/ngx_open_file_cache.h \
src/core/ngx_crypt.h \
src/core/ngx_proxy_protocol.h \
src/core/ngx_syslog.h"
2003-11-25 17:44:56 -03:00
2004-09-28 16:09:22 -04:00
2003-11-25 17:44:56 -03:00
CORE_SRCS="src/core/nginx.c \
src/core/ngx_log.c \
src/core/ngx_palloc.c \
src/core/ngx_array.c \
src/core/ngx_list.c \
src/core/ngx_hash.c \
src/core/ngx_buf.c \
2008-05-24 10:10:01 -04:00
src/core/ngx_queue.c \
src/core/ngx_output_chain.c \
src/core/ngx_string.c \
src/core/ngx_parse.c \
src/core/ngx_parse_time.c \
src/core/ngx_inet.c \
src/core/ngx_file.c \
2006-10-18 16:00:21 -03:00
src/core/ngx_crc32.c \
2011-04-15 07:59:24 -03:00
src/core/ngx_murmurhash.c \
src/core/ngx_md5.c \
2016-06-09 09:55:38 -04:00
src/core/ngx_sha1.c \
src/core/ngx_rbtree.c \
src/core/ngx_radix_tree.c \
2006-11-20 05:51:45 -03:00
src/core/ngx_slab.c \
src/core/ngx_times.c \
src/core/ngx_shmtx.c \
src/core/ngx_connection.c \
src/core/ngx_cycle.c \
src/core/ngx_spinlock.c \
2015-03-21 08:05:08 -03:00
src/core/ngx_rwlock.c \
src/core/ngx_cpuinfo.c \
src/core/ngx_conf_file.c \
src/core/ngx_module.c \
2007-11-23 14:13:26 -03:00
src/core/ngx_resolver.c \
src/core/ngx_open_file_cache.c \
src/core/ngx_crypt.c \
src/core/ngx_proxy_protocol.c \
src/core/ngx_syslog.c"
2003-11-25 17:44:56 -03:00
EVENT_MODULES="ngx_events_module ngx_event_core_module"
EVENT_INCS="src/event src/event/modules src/event/quic"
2003-11-25 17:44:56 -03:00
EVENT_DEPS="src/event/ngx_event.h \
src/event/ngx_event_timer.h \
2004-04-04 16:32:09 -04:00
src/event/ngx_event_posted.h \
2003-11-25 17:44:56 -03:00
src/event/ngx_event_connect.h \
2021-07-12 09:40:57 -04:00
src/event/ngx_event_pipe.h \
src/event/ngx_event_udp.h"
2003-11-25 17:44:56 -03:00
EVENT_SRCS="src/event/ngx_event.c \
src/event/ngx_event_timer.c \
2004-04-04 16:32:09 -04:00
src/event/ngx_event_posted.c \
2003-11-25 17:44:56 -03:00
src/event/ngx_event_accept.c \
src/event/ngx_event_udp.c \
2003-11-25 17:44:56 -03:00
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
WIN32_SELECT_SRCS=src/event/modules/ngx_win32_select_module.c
2003-11-25 17:44:56 -03:00
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
WIN32_POLL_SRCS=src/event/modules/ngx_win32_poll_module.c
2003-11-25 17:44:56 -03:00
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
2006-09-26 08:20:12 -04:00
EVENTPORT_MODULE=ngx_eventport_module
EVENTPORT_SRCS=src/event/modules/ngx_eventport_module.c
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-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
2009-08-28 04:12:35 -04:00
FILE_AIO_SRCS="src/os/unix/ngx_file_aio_read.c"
LINUX_AIO_SRCS="src/os/unix/ngx_linux_aio_read.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_errno.h \
2004-06-06 15:49:18 -04:00
src/os/unix/ngx_alloc.h \
2003-11-25 17:44:56 -03:00
src/os/unix/ngx_files.h \
2004-06-23 11:18:17 -04:00
src/os/unix/ngx_channel.h \
src/os/unix/ngx_shmem.h \
2003-11-25 17:44:56 -03:00
src/os/unix/ngx_process.h \
src/os/unix/ngx_setaffinity.h \
nginx-0.1.29-RELEASE import *) Feature: the ngx_http_ssi_module supports "include virtual" command. *) Feature: the ngx_http_ssi_module supports the condition command like 'if expr="$NAME"' and "else" and "endif" commands. Only one nested level is supported. *) Feature: the ngx_http_ssi_module supports the DATE_LOCAL and DATE_GMT variables and "config timefmt" command. *) Feature: the "ssi_ignore_recycled_buffers" directive. *) Bugfix: the "echo" command did not show the default value for the empty QUERY_STRING variable. *) Change: the ngx_http_proxy_module was rewritten. *) Feature: the "proxy_redirect", "proxy_pass_request_headers", "proxy_pass_request_body", and "proxy_method" directives. *) Feature: the "proxy_set_header" directive. The "proxy_x_var" was canceled and must be replaced with the proxy_set_header directive. *) Change: the "proxy_preserve_host" is canceled and must be replaced with the "proxy_set_header Host $host" and the "proxy_redirect off" directives, the "proxy_set_header Host $host:$proxy_port" directive and the appropriate proxy_redirect directives. *) Change: the "proxy_set_x_real_ip" is canceled and must be replaced with the "proxy_set_header X-Real-IP $remote_addr" directive. *) Change: the "proxy_add_x_forwarded_for" is canceled and must be replaced with the "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for" directive. *) Change: the "proxy_set_x_url" is canceled and must be replaced with the "proxy_set_header X-URL http://$host:$server_port$request_uri" directive. *) Feature: the "fastcgi_param" directive. *) Change: the "fastcgi_root", "fastcgi_set_var" and "fastcgi_params" directive are canceled and must be replaced with the fastcgi_param directives. *) Feature: the "index" directive can use the variables. *) Feature: the "index" directive can be used at http and server levels. *) Change: the last index only in the "index" directive can be absolute. *) Feature: the "rewrite" directive can use the variables. *) Feature: the "internal" directive. *) Feature: the CONTENT_LENGTH, CONTENT_TYPE, REMOTE_PORT, SERVER_ADDR, SERVER_PORT, SERVER_PROTOCOL, DOCUMENT_ROOT, SERVER_NAME, REQUEST_METHOD, REQUEST_URI, and REMOTE_USER variables. *) Change: nginx now passes the invalid lines in a client request headers or a backend response header. *) Bugfix: if the backend did not transfer response for a long time and the "send_timeout" was less than "proxy_read_timeout", then nginx returned the 408 response. *) Bugfix: the segmentation fault was occurred if the backend sent an invalid line in response header; the bug had appeared in 0.1.26. *) Bugfix: the segmentation fault may occurred in FastCGI fault tolerance configuration. *) Bugfix: the "expires" directive did not remove the previous "Expires" and "Cache-Control" headers. *) Bugfix: nginx did not take into account trailing dot in "Host" header line. *) Bugfix: the ngx_http_auth_module did not work under Linux. *) Bugfix: the rewrite directive worked incorrectly, if the arguments were in a request. *) Bugfix: nginx could not be built on MacOS X.
2005-05-12 10:58:06 -04:00
src/os/unix/ngx_setproctitle.h \
2004-06-30 11:30:41 -04:00
src/os/unix/ngx_atomic.h \
src/os/unix/ngx_gcc_atomic_x86.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_user.h \
2016-02-04 12:30:21 -03:00
src/os/unix/ngx_dlopen.h \
2004-03-04 04:04:55 -03:00
src/os/unix/ngx_process_cycle.h"
2003-11-25 17:44:56 -03:00
# add to UNIX_DEPS
# src/os/unix/ngx_gcc_atomic_amd64.h \
# src/os/unix/ngx_gcc_atomic_sparc64.h \
# src/os/unix/ngx_gcc_atomic_ppc.h \
# src/os/unix/ngx_sunpro_atomic_sparc64.h \
# src/os/unix/ngx_sunpro_x86.il \
# src/os/unix/ngx_sunpro_amd64.il \
# src/os/unix/ngx_sunpro_sparc64.il \
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 \
2004-06-06 15:49:18 -04:00
src/os/unix/ngx_alloc.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 \
2007-12-03 13:46:46 -03:00
src/os/unix/ngx_udp_recv.c \
src/os/unix/ngx_send.c \
2003-11-25 17:44:56 -03:00
src/os/unix/ngx_writev_chain.c \
2016-01-20 13:52:12 -03:00
src/os/unix/ngx_udp_send.c \
2016-09-15 08:55:46 -03:00
src/os/unix/ngx_udp_sendmsg_chain.c \
2004-06-23 11:18:17 -04:00
src/os/unix/ngx_channel.c \
src/os/unix/ngx_shmem.c \
2003-11-25 17:44:56 -03:00
src/os/unix/ngx_process.c \
2004-06-17 13:18:53 -04:00
src/os/unix/ngx_daemon.c \
src/os/unix/ngx_setaffinity.c \
src/os/unix/ngx_setproctitle.c \
2004-03-04 04:04:55 -03:00
src/os/unix/ngx_posix_init.c \
src/os/unix/ngx_user.c \
2016-02-04 12:30:21 -03:00
src/os/unix/ngx_dlopen.c \
2004-03-04 04:04:55 -03:00
src/os/unix/ngx_process_cycle.c"
2003-11-25 17:44:56 -03:00
2004-06-15 13:47:16 -04:00
POSIX_DEPS=src/os/unix/ngx_posix_config.h
2015-03-14 11:37:07 -03:00
THREAD_POOL_MODULE=ngx_thread_pool_module
THREAD_POOL_DEPS=src/core/ngx_thread_pool.h
THREAD_POOL_SRCS="src/core/ngx_thread_pool.c
src/os/unix/ngx_thread_cond.c
src/os/unix/ngx_thread_mutex.c
src/os/unix/ngx_thread_id.c"
2007-12-22 07:32:00 -03:00
FREEBSD_DEPS="src/os/unix/ngx_freebsd_config.h src/os/unix/ngx_freebsd.h"
2003-11-25 17:44:56 -03:00
FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c
FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c
2007-12-22 07:32:00 -03:00
LINUX_DEPS="src/os/unix/ngx_linux_config.h src/os/unix/ngx_linux.h"
2003-11-26 12:42:18 -03:00
LINUX_SRCS=src/os/unix/ngx_linux_init.c
LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c
2007-12-22 07:32:00 -03:00
SOLARIS_DEPS="src/os/unix/ngx_solaris_config.h src/os/unix/ngx_solaris.h"
2003-11-26 12:42:18 -03:00
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
DARWIN_DEPS="src/os/unix/ngx_darwin_config.h src/os/unix/ngx_darwin.h"
DARWIN_SRCS=src/os/unix/ngx_darwin_init.c
DARWIN_SENDFILE_SRCS=src/os/unix/ngx_darwin_sendfile_chain.c
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_errno.h \
2004-06-06 15:49:18 -04:00
src/os/win32/ngx_alloc.h \
2003-11-25 17:44:56 -03:00
src/os/win32/ngx_files.h \
src/os/win32/ngx_shmem.h \
2003-11-25 17:44:56 -03:00
src/os/win32/ngx_process.h \
2004-06-30 11:30:41 -04:00
src/os/win32/ngx_atomic.h \
src/os/win32/ngx_thread.h \
2003-11-25 17:44:56 -03:00
src/os/win32/ngx_socket.h \
2004-03-04 04:04:55 -03:00
src/os/win32/ngx_os.h \
src/os/win32/ngx_user.h \
2016-02-04 12:30:21 -03:00
src/os/win32/ngx_dlopen.h \
2004-03-04 04:04:55 -03:00
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 \
2004-06-06 15:49:18 -04:00
src/os/win32/ngx_alloc.c \
2003-11-25 17:44:56 -03:00
src/os/win32/ngx_files.c \
src/os/win32/ngx_shmem.c \
2003-11-25 17:44:56 -03:00
src/os/win32/ngx_time.c \
2004-03-04 04:04:55 -03:00
src/os/win32/ngx_process.c \
src/os/win32/ngx_thread.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 \
2007-12-03 13:46:46 -03:00
src/os/win32/ngx_udp_wsarecv.c \
2009-04-20 02:08:47 -04:00
src/os/win32/ngx_wsasend.c \
2003-11-25 17:44:56 -03:00
src/os/win32/ngx_wsasend_chain.c \
src/os/win32/ngx_win32_init.c \
src/os/win32/ngx_user.c \
2016-02-04 12:30:21 -03:00
src/os/win32/ngx_dlopen.c \
2009-04-20 02:08:47 -04:00
src/os/win32/ngx_event_log.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"
2009-04-20 02:08:47 -04:00
NGX_WIN32_ICONS="src/os/win32/nginx.ico"
NGX_WIN32_RC="src/os/win32/nginx.rc"
2003-11-25 17:44:56 -03:00
2008-03-12 18:10:48 -03:00
HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
HTTP_HUFF_SRCS="src/http/ngx_http_huff_decode.c
src/http/ngx_http_huff_encode.c"