Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 1 | |
Igor Sysoev | ff8da91 | 2004-09-29 16:00:49 +0000 | [diff] [blame] | 2 | # Copyright (C) Igor Sysoev |
| 3 | |
| 4 | |
Igor Sysoev | ab517d5 | 2004-05-18 15:29:08 +0000 | [diff] [blame] | 5 | CORE_MODULES="ngx_core_module ngx_errlog_module ngx_conf_module" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 6 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 7 | CORE_INCS="src/core" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 8 | |
| 9 | CORE_DEPS="src/core/nginx.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 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 \ |
Igor Sysoev | 02f742b | 2005-04-08 15:18:55 +0000 | [diff] [blame] | 16 | src/core/ngx_hash.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 17 | src/core/ngx_buf.h \ |
Igor Sysoev | 48bf997 | 2007-11-23 16:32:50 +0000 | [diff] [blame] | 18 | src/core/ngx_queue.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 19 | src/core/ngx_string.h \ |
| 20 | src/core/ngx_parse.h \ |
| 21 | src/core/ngx_inet.h \ |
| 22 | src/core/ngx_file.h \ |
| 23 | src/core/ngx_crc.h \ |
Igor Sysoev | 5864fc0 | 2006-10-18 19:00:21 +0000 | [diff] [blame] | 24 | src/core/ngx_crc32.h \ |
Igor Sysoev | d883df2 | 2007-10-16 11:59:47 +0000 | [diff] [blame] | 25 | src/core/ngx_md5.h \ |
Igor Sysoev | 7b4d026 | 2007-10-16 12:16:58 +0000 | [diff] [blame] | 26 | src/core/ngx_sha1.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 27 | src/core/ngx_rbtree.h \ |
Igor Sysoev | 805d9db | 2005-02-03 19:33:37 +0000 | [diff] [blame] | 28 | src/core/ngx_radix_tree.h \ |
Igor Sysoev | 67cd336 | 2006-11-20 08:51:45 +0000 | [diff] [blame] | 29 | src/core/ngx_slab.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 30 | src/core/ngx_times.h \ |
Igor Sysoev | ffe7144 | 2006-02-08 15:33:12 +0000 | [diff] [blame] | 31 | src/core/ngx_shmtx.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 32 | src/core/ngx_connection.h \ |
| 33 | src/core/ngx_cycle.h \ |
| 34 | src/core/ngx_conf_file.h \ |
Igor Sysoev | cb4d538 | 2007-11-23 17:13:26 +0000 | [diff] [blame] | 35 | src/core/ngx_resolver.h \ |
Igor Sysoev | 52859f2 | 2009-03-23 13:14:51 +0000 | [diff] [blame] | 36 | src/core/ngx_open_file_cache.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 37 | |
Igor Sysoev | 55168f6 | 2004-09-28 20:09:22 +0000 | [diff] [blame] | 38 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 39 | CORE_SRCS="src/core/nginx.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 40 | src/core/ngx_log.c \ |
| 41 | src/core/ngx_palloc.c \ |
| 42 | src/core/ngx_array.c \ |
| 43 | src/core/ngx_list.c \ |
Igor Sysoev | 02f742b | 2005-04-08 15:18:55 +0000 | [diff] [blame] | 44 | src/core/ngx_hash.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 45 | src/core/ngx_buf.c \ |
Igor Sysoev | 5cdc511 | 2008-05-24 14:10:01 +0000 | [diff] [blame] | 46 | src/core/ngx_queue.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 47 | src/core/ngx_output_chain.c \ |
| 48 | src/core/ngx_string.c \ |
| 49 | src/core/ngx_parse.c \ |
| 50 | src/core/ngx_inet.c \ |
| 51 | src/core/ngx_file.c \ |
Igor Sysoev | 5864fc0 | 2006-10-18 19:00:21 +0000 | [diff] [blame] | 52 | src/core/ngx_crc32.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 53 | src/core/ngx_rbtree.c \ |
Igor Sysoev | 805d9db | 2005-02-03 19:33:37 +0000 | [diff] [blame] | 54 | src/core/ngx_radix_tree.c \ |
Igor Sysoev | 67cd336 | 2006-11-20 08:51:45 +0000 | [diff] [blame] | 55 | src/core/ngx_slab.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 56 | src/core/ngx_times.c \ |
Igor Sysoev | ffe7144 | 2006-02-08 15:33:12 +0000 | [diff] [blame] | 57 | src/core/ngx_shmtx.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 58 | src/core/ngx_connection.c \ |
| 59 | src/core/ngx_cycle.c \ |
| 60 | src/core/ngx_spinlock.c \ |
Igor Sysoev | ffe7144 | 2006-02-08 15:33:12 +0000 | [diff] [blame] | 61 | src/core/ngx_cpuinfo.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 62 | src/core/ngx_conf_file.c \ |
Igor Sysoev | cb4d538 | 2007-11-23 17:13:26 +0000 | [diff] [blame] | 63 | src/core/ngx_resolver.c \ |
Igor Sysoev | 52859f2 | 2009-03-23 13:14:51 +0000 | [diff] [blame] | 64 | src/core/ngx_open_file_cache.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 65 | |
| 66 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 67 | REGEX_DEPS=src/core/ngx_regex.h |
| 68 | REGEX_SRCS=src/core/ngx_regex.c |
Igor Sysoev | e89c458 | 2003-12-19 08:15:11 +0000 | [diff] [blame] | 69 | |
| 70 | |
Igor Sysoev | e573380 | 2005-09-08 14:36:09 +0000 | [diff] [blame] | 71 | OPENSSL_MODULE=ngx_openssl_module |
| 72 | OPENSSL_DEPS=src/event/ngx_event_openssl.h |
| 73 | OPENSSL_SRCS=src/event/ngx_event_openssl.c |
| 74 | |
| 75 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 76 | EVENT_MODULES="ngx_events_module ngx_event_core_module" |
| 77 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 78 | EVENT_INCS="src/event src/event/modules" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 79 | |
| 80 | EVENT_DEPS="src/event/ngx_event.h \ |
| 81 | src/event/ngx_event_timer.h \ |
Igor Sysoev | 9a864bd | 2004-04-04 20:32:09 +0000 | [diff] [blame] | 82 | src/event/ngx_event_posted.h \ |
Igor Sysoev | ea17edc | 2004-03-02 21:14:37 +0000 | [diff] [blame] | 83 | src/event/ngx_event_busy_lock.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 84 | src/event/ngx_event_connect.h \ |
| 85 | src/event/ngx_event_pipe.h" |
| 86 | |
| 87 | EVENT_SRCS="src/event/ngx_event.c \ |
| 88 | src/event/ngx_event_timer.c \ |
Igor Sysoev | 9a864bd | 2004-04-04 20:32:09 +0000 | [diff] [blame] | 89 | src/event/ngx_event_posted.c \ |
Igor Sysoev | ea17edc | 2004-03-02 21:14:37 +0000 | [diff] [blame] | 90 | src/event/ngx_event_busy_lock.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 91 | src/event/ngx_event_accept.c \ |
| 92 | src/event/ngx_event_connect.c \ |
| 93 | src/event/ngx_event_pipe.c" |
| 94 | |
| 95 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 96 | SELECT_MODULE=ngx_select_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 97 | SELECT_SRCS=src/event/modules/ngx_select_module.c |
Igor Sysoev | 6ce6fcd | 2009-05-06 14:53:54 +0000 | [diff] [blame] | 98 | WIN32_SELECT_SRCS=src/event/modules/ngx_win32_select_module.c |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 99 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 100 | POLL_MODULE=ngx_poll_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 101 | POLL_SRCS=src/event/modules/ngx_poll_module.c |
| 102 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 103 | KQUEUE_MODULE=ngx_kqueue_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 104 | KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c |
| 105 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 106 | DEVPOLL_MODULE=ngx_devpoll_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 107 | DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c |
| 108 | |
Igor Sysoev | 4524fb0 | 2006-09-26 12:20:12 +0000 | [diff] [blame] | 109 | EVENTPORT_MODULE=ngx_eventport_module |
| 110 | EVENTPORT_SRCS=src/event/modules/ngx_eventport_module.c |
| 111 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 112 | EPOLL_MODULE=ngx_epoll_module |
Igor Sysoev | 10318a2 | 2004-01-29 21:45:01 +0000 | [diff] [blame] | 113 | EPOLL_SRCS=src/event/modules/ngx_epoll_module.c |
| 114 | |
Igor Sysoev | 9139cd2 | 2004-02-17 17:53:12 +0000 | [diff] [blame] | 115 | RTSIG_MODULE=ngx_rtsig_module |
| 116 | RTSIG_SRCS=src/event/modules/ngx_rtsig_module.c |
Igor Sysoev | bbcea6c | 2004-01-30 17:39:00 +0000 | [diff] [blame] | 117 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 118 | IOCP_MODULE=ngx_iocp_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 119 | IOCP_SRCS=src/event/modules/ngx_iocp_module.c |
| 120 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 121 | AIO_MODULE=ngx_aio_module |
| 122 | AIO_SRCS="src/event/modules/ngx_aio_module.c \ |
| 123 | src/os/unix/ngx_aio_read.c \ |
| 124 | src/os/unix/ngx_aio_write.c \ |
| 125 | src/os/unix/ngx_aio_read_chain.c \ |
| 126 | src/os/unix/ngx_aio_write_chain.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 127 | |
Igor Sysoev | a962506 | 2009-08-28 08:12:35 +0000 | [diff] [blame] | 128 | FILE_AIO_SRCS="src/os/unix/ngx_file_aio_read.c" |
| 129 | LINUX_AIO_SRCS="src/os/unix/ngx_linux_aio_read.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 130 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 131 | UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 132 | |
| 133 | UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \ |
| 134 | src/os/unix/ngx_time.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 135 | src/os/unix/ngx_errno.h \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 136 | src/os/unix/ngx_alloc.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 137 | src/os/unix/ngx_files.h \ |
Igor Sysoev | e0207bb | 2004-06-23 15:18:17 +0000 | [diff] [blame] | 138 | src/os/unix/ngx_channel.h \ |
Igor Sysoev | 9e58019 | 2006-02-01 18:22:15 +0000 | [diff] [blame] | 139 | src/os/unix/ngx_shmem.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 140 | src/os/unix/ngx_process.h \ |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 141 | src/os/unix/ngx_setproctitle.h \ |
Igor Sysoev | 078d1b2 | 2004-06-30 15:30:41 +0000 | [diff] [blame] | 142 | src/os/unix/ngx_atomic.h \ |
Igor Sysoev | 7845223 | 2005-10-12 13:50:36 +0000 | [diff] [blame] | 143 | src/os/unix/ngx_gcc_atomic_x86.h \ |
Igor Sysoev | b54698b | 2004-02-23 20:57:12 +0000 | [diff] [blame] | 144 | src/os/unix/ngx_thread.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 145 | src/os/unix/ngx_socket.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 146 | src/os/unix/ngx_os.h \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 147 | src/os/unix/ngx_user.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 148 | src/os/unix/ngx_process_cycle.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 149 | |
Igor Sysoev | 7845223 | 2005-10-12 13:50:36 +0000 | [diff] [blame] | 150 | # add to UNIX_DEPS |
| 151 | # src/os/unix/ngx_gcc_atomic_amd64.h \ |
| 152 | # src/os/unix/ngx_gcc_atomic_sparc64.h \ |
| 153 | # src/os/unix/ngx_gcc_atomic_ppc.h \ |
| 154 | # src/os/unix/ngx_sunpro_atomic_sparc64.h \ |
| 155 | # src/os/unix/ngx_sunpro_x86.il \ |
| 156 | # src/os/unix/ngx_sunpro_amd64.il \ |
| 157 | # src/os/unix/ngx_sunpro_sparc64.il \ |
| 158 | |
| 159 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 160 | UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \ |
| 161 | src/os/unix/ngx_time.c \ |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 162 | src/os/unix/ngx_errno.c \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 163 | src/os/unix/ngx_alloc.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 164 | src/os/unix/ngx_files.c \ |
| 165 | src/os/unix/ngx_socket.c \ |
| 166 | src/os/unix/ngx_recv.c \ |
| 167 | src/os/unix/ngx_readv_chain.c \ |
Igor Sysoev | e67d461 | 2007-12-03 16:46:46 +0000 | [diff] [blame] | 168 | src/os/unix/ngx_udp_recv.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 169 | src/os/unix/ngx_send.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 170 | src/os/unix/ngx_writev_chain.c \ |
Igor Sysoev | e0207bb | 2004-06-23 15:18:17 +0000 | [diff] [blame] | 171 | src/os/unix/ngx_channel.c \ |
Igor Sysoev | 9e58019 | 2006-02-01 18:22:15 +0000 | [diff] [blame] | 172 | src/os/unix/ngx_shmem.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 173 | src/os/unix/ngx_process.c \ |
Igor Sysoev | 415b1ce | 2004-06-17 17:18:53 +0000 | [diff] [blame] | 174 | src/os/unix/ngx_daemon.c \ |
Igor Sysoev | 924bd79 | 2004-10-11 15:07:03 +0000 | [diff] [blame] | 175 | src/os/unix/ngx_setproctitle.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 176 | src/os/unix/ngx_posix_init.c \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 177 | src/os/unix/ngx_user.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 178 | src/os/unix/ngx_process_cycle.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 179 | |
Igor Sysoev | d09f7a1 | 2004-06-15 17:47:16 +0000 | [diff] [blame] | 180 | POSIX_DEPS=src/os/unix/ngx_posix_config.h |
| 181 | |
Igor Sysoev | dc3bbea | 2007-12-22 10:32:00 +0000 | [diff] [blame] | 182 | FREEBSD_DEPS="src/os/unix/ngx_freebsd_config.h src/os/unix/ngx_freebsd.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 183 | FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c |
| 184 | FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c |
Igor Sysoev | 32fcd5c | 2004-07-05 06:55:54 +0000 | [diff] [blame] | 185 | FREEBSD_RFORK_DEPS="src/os/unix/ngx_freebsd_rfork_thread.h" |
Igor Sysoev | b54698b | 2004-02-23 20:57:12 +0000 | [diff] [blame] | 186 | FREEBSD_RFORK_SRCS="src/os/unix/ngx_freebsd_rfork_thread.c" |
Igor Sysoev | 48fef66 | 2004-02-24 17:31:46 +0000 | [diff] [blame] | 187 | FREEBSD_RFORK_THREAD_SRCS="src/os/unix/rfork_thread.S" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 188 | |
Igor Sysoev | 32fcd5c | 2004-07-05 06:55:54 +0000 | [diff] [blame] | 189 | PTHREAD_SRCS="src/os/unix/ngx_pthread_thread.c" |
| 190 | |
Igor Sysoev | dc3bbea | 2007-12-22 10:32:00 +0000 | [diff] [blame] | 191 | LINUX_DEPS="src/os/unix/ngx_linux_config.h src/os/unix/ngx_linux.h" |
Igor Sysoev | c0f8d91 | 2003-11-26 15:42:18 +0000 | [diff] [blame] | 192 | LINUX_SRCS=src/os/unix/ngx_linux_init.c |
| 193 | LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c |
| 194 | |
| 195 | |
Igor Sysoev | dc3bbea | 2007-12-22 10:32:00 +0000 | [diff] [blame] | 196 | SOLARIS_DEPS="src/os/unix/ngx_solaris_config.h src/os/unix/ngx_solaris.h" |
Igor Sysoev | c0f8d91 | 2003-11-26 15:42:18 +0000 | [diff] [blame] | 197 | SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c |
Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 198 | SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c |
Igor Sysoev | c0f8d91 | 2003-11-26 15:42:18 +0000 | [diff] [blame] | 199 | |
| 200 | |
Igor Sysoev | 7494490 | 2008-07-30 12:18:07 +0000 | [diff] [blame] | 201 | DARWIN_DEPS="src/os/unix/ngx_darwin_config.h src/os/unix/ngx_darwin.h" |
| 202 | DARWIN_SRCS=src/os/unix/ngx_darwin_init.c |
| 203 | DARWIN_SENDFILE_SRCS=src/os/unix/ngx_darwin_sendfile_chain.c |
| 204 | |
| 205 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 206 | WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 207 | |
| 208 | WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \ |
| 209 | src/os/win32/ngx_win32_config.h \ |
| 210 | src/os/win32/ngx_time.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 211 | src/os/win32/ngx_errno.h \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 212 | src/os/win32/ngx_alloc.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 213 | src/os/win32/ngx_files.h \ |
Igor Sysoev | 9e58019 | 2006-02-01 18:22:15 +0000 | [diff] [blame] | 214 | src/os/win32/ngx_shmem.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 215 | src/os/win32/ngx_process.h \ |
Igor Sysoev | 078d1b2 | 2004-06-30 15:30:41 +0000 | [diff] [blame] | 216 | src/os/win32/ngx_atomic.h \ |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 217 | src/os/win32/ngx_thread.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 218 | src/os/win32/ngx_socket.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 219 | src/os/win32/ngx_os.h \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 220 | src/os/win32/ngx_user.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 221 | src/os/win32/ngx_process_cycle.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 222 | |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 223 | WIN32_CONFIG=src/os/win32/ngx_win32_config.h |
| 224 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 225 | WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \ |
| 226 | src/os/win32/ngx_errno.c \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 227 | src/os/win32/ngx_alloc.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 228 | src/os/win32/ngx_files.c \ |
Igor Sysoev | 9e58019 | 2006-02-01 18:22:15 +0000 | [diff] [blame] | 229 | src/os/win32/ngx_shmem.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 230 | src/os/win32/ngx_time.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 231 | src/os/win32/ngx_process.c \ |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 232 | src/os/win32/ngx_thread.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 233 | src/os/win32/ngx_socket.c \ |
| 234 | src/os/win32/ngx_wsarecv.c \ |
| 235 | src/os/win32/ngx_wsarecv_chain.c \ |
Igor Sysoev | e67d461 | 2007-12-03 16:46:46 +0000 | [diff] [blame] | 236 | src/os/win32/ngx_udp_wsarecv.c \ |
Igor Sysoev | bd91999 | 2009-04-20 06:08:47 +0000 | [diff] [blame] | 237 | src/os/win32/ngx_wsasend.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 238 | src/os/win32/ngx_wsasend_chain.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 239 | src/os/win32/ngx_win32_init.c \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 240 | src/os/win32/ngx_user.c \ |
Igor Sysoev | bd91999 | 2009-04-20 06:08:47 +0000 | [diff] [blame] | 241 | src/os/win32/ngx_event_log.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 242 | src/os/win32/ngx_process_cycle.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 243 | src/event/ngx_event_acceptex.c" |
| 244 | |
Igor Sysoev | bd91999 | 2009-04-20 06:08:47 +0000 | [diff] [blame] | 245 | NGX_WIN32_ICONS="src/os/win32/nginx.ico" |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 246 | NGX_WIN32_RC="src/os/win32/nginx.rc" |
| 247 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 248 | |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 249 | # the http modules that have their logging formats |
| 250 | # must be after ngx_http_log_module |
| 251 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 252 | HTTP_MODULES="ngx_http_module \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 253 | ngx_http_core_module \ |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 254 | ngx_http_log_module \ |
| 255 | ngx_http_upstream_module" |
Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 256 | |
Igor Sysoev | 7823cc3 | 2004-07-14 16:01:42 +0000 | [diff] [blame] | 257 | HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module" |
| 258 | HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 259 | |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 260 | HTTP_POSTPONE_FILTER_MODULE=ngx_http_postpone_filter_module |
| 261 | HTTP_COPY_FILTER_MODULE=ngx_http_copy_filter_module |
| 262 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 263 | HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module |
Igor Sysoev | 3f4685f | 2004-04-25 20:13:21 +0000 | [diff] [blame] | 264 | HTTP_HEADERS_FILTER_MODULE=ngx_http_headers_filter_module |
Igor Sysoev | 31f7f6a | 2004-05-12 05:37:55 +0000 | [diff] [blame] | 265 | |
| 266 | HTTP_RANGE_HEADER_FILTER_MODULE=ngx_http_range_header_filter_module |
| 267 | HTTP_RANGE_BODY_FILTER_MODULE=ngx_http_range_body_filter_module |
| 268 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 269 | HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module |
| 270 | |
| 271 | HTTP_STATIC_MODULE=ngx_http_static_module |
| 272 | HTTP_INDEX_MODULE=ngx_http_index_module |
| 273 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 274 | HTTP_INCS="src/http src/http/modules" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 275 | |
| 276 | HTTP_DEPS="src/http/ngx_http.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 277 | src/http/ngx_http_request.h \ |
| 278 | src/http/ngx_http_config.h \ |
| 279 | src/http/ngx_http_core_module.h \ |
| 280 | src/http/ngx_http_cache.h \ |
Igor Sysoev | 8184d1b | 2005-03-04 14:06:57 +0000 | [diff] [blame] | 281 | src/http/ngx_http_variables.h \ |
Igor Sysoev | 02f742b | 2005-04-08 15:18:55 +0000 | [diff] [blame] | 282 | src/http/ngx_http_script.h \ |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 283 | src/http/ngx_http_upstream.h \ |
Igor Sysoev | 3d2fd18 | 2006-12-04 16:46:13 +0000 | [diff] [blame] | 284 | src/http/ngx_http_upstream_round_robin.h \ |
Igor Sysoev | a8c54c0 | 2006-11-27 14:46:15 +0000 | [diff] [blame] | 285 | src/http/ngx_http_busy_lock.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 286 | |
| 287 | HTTP_SRCS="src/http/ngx_http.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 288 | src/http/ngx_http_core_module.c \ |
| 289 | src/http/ngx_http_special_response.c \ |
| 290 | src/http/ngx_http_request.c \ |
| 291 | src/http/ngx_http_parse.c \ |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 292 | src/http/ngx_http_header_filter_module.c \ |
| 293 | src/http/ngx_http_write_filter_module.c \ |
| 294 | src/http/ngx_http_copy_filter_module.c \ |
Igor Sysoev | 9ac946b | 2005-10-24 15:09:41 +0000 | [diff] [blame] | 295 | src/http/modules/ngx_http_log_module.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 296 | src/http/ngx_http_request_body.c \ |
Igor Sysoev | 8184d1b | 2005-03-04 14:06:57 +0000 | [diff] [blame] | 297 | src/http/ngx_http_variables.c \ |
Igor Sysoev | 02f742b | 2005-04-08 15:18:55 +0000 | [diff] [blame] | 298 | src/http/ngx_http_script.c \ |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 299 | src/http/ngx_http_upstream.c \ |
Igor Sysoev | 3d2fd18 | 2006-12-04 16:46:13 +0000 | [diff] [blame] | 300 | src/http/ngx_http_upstream_round_robin.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 301 | src/http/ngx_http_parse_time.c \ |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 302 | src/http/modules/ngx_http_static_module.c \ |
| 303 | src/http/modules/ngx_http_index_module.c \ |
| 304 | src/http/modules/ngx_http_chunked_filter_module.c \ |
| 305 | src/http/modules/ngx_http_range_filter_module.c \ |
| 306 | src/http/modules/ngx_http_headers_filter_module.c \ |
| 307 | src/http/modules/ngx_http_not_modified_filter_module.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 308 | |
Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 309 | # STUB |
| 310 | HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c" |
| 311 | |
Igor Sysoev | 6b0de80 | 2008-03-12 21:10:48 +0000 | [diff] [blame] | 312 | HTTP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 313 | |
Igor Sysoev | 6b0de80 | 2008-03-12 21:10:48 +0000 | [diff] [blame] | 314 | HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c |
Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 315 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 316 | |
Igor Sysoev | 3d5c0fc | 2004-06-22 16:43:09 +0000 | [diff] [blame] | 317 | HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 318 | HTTP_CHARSET_SRCS=src/http/modules/ngx_http_charset_filter_module.c |
Igor Sysoev | 3d5c0fc | 2004-06-22 16:43:09 +0000 | [diff] [blame] | 319 | |
| 320 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 321 | HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 322 | HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter_module.c |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 323 | |
| 324 | |
Igor Sysoev | e04084c | 2004-01-26 08:52:49 +0000 | [diff] [blame] | 325 | HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module |
Igor Sysoev | df3254a | 2006-01-11 15:26:57 +0000 | [diff] [blame] | 326 | HTTP_SSI_DEPS=src/http/modules/ngx_http_ssi_filter_module.h |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 327 | HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter_module.c |
Igor Sysoev | e04084c | 2004-01-26 08:52:49 +0000 | [diff] [blame] | 328 | |
| 329 | |
Igor Sysoev | 1ae389d | 2008-08-04 14:48:15 +0000 | [diff] [blame] | 330 | HTTP_XSLT_FILTER_MODULE=ngx_http_xslt_filter_module |
| 331 | HTTP_XSLT_SRCS=src/http/modules/ngx_http_xslt_filter_module.c |
| 332 | |
| 333 | |
Igor Sysoev | e2ada61 | 2009-05-01 18:42:09 +0000 | [diff] [blame] | 334 | HTTP_IMAGE_FILTER_MODULE=ngx_http_image_filter_module |
| 335 | HTTP_IMAGE_SRCS=src/http/modules/ngx_http_image_filter_module.c |
| 336 | |
| 337 | |
Igor Sysoev | d9bb8e3 | 2007-04-19 17:54:23 +0000 | [diff] [blame] | 338 | HTTP_SUB_FILTER_MODULE=ngx_http_sub_filter_module |
| 339 | HTTP_SUB_SRCS=src/http/modules/ngx_http_sub_filter_module.c |
| 340 | |
| 341 | |
Igor Sysoev | a7c4a2a | 2004-08-29 03:55:41 +0000 | [diff] [blame] | 342 | HTTP_USERID_FILTER_MODULE=ngx_http_userid_filter_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 343 | HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_filter_module.c |
Igor Sysoev | a7c4a2a | 2004-08-29 03:55:41 +0000 | [diff] [blame] | 344 | |
| 345 | |
Igor Sysoev | 09c684b | 2005-11-09 17:25:55 +0000 | [diff] [blame] | 346 | HTTP_REALIP_MODULE=ngx_http_realip_module |
| 347 | HTTP_REALIP_SRCS=src/http/modules/ngx_http_realip_module.c |
| 348 | |
| 349 | |
Igor Sysoev | 6d16e1e | 2006-04-05 13:40:54 +0000 | [diff] [blame] | 350 | HTTP_ADDITION_FILTER_MODULE=ngx_http_addition_filter_module |
| 351 | HTTP_ADDITION_SRCS=src/http/modules/ngx_http_addition_filter_module.c |
| 352 | |
| 353 | |
Igor Sysoev | 8a2b2fb | 2006-04-14 09:53:38 +0000 | [diff] [blame] | 354 | HTTP_DAV_MODULE=ngx_http_dav_module |
| 355 | HTTP_DAV_SRCS=src/http/modules/ngx_http_dav_module.c |
| 356 | |
| 357 | |
Igor Sysoev | 59f3aa3 | 2004-06-24 16:07:04 +0000 | [diff] [blame] | 358 | HTTP_ACCESS_MODULE=ngx_http_access_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 359 | HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_module.c |
Igor Sysoev | 59f3aa3 | 2004-06-24 16:07:04 +0000 | [diff] [blame] | 360 | |
| 361 | |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 362 | HTTP_AUTH_BASIC_MODULE=ngx_http_auth_basic_module |
| 363 | HTTP_AUTH_BASIC_SRCS=src/http/modules/ngx_http_auth_basic_module.c |
| 364 | |
| 365 | |
Igor Sysoev | 723e6cc | 2004-10-25 15:29:23 +0000 | [diff] [blame] | 366 | HTTP_AUTOINDEX_MODULE=ngx_http_autoindex_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 367 | HTTP_AUTOINDEX_SRCS=src/http/modules/ngx_http_autoindex_module.c |
Igor Sysoev | 723e6cc | 2004-10-25 15:29:23 +0000 | [diff] [blame] | 368 | |
| 369 | |
Igor Sysoev | 2e2b81d | 2008-09-05 15:45:55 +0000 | [diff] [blame] | 370 | HTTP_RANDOM_INDEX_MODULE=ngx_http_random_index_module |
| 371 | HTTP_RANDOM_INDEX_SRCS=src/http/modules/ngx_http_random_index_module.c |
| 372 | |
| 373 | |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 374 | HTTP_STATUS_MODULE=ngx_http_status_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 375 | HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_module.c |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 376 | |
| 377 | |
Igor Sysoev | 805d9db | 2005-02-03 19:33:37 +0000 | [diff] [blame] | 378 | HTTP_GEO_MODULE=ngx_http_geo_module |
| 379 | HTTP_GEO_SRCS=src/http/modules/ngx_http_geo_module.c |
| 380 | |
| 381 | |
Igor Sysoev | bc10147 | 2009-07-20 07:10:43 +0000 | [diff] [blame] | 382 | HTTP_GEOIP_MODULE=ngx_http_geoip_module |
| 383 | HTTP_GEOIP_SRCS=src/http/modules/ngx_http_geoip_module.c |
| 384 | |
| 385 | |
Igor Sysoev | 2402502 | 2005-12-16 15:07:08 +0000 | [diff] [blame] | 386 | HTTP_MAP_MODULE=ngx_http_map_module |
| 387 | HTTP_MAP_SRCS=src/http/modules/ngx_http_map_module.c |
| 388 | |
| 389 | |
Igor Sysoev | fadd4bd | 2010-05-14 09:02:10 +0000 | [diff] [blame] | 390 | HTTP_SPLIT_CLIENTS_MODULE=ngx_http_split_clients_module |
| 391 | HTTP_SPLIT_CLIENTS_SRCS=src/http/modules/ngx_http_split_clients_module.c |
| 392 | |
| 393 | |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 394 | HTTP_REFERER_MODULE=ngx_http_referer_module |
| 395 | HTTP_REFERER_SRCS=src/http/modules/ngx_http_referer_module.c |
| 396 | |
| 397 | |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 398 | HTTP_REWRITE_MODULE=ngx_http_rewrite_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 399 | HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_module.c |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 400 | |
| 401 | |
Igor Sysoev | f38e046 | 2004-07-16 17:11:43 +0000 | [diff] [blame] | 402 | HTTP_SSL_MODULE=ngx_http_ssl_module |
| 403 | HTTP_SSL_DEPS=src/http/modules/ngx_http_ssl_module.h |
| 404 | HTTP_SSL_SRCS=src/http/modules/ngx_http_ssl_module.c |
| 405 | |
| 406 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 407 | HTTP_PROXY_MODULE=ngx_http_proxy_module |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 408 | HTTP_PROXY_SRCS=src/http/modules/ngx_http_proxy_module.c |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 409 | |
| 410 | |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 411 | HTTP_FASTCGI_MODULE=ngx_http_fastcgi_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 412 | HTTP_FASTCGI_SRCS=src/http/modules/ngx_http_fastcgi_module.c |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 413 | |
| 414 | |
Igor Sysoev | 3a881d3 | 2010-06-01 15:53:11 +0000 | [diff] [blame] | 415 | HTTP_UWSGI_MODULE=ngx_http_uwsgi_module |
| 416 | HTTP_UWSGI_SRCS=src/http/modules/ngx_http_uwsgi_module.c |
| 417 | |
| 418 | |
Igor Sysoev | ee5f9e5 | 2010-06-18 15:51:14 +0000 | [diff] [blame] | 419 | HTTP_SCGI_MODULE=ngx_http_scgi_module |
| 420 | HTTP_SCGI_SRCS=src/http/modules/ngx_http_scgi_module.c |
| 421 | |
| 422 | |
Igor Sysoev | 9bf11aa | 2006-01-16 14:56:53 +0000 | [diff] [blame] | 423 | HTTP_PERL_MODULE=ngx_http_perl_module |
| 424 | HTTP_PERL_INCS=src/http/modules/perl |
| 425 | HTTP_PERL_DEPS=src/http/modules/perl/ngx_http_perl_module.h |
| 426 | HTTP_PERL_SRCS=src/http/modules/perl/ngx_http_perl_module.c |
| 427 | |
| 428 | |
Igor Sysoev | c31a9bb | 2005-11-26 10:11:11 +0000 | [diff] [blame] | 429 | HTTP_MEMCACHED_MODULE=ngx_http_memcached_module |
| 430 | HTTP_MEMCACHED_SRCS=src/http/modules/ngx_http_memcached_module.c |
| 431 | |
| 432 | |
Igor Sysoev | 138e384 | 2007-01-06 18:52:46 +0000 | [diff] [blame] | 433 | HTTP_LIMIT_ZONE_MODULE=ngx_http_limit_zone_module |
| 434 | HTTP_LIMIT_ZONE_SRCS=src/http/modules/ngx_http_limit_zone_module.c |
| 435 | |
| 436 | |
Igor Sysoev | abe378e | 2008-11-10 15:22:33 +0000 | [diff] [blame] | 437 | HTTP_LIMIT_REQ_MODULE=ngx_http_limit_req_module |
| 438 | HTTP_LIMIT_REQ_SRCS=src/http/modules/ngx_http_limit_req_module.c |
| 439 | |
| 440 | |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 441 | HTTP_EMPTY_GIF_MODULE=ngx_http_empty_gif_module |
| 442 | HTTP_EMPTY_GIF_SRCS=src/http/modules/ngx_http_empty_gif_module.c |
| 443 | |
| 444 | |
Igor Sysoev | 3383ff6 | 2006-09-18 12:25:07 +0000 | [diff] [blame] | 445 | HTTP_BROWSER_MODULE=ngx_http_browser_module |
| 446 | HTTP_BROWSER_SRCS=src/http/modules/ngx_http_browser_module.c |
| 447 | |
| 448 | |
Igor Sysoev | e52991e | 2008-09-27 13:22:10 +0000 | [diff] [blame] | 449 | HTTP_SECURE_LINK_MODULE=ngx_http_secure_link_module |
| 450 | HTTP_SECURE_LINK_SRCS=src/http/modules/ngx_http_secure_link_module.c |
| 451 | |
| 452 | |
Igor Sysoev | 4985109 | 2009-11-16 12:20:00 +0000 | [diff] [blame] | 453 | HTTP_DEGRADATION_MODULE=ngx_http_degradation_module |
| 454 | HTTP_DEGRADATION_SRCS=src/http/modules/ngx_http_degradation_module.c |
| 455 | |
| 456 | |
Igor Sysoev | b505006 | 2006-10-09 14:17:36 +0000 | [diff] [blame] | 457 | HTTP_FLV_MODULE=ngx_http_flv_module |
| 458 | HTTP_FLV_SRCS=src/http/modules/ngx_http_flv_module.c |
| 459 | |
| 460 | |
Igor Sysoev | c16b005 | 2007-12-27 14:21:59 +0000 | [diff] [blame] | 461 | HTTP_GZIP_STATIC_MODULE=ngx_http_gzip_static_module |
| 462 | HTTP_GZIP_STATIC_SRCS=src/http/modules/ngx_http_gzip_static_module.c |
| 463 | |
| 464 | |
Igor Sysoev | 3d2fd18 | 2006-12-04 16:46:13 +0000 | [diff] [blame] | 465 | HTTP_UPSTREAM_IP_HASH_MODULE=ngx_http_upstream_ip_hash_module |
| 466 | HTTP_UPSTREAM_IP_HASH_SRCS=src/http/modules/ngx_http_upstream_ip_hash_module.c |
| 467 | |
| 468 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 469 | MAIL_INCS="src/mail" |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 470 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 471 | MAIL_DEPS="src/mail/ngx_mail.h" |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 472 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 473 | MAIL_MODULES="ngx_mail_module ngx_mail_core_module" |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 474 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 475 | MAIL_SRCS="src/mail/ngx_mail.c \ |
| 476 | src/mail/ngx_mail_core_module.c \ |
| 477 | src/mail/ngx_mail_handler.c \ |
| 478 | src/mail/ngx_mail_parse.c" |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 479 | |
Igor Sysoev | 4871408 | 2007-09-15 16:51:16 +0000 | [diff] [blame] | 480 | MAIL_POP3_MODULE="ngx_mail_pop3_module" |
| 481 | MAIL_POP3_DEPS="src/mail/ngx_mail_pop3_module.h" |
| 482 | MAIL_POP3_SRCS="src/mail/ngx_mail_pop3_module.c \ |
| 483 | src/mail/ngx_mail_pop3_handler.c" |
| 484 | |
| 485 | MAIL_IMAP_MODULE="ngx_mail_imap_module" |
| 486 | MAIL_IMAP_DEPS="src/mail/ngx_mail_imap_module.h" |
| 487 | MAIL_IMAP_SRCS="src/mail/ngx_mail_imap_module.c \ |
| 488 | src/mail/ngx_mail_imap_handler.c" |
| 489 | |
| 490 | MAIL_SMTP_MODULE="ngx_mail_smtp_module" |
| 491 | MAIL_SMTP_DEPS="src/mail/ngx_mail_smtp_module.h" |
| 492 | MAIL_SMTP_SRCS="src/mail/ngx_mail_smtp_module.c \ |
| 493 | src/mail/ngx_mail_smtp_handler.c" |
| 494 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 495 | MAIL_SSL_MODULE="ngx_mail_ssl_module" |
| 496 | MAIL_SSL_DEPS="src/mail/ngx_mail_ssl_module.h" |
| 497 | MAIL_SSL_SRCS="src/mail/ngx_mail_ssl_module.c" |
Igor Sysoev | ceb9929 | 2005-09-06 16:09:32 +0000 | [diff] [blame] | 498 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 499 | MAIL_AUTH_HTTP_MODULE="ngx_mail_auth_http_module" |
| 500 | MAIL_AUTH_HTTP_SRCS="src/mail/ngx_mail_auth_http_module.c" |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 501 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 502 | MAIL_PROXY_MODULE="ngx_mail_proxy_module" |
| 503 | MAIL_PROXY_SRCS="src/mail/ngx_mail_proxy_module.c" |
Igor Sysoev | 85dd8fc | 2008-03-18 10:36:27 +0000 | [diff] [blame] | 504 | |
| 505 | NGX_GOOGLE_PERFTOOLS_MODULE=ngx_google_perftools_module |
| 506 | NGX_GOOGLE_PERFTOOLS_SRCS=src/misc/ngx_google_perftools_module.c |
| 507 | |
Igor Sysoev | e24b57a | 2008-08-05 19:32:50 +0000 | [diff] [blame] | 508 | NGX_CPP_TEST_SRCS=src/misc/ngx_cpp_test_module.cpp |