2003-11-25 20:44:56 +00:00
|
|
|
|
2004-09-29 16:00:49 +00:00
|
|
|
# Copyright (C) Igor Sysoev
|
2012-01-18 15:07:43 +00:00
|
|
|
# Copyright (C) Nginx, Inc.
|
2004-09-29 16:00:49 +00:00
|
|
|
|
|
|
|
|
2004-05-18 15:29:08 +00:00
|
|
|
CORE_MODULES="ngx_core_module ngx_errlog_module ngx_conf_module"
|
2003-11-25 20:44:56 +00:00
|
|
|
|
2004-03-29 17:43:58 +00:00
|
|
|
CORE_INCS="src/core"
|
2003-11-25 20:44:56 +00:00
|
|
|
|
|
|
|
CORE_DEPS="src/core/nginx.h \
|
2004-09-07 15:29:22 +00:00
|
|
|
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 \
|
2005-04-08 15:18:55 +00:00
|
|
|
src/core/ngx_hash.h \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_buf.h \
|
2007-11-23 16:32:50 +00:00
|
|
|
src/core/ngx_queue.h \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_string.h \
|
|
|
|
src/core/ngx_parse.h \
|
2015-06-11 17:42:31 +00:00
|
|
|
src/core/ngx_parse_time.h \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_inet.h \
|
|
|
|
src/core/ngx_file.h \
|
|
|
|
src/core/ngx_crc.h \
|
2006-10-18 19:00:21 +00:00
|
|
|
src/core/ngx_crc32.h \
|
2011-04-15 10:59:24 +00:00
|
|
|
src/core/ngx_murmurhash.h \
|
2007-10-16 11:59:47 +00:00
|
|
|
src/core/ngx_md5.h \
|
2007-10-16 12:16:58 +00:00
|
|
|
src/core/ngx_sha1.h \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_rbtree.h \
|
2005-02-03 19:33:37 +00:00
|
|
|
src/core/ngx_radix_tree.h \
|
2015-03-21 11:05:08 +00:00
|
|
|
src/core/ngx_rwlock.h \
|
2006-11-20 08:51:45 +00:00
|
|
|
src/core/ngx_slab.h \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_times.h \
|
2006-02-08 15:33:12 +00:00
|
|
|
src/core/ngx_shmtx.h \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_connection.h \
|
|
|
|
src/core/ngx_cycle.h \
|
|
|
|
src/core/ngx_conf_file.h \
|
2016-02-04 15:30:21 +00:00
|
|
|
src/core/ngx_module.h \
|
2007-11-23 17:13:26 +00:00
|
|
|
src/core/ngx_resolver.h \
|
2011-05-16 14:54:50 +00:00
|
|
|
src/core/ngx_open_file_cache.h \
|
2014-03-17 13:41:24 +00:00
|
|
|
src/core/ngx_crypt.h \
|
2014-05-12 12:34:15 +00:00
|
|
|
src/core/ngx_proxy_protocol.h \
|
|
|
|
src/core/ngx_syslog.h"
|
2003-11-25 20:44:56 +00:00
|
|
|
|
2004-09-28 20:09:22 +00:00
|
|
|
|
2003-11-25 20:44:56 +00:00
|
|
|
CORE_SRCS="src/core/nginx.c \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_log.c \
|
|
|
|
src/core/ngx_palloc.c \
|
|
|
|
src/core/ngx_array.c \
|
|
|
|
src/core/ngx_list.c \
|
2005-04-08 15:18:55 +00:00
|
|
|
src/core/ngx_hash.c \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_buf.c \
|
2008-05-24 14:10:01 +00:00
|
|
|
src/core/ngx_queue.c \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_output_chain.c \
|
|
|
|
src/core/ngx_string.c \
|
|
|
|
src/core/ngx_parse.c \
|
2015-06-11 17:42:31 +00:00
|
|
|
src/core/ngx_parse_time.c \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_inet.c \
|
|
|
|
src/core/ngx_file.c \
|
2006-10-18 19:00:21 +00:00
|
|
|
src/core/ngx_crc32.c \
|
2011-04-15 10:59:24 +00:00
|
|
|
src/core/ngx_murmurhash.c \
|
2011-04-15 15:58:06 +00:00
|
|
|
src/core/ngx_md5.c \
|
2016-06-09 13:55:38 +00:00
|
|
|
src/core/ngx_sha1.c \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_rbtree.c \
|
2005-02-03 19:33:37 +00:00
|
|
|
src/core/ngx_radix_tree.c \
|
2006-11-20 08:51:45 +00:00
|
|
|
src/core/ngx_slab.c \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_times.c \
|
2006-02-08 15:33:12 +00:00
|
|
|
src/core/ngx_shmtx.c \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_connection.c \
|
|
|
|
src/core/ngx_cycle.c \
|
|
|
|
src/core/ngx_spinlock.c \
|
2015-03-21 11:05:08 +00:00
|
|
|
src/core/ngx_rwlock.c \
|
2006-02-08 15:33:12 +00:00
|
|
|
src/core/ngx_cpuinfo.c \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/core/ngx_conf_file.c \
|
2016-02-04 15:30:21 +00:00
|
|
|
src/core/ngx_module.c \
|
2007-11-23 17:13:26 +00:00
|
|
|
src/core/ngx_resolver.c \
|
2011-05-16 14:54:50 +00:00
|
|
|
src/core/ngx_open_file_cache.c \
|
2014-03-17 13:41:24 +00:00
|
|
|
src/core/ngx_crypt.c \
|
2014-05-12 12:34:15 +00:00
|
|
|
src/core/ngx_proxy_protocol.c \
|
|
|
|
src/core/ngx_syslog.c"
|
2003-11-25 20:44:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
EVENT_MODULES="ngx_events_module ngx_event_core_module"
|
|
|
|
|
2020-12-25 11:01:28 +00:00
|
|
|
EVENT_INCS="src/event src/event/modules src/event/quic"
|
2003-11-25 20:44:56 +00:00
|
|
|
|
|
|
|
EVENT_DEPS="src/event/ngx_event.h \
|
|
|
|
src/event/ngx_event_timer.h \
|
2004-04-04 20:32:09 +00:00
|
|
|
src/event/ngx_event_posted.h \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/event/ngx_event_connect.h \
|
2021-07-12 13:40:57 +00:00
|
|
|
src/event/ngx_event_pipe.h \
|
|
|
|
src/event/ngx_event_udp.h"
|
2003-11-25 20:44:56 +00:00
|
|
|
|
|
|
|
EVENT_SRCS="src/event/ngx_event.c \
|
|
|
|
src/event/ngx_event_timer.c \
|
2004-04-04 20:32:09 +00:00
|
|
|
src/event/ngx_event_posted.c \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/event/ngx_event_accept.c \
|
2018-06-01 13:55:49 +00:00
|
|
|
src/event/ngx_event_udp.c \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/event/ngx_event_connect.c \
|
|
|
|
src/event/ngx_event_pipe.c"
|
|
|
|
|
|
|
|
|
2004-02-02 21:19:52 +00:00
|
|
|
SELECT_MODULE=ngx_select_module
|
2003-11-25 20:44:56 +00:00
|
|
|
SELECT_SRCS=src/event/modules/ngx_select_module.c
|
2009-05-06 14:53:54 +00:00
|
|
|
WIN32_SELECT_SRCS=src/event/modules/ngx_win32_select_module.c
|
2003-11-25 20:44:56 +00:00
|
|
|
|
2004-02-02 21:19:52 +00:00
|
|
|
POLL_MODULE=ngx_poll_module
|
2003-11-25 20:44:56 +00:00
|
|
|
POLL_SRCS=src/event/modules/ngx_poll_module.c
|
2019-01-24 18:51:21 +00:00
|
|
|
WIN32_POLL_SRCS=src/event/modules/ngx_win32_poll_module.c
|
2003-11-25 20:44:56 +00:00
|
|
|
|
2004-02-02 21:19:52 +00:00
|
|
|
KQUEUE_MODULE=ngx_kqueue_module
|
2003-11-25 20:44:56 +00:00
|
|
|
KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c
|
|
|
|
|
2004-02-02 21:19:52 +00:00
|
|
|
DEVPOLL_MODULE=ngx_devpoll_module
|
2003-11-25 20:44:56 +00:00
|
|
|
DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c
|
2004-01-29 21:45:01 +00:00
|
|
|
|
2006-09-26 12:20:12 +00:00
|
|
|
EVENTPORT_MODULE=ngx_eventport_module
|
|
|
|
EVENTPORT_SRCS=src/event/modules/ngx_eventport_module.c
|
|
|
|
|
2004-02-02 21:19:52 +00:00
|
|
|
EPOLL_MODULE=ngx_epoll_module
|
2004-01-29 21:45:01 +00:00
|
|
|
EPOLL_SRCS=src/event/modules/ngx_epoll_module.c
|
2004-01-30 17:39:00 +00:00
|
|
|
|
2004-02-02 21:19:52 +00:00
|
|
|
IOCP_MODULE=ngx_iocp_module
|
2003-11-25 20:44:56 +00:00
|
|
|
IOCP_SRCS=src/event/modules/ngx_iocp_module.c
|
|
|
|
|
2009-08-28 08:12:35 +00: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 20:44:56 +00:00
|
|
|
|
2004-03-29 17:43:58 +00:00
|
|
|
UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix"
|
2003-11-25 20:44:56 +00:00
|
|
|
|
|
|
|
UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
|
|
|
|
src/os/unix/ngx_time.h \
|
|
|
|
src/os/unix/ngx_errno.h \
|
2004-06-06 19:49:18 +00:00
|
|
|
src/os/unix/ngx_alloc.h \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/unix/ngx_files.h \
|
2004-06-23 15:18:17 +00:00
|
|
|
src/os/unix/ngx_channel.h \
|
2006-02-01 18:22:15 +00:00
|
|
|
src/os/unix/ngx_shmem.h \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/unix/ngx_process.h \
|
2012-03-21 13:58:51 +00:00
|
|
|
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 14:58:06 +00:00
|
|
|
src/os/unix/ngx_setproctitle.h \
|
2004-06-30 15:30:41 +00:00
|
|
|
src/os/unix/ngx_atomic.h \
|
2005-10-12 13:50:36 +00:00
|
|
|
src/os/unix/ngx_gcc_atomic_x86.h \
|
2004-02-23 20:57:12 +00:00
|
|
|
src/os/unix/ngx_thread.h \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/unix/ngx_socket.h \
|
2004-03-04 07:04:55 +00:00
|
|
|
src/os/unix/ngx_os.h \
|
2005-03-22 16:02:46 +00:00
|
|
|
src/os/unix/ngx_user.h \
|
2016-02-04 15:30:21 +00:00
|
|
|
src/os/unix/ngx_dlopen.h \
|
2004-03-04 07:04:55 +00:00
|
|
|
src/os/unix/ngx_process_cycle.h"
|
2003-11-25 20:44:56 +00:00
|
|
|
|
2005-10-12 13:50:36 +00: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 20:44:56 +00:00
|
|
|
UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
|
|
|
|
src/os/unix/ngx_time.c \
|
2003-12-14 20:10:27 +00:00
|
|
|
src/os/unix/ngx_errno.c \
|
2004-06-06 19:49:18 +00:00
|
|
|
src/os/unix/ngx_alloc.c \
|
2003-11-25 20:44:56 +00: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 16:46:46 +00:00
|
|
|
src/os/unix/ngx_udp_recv.c \
|
2004-09-07 15:29:22 +00:00
|
|
|
src/os/unix/ngx_send.c \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/unix/ngx_writev_chain.c \
|
2016-01-20 16:52:12 +00:00
|
|
|
src/os/unix/ngx_udp_send.c \
|
2016-09-15 11:55:46 +00:00
|
|
|
src/os/unix/ngx_udp_sendmsg_chain.c \
|
2004-06-23 15:18:17 +00:00
|
|
|
src/os/unix/ngx_channel.c \
|
2006-02-01 18:22:15 +00:00
|
|
|
src/os/unix/ngx_shmem.c \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/unix/ngx_process.c \
|
2004-06-17 17:18:53 +00:00
|
|
|
src/os/unix/ngx_daemon.c \
|
2012-03-21 13:58:51 +00:00
|
|
|
src/os/unix/ngx_setaffinity.c \
|
2004-10-11 15:07:03 +00:00
|
|
|
src/os/unix/ngx_setproctitle.c \
|
2004-03-04 07:04:55 +00:00
|
|
|
src/os/unix/ngx_posix_init.c \
|
2005-03-22 16:02:46 +00:00
|
|
|
src/os/unix/ngx_user.c \
|
2016-02-04 15:30:21 +00:00
|
|
|
src/os/unix/ngx_dlopen.c \
|
2004-03-04 07:04:55 +00:00
|
|
|
src/os/unix/ngx_process_cycle.c"
|
2003-11-25 20:44:56 +00:00
|
|
|
|
2004-06-15 17:47:16 +00:00
|
|
|
POSIX_DEPS=src/os/unix/ngx_posix_config.h
|
|
|
|
|
2015-03-14 14:37:07 +00: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 10:32:00 +00:00
|
|
|
FREEBSD_DEPS="src/os/unix/ngx_freebsd_config.h src/os/unix/ngx_freebsd.h"
|
2003-11-25 20:44:56 +00:00
|
|
|
FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c
|
|
|
|
FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c
|
|
|
|
|
2007-12-22 10:32:00 +00:00
|
|
|
LINUX_DEPS="src/os/unix/ngx_linux_config.h src/os/unix/ngx_linux.h"
|
2003-11-26 15:42:18 +00:00
|
|
|
LINUX_SRCS=src/os/unix/ngx_linux_init.c
|
|
|
|
LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c
|
|
|
|
|
|
|
|
|
2007-12-22 10:32:00 +00:00
|
|
|
SOLARIS_DEPS="src/os/unix/ngx_solaris_config.h src/os/unix/ngx_solaris.h"
|
2003-11-26 15:42:18 +00:00
|
|
|
SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c
|
2003-11-27 07:45:22 +00:00
|
|
|
SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c
|
2003-11-26 15:42:18 +00:00
|
|
|
|
|
|
|
|
2008-07-30 12:18:07 +00: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 17:43:58 +00:00
|
|
|
WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32"
|
2003-11-25 20:44:56 +00: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 19:49:18 +00:00
|
|
|
src/os/win32/ngx_alloc.h \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/win32/ngx_files.h \
|
2006-02-01 18:22:15 +00:00
|
|
|
src/os/win32/ngx_shmem.h \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/win32/ngx_process.h \
|
2004-06-30 15:30:41 +00:00
|
|
|
src/os/win32/ngx_atomic.h \
|
2004-11-11 14:07:14 +00:00
|
|
|
src/os/win32/ngx_thread.h \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/win32/ngx_socket.h \
|
2004-03-04 07:04:55 +00:00
|
|
|
src/os/win32/ngx_os.h \
|
2005-03-22 16:02:46 +00:00
|
|
|
src/os/win32/ngx_user.h \
|
2016-02-04 15:30:21 +00:00
|
|
|
src/os/win32/ngx_dlopen.h \
|
2004-03-04 07:04:55 +00:00
|
|
|
src/os/win32/ngx_process_cycle.h"
|
2003-11-25 20:44:56 +00:00
|
|
|
|
2004-03-09 19:47:07 +00:00
|
|
|
WIN32_CONFIG=src/os/win32/ngx_win32_config.h
|
|
|
|
|
2003-11-25 20:44:56 +00:00
|
|
|
WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \
|
|
|
|
src/os/win32/ngx_errno.c \
|
2004-06-06 19:49:18 +00:00
|
|
|
src/os/win32/ngx_alloc.c \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/win32/ngx_files.c \
|
2006-02-01 18:22:15 +00:00
|
|
|
src/os/win32/ngx_shmem.c \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/win32/ngx_time.c \
|
2004-03-04 07:04:55 +00:00
|
|
|
src/os/win32/ngx_process.c \
|
2004-11-11 14:07:14 +00:00
|
|
|
src/os/win32/ngx_thread.c \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/win32/ngx_socket.c \
|
|
|
|
src/os/win32/ngx_wsarecv.c \
|
|
|
|
src/os/win32/ngx_wsarecv_chain.c \
|
2007-12-03 16:46:46 +00:00
|
|
|
src/os/win32/ngx_udp_wsarecv.c \
|
2009-04-20 06:08:47 +00:00
|
|
|
src/os/win32/ngx_wsasend.c \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/os/win32/ngx_wsasend_chain.c \
|
|
|
|
src/os/win32/ngx_win32_init.c \
|
2005-03-22 16:02:46 +00:00
|
|
|
src/os/win32/ngx_user.c \
|
2016-02-04 15:30:21 +00:00
|
|
|
src/os/win32/ngx_dlopen.c \
|
2009-04-20 06:08:47 +00:00
|
|
|
src/os/win32/ngx_event_log.c \
|
2004-03-04 07:04:55 +00:00
|
|
|
src/os/win32/ngx_process_cycle.c \
|
2003-11-25 20:44:56 +00:00
|
|
|
src/event/ngx_event_acceptex.c"
|
|
|
|
|
2009-04-20 06:08:47 +00:00
|
|
|
NGX_WIN32_ICONS="src/os/win32/nginx.ico"
|
2004-11-11 14:07:14 +00:00
|
|
|
NGX_WIN32_RC="src/os/win32/nginx.rc"
|
|
|
|
|
2003-11-25 20:44:56 +00:00
|
|
|
|
2008-03-12 21:10:48 +00:00
|
|
|
HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
|