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 | d92bee5 | 2007-09-01 12:11:21 +0000 | [diff] [blame] | 36 | src/core/ngx_open_file_cache.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 37 | src/core/ngx_garbage_collector.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 38 | |
Igor Sysoev | 55168f6 | 2004-09-28 20:09:22 +0000 | [diff] [blame] | 39 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 40 | CORE_SRCS="src/core/nginx.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 41 | src/core/ngx_log.c \ |
| 42 | src/core/ngx_palloc.c \ |
| 43 | src/core/ngx_array.c \ |
| 44 | src/core/ngx_list.c \ |
Igor Sysoev | 02f742b | 2005-04-08 15:18:55 +0000 | [diff] [blame] | 45 | src/core/ngx_hash.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 46 | src/core/ngx_buf.c \ |
| 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 | d92bee5 | 2007-09-01 12:11:21 +0000 | [diff] [blame] | 64 | src/core/ngx_open_file_cache.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 65 | src/core/ngx_garbage_collector.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 66 | |
| 67 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 68 | REGEX_DEPS=src/core/ngx_regex.h |
| 69 | REGEX_SRCS=src/core/ngx_regex.c |
Igor Sysoev | e89c458 | 2003-12-19 08:15:11 +0000 | [diff] [blame] | 70 | |
| 71 | |
Igor Sysoev | e573380 | 2005-09-08 14:36:09 +0000 | [diff] [blame] | 72 | OPENSSL_MODULE=ngx_openssl_module |
| 73 | OPENSSL_DEPS=src/event/ngx_event_openssl.h |
| 74 | OPENSSL_SRCS=src/event/ngx_event_openssl.c |
| 75 | |
| 76 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 77 | EVENT_MODULES="ngx_events_module ngx_event_core_module" |
| 78 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 79 | EVENT_INCS="src/event src/event/modules" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 80 | |
| 81 | EVENT_DEPS="src/event/ngx_event.h \ |
| 82 | src/event/ngx_event_timer.h \ |
Igor Sysoev | 9a864bd | 2004-04-04 20:32:09 +0000 | [diff] [blame] | 83 | src/event/ngx_event_posted.h \ |
Igor Sysoev | ea17edc | 2004-03-02 21:14:37 +0000 | [diff] [blame] | 84 | src/event/ngx_event_busy_lock.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 85 | src/event/ngx_event_connect.h \ |
| 86 | src/event/ngx_event_pipe.h" |
| 87 | |
| 88 | EVENT_SRCS="src/event/ngx_event.c \ |
| 89 | src/event/ngx_event_timer.c \ |
Igor Sysoev | 9a864bd | 2004-04-04 20:32:09 +0000 | [diff] [blame] | 90 | src/event/ngx_event_posted.c \ |
Igor Sysoev | ea17edc | 2004-03-02 21:14:37 +0000 | [diff] [blame] | 91 | src/event/ngx_event_busy_lock.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 92 | src/event/ngx_event_accept.c \ |
| 93 | src/event/ngx_event_connect.c \ |
| 94 | src/event/ngx_event_pipe.c" |
| 95 | |
| 96 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 97 | SELECT_MODULE=ngx_select_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 98 | SELECT_SRCS=src/event/modules/ngx_select_module.c |
| 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 | |
| 128 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 129 | UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 130 | |
| 131 | UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \ |
| 132 | src/os/unix/ngx_time.h \ |
| 133 | src/os/unix/ngx_types.h \ |
| 134 | src/os/unix/ngx_errno.h \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 135 | src/os/unix/ngx_alloc.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 136 | src/os/unix/ngx_files.h \ |
Igor Sysoev | e0207bb | 2004-06-23 15:18:17 +0000 | [diff] [blame] | 137 | src/os/unix/ngx_channel.h \ |
Igor Sysoev | 9e58019 | 2006-02-01 18:22:15 +0000 | [diff] [blame] | 138 | src/os/unix/ngx_shmem.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 139 | src/os/unix/ngx_process.h \ |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 140 | src/os/unix/ngx_setproctitle.h \ |
Igor Sysoev | 078d1b2 | 2004-06-30 15:30:41 +0000 | [diff] [blame] | 141 | src/os/unix/ngx_atomic.h \ |
Igor Sysoev | 7845223 | 2005-10-12 13:50:36 +0000 | [diff] [blame] | 142 | src/os/unix/ngx_gcc_atomic_x86.h \ |
Igor Sysoev | b54698b | 2004-02-23 20:57:12 +0000 | [diff] [blame] | 143 | src/os/unix/ngx_thread.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 144 | src/os/unix/ngx_socket.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 145 | src/os/unix/ngx_os.h \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 146 | src/os/unix/ngx_user.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 147 | src/os/unix/ngx_process_cycle.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 148 | |
Igor Sysoev | 7845223 | 2005-10-12 13:50:36 +0000 | [diff] [blame] | 149 | # add to UNIX_DEPS |
| 150 | # src/os/unix/ngx_gcc_atomic_amd64.h \ |
| 151 | # src/os/unix/ngx_gcc_atomic_sparc64.h \ |
| 152 | # src/os/unix/ngx_gcc_atomic_ppc.h \ |
| 153 | # src/os/unix/ngx_sunpro_atomic_sparc64.h \ |
| 154 | # src/os/unix/ngx_sunpro_x86.il \ |
| 155 | # src/os/unix/ngx_sunpro_amd64.il \ |
| 156 | # src/os/unix/ngx_sunpro_sparc64.il \ |
| 157 | |
| 158 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 159 | UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \ |
| 160 | src/os/unix/ngx_time.c \ |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 161 | src/os/unix/ngx_errno.c \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 162 | src/os/unix/ngx_alloc.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 163 | src/os/unix/ngx_files.c \ |
| 164 | src/os/unix/ngx_socket.c \ |
| 165 | src/os/unix/ngx_recv.c \ |
| 166 | src/os/unix/ngx_readv_chain.c \ |
Igor Sysoev | e67d461 | 2007-12-03 16:46:46 +0000 | [diff] [blame] | 167 | src/os/unix/ngx_udp_recv.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 168 | src/os/unix/ngx_send.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 169 | src/os/unix/ngx_writev_chain.c \ |
Igor Sysoev | e0207bb | 2004-06-23 15:18:17 +0000 | [diff] [blame] | 170 | src/os/unix/ngx_channel.c \ |
Igor Sysoev | 9e58019 | 2006-02-01 18:22:15 +0000 | [diff] [blame] | 171 | src/os/unix/ngx_shmem.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 172 | src/os/unix/ngx_process.c \ |
Igor Sysoev | 415b1ce | 2004-06-17 17:18:53 +0000 | [diff] [blame] | 173 | src/os/unix/ngx_daemon.c \ |
Igor Sysoev | 924bd79 | 2004-10-11 15:07:03 +0000 | [diff] [blame] | 174 | src/os/unix/ngx_setproctitle.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 175 | src/os/unix/ngx_posix_init.c \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 176 | src/os/unix/ngx_user.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 177 | src/os/unix/ngx_process_cycle.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 178 | |
Igor Sysoev | d09f7a1 | 2004-06-15 17:47:16 +0000 | [diff] [blame] | 179 | POSIX_DEPS=src/os/unix/ngx_posix_config.h |
| 180 | |
Igor Sysoev | dc3bbea | 2007-12-22 10:32:00 +0000 | [diff] [blame] | 181 | 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] | 182 | FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c |
| 183 | FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c |
Igor Sysoev | 32fcd5c | 2004-07-05 06:55:54 +0000 | [diff] [blame] | 184 | FREEBSD_RFORK_DEPS="src/os/unix/ngx_freebsd_rfork_thread.h" |
Igor Sysoev | b54698b | 2004-02-23 20:57:12 +0000 | [diff] [blame] | 185 | FREEBSD_RFORK_SRCS="src/os/unix/ngx_freebsd_rfork_thread.c" |
Igor Sysoev | 48fef66 | 2004-02-24 17:31:46 +0000 | [diff] [blame] | 186 | FREEBSD_RFORK_THREAD_SRCS="src/os/unix/rfork_thread.S" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 187 | |
Igor Sysoev | 32fcd5c | 2004-07-05 06:55:54 +0000 | [diff] [blame] | 188 | PTHREAD_SRCS="src/os/unix/ngx_pthread_thread.c" |
| 189 | |
Igor Sysoev | dc3bbea | 2007-12-22 10:32:00 +0000 | [diff] [blame] | 190 | 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] | 191 | LINUX_SRCS=src/os/unix/ngx_linux_init.c |
| 192 | LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c |
| 193 | |
| 194 | |
Igor Sysoev | dc3bbea | 2007-12-22 10:32:00 +0000 | [diff] [blame] | 195 | 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] | 196 | SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c |
Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 197 | SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c |
Igor Sysoev | c0f8d91 | 2003-11-26 15:42:18 +0000 | [diff] [blame] | 198 | |
| 199 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 200 | WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 201 | |
| 202 | WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \ |
| 203 | src/os/win32/ngx_win32_config.h \ |
| 204 | src/os/win32/ngx_time.h \ |
| 205 | src/os/win32/ngx_types.h \ |
| 206 | src/os/win32/ngx_errno.h \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 207 | src/os/win32/ngx_alloc.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 208 | src/os/win32/ngx_files.h \ |
Igor Sysoev | 9e58019 | 2006-02-01 18:22:15 +0000 | [diff] [blame] | 209 | src/os/win32/ngx_shmem.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 210 | src/os/win32/ngx_process.h \ |
Igor Sysoev | 078d1b2 | 2004-06-30 15:30:41 +0000 | [diff] [blame] | 211 | src/os/win32/ngx_atomic.h \ |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 212 | src/os/win32/ngx_thread.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 213 | src/os/win32/ngx_socket.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 214 | src/os/win32/ngx_os.h \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 215 | src/os/win32/ngx_user.h \ |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 216 | src/os/win32/ngx_gui.h \ |
Igor Sysoev | e5a222c | 2005-01-25 12:27:35 +0000 | [diff] [blame] | 217 | src/os/win32/ngx_gui_resources.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 218 | src/os/win32/ngx_process_cycle.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 219 | |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 220 | WIN32_CONFIG=src/os/win32/ngx_win32_config.h |
| 221 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 222 | WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \ |
| 223 | src/os/win32/ngx_errno.c \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 224 | src/os/win32/ngx_alloc.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 225 | src/os/win32/ngx_files.c \ |
Igor Sysoev | 9e58019 | 2006-02-01 18:22:15 +0000 | [diff] [blame] | 226 | src/os/win32/ngx_shmem.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 227 | src/os/win32/ngx_time.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 228 | src/os/win32/ngx_process.c \ |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 229 | src/os/win32/ngx_thread.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 230 | src/os/win32/ngx_socket.c \ |
| 231 | src/os/win32/ngx_wsarecv.c \ |
| 232 | src/os/win32/ngx_wsarecv_chain.c \ |
Igor Sysoev | e67d461 | 2007-12-03 16:46:46 +0000 | [diff] [blame] | 233 | src/os/win32/ngx_udp_wsarecv.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 234 | src/os/win32/ngx_wsasend_chain.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 235 | src/os/win32/ngx_win32_init.c \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 236 | src/os/win32/ngx_user.c \ |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 237 | src/os/win32/ngx_gui.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 238 | src/os/win32/ngx_process_cycle.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 239 | src/event/ngx_event_acceptex.c" |
| 240 | |
Igor Sysoev | e5a222c | 2005-01-25 12:27:35 +0000 | [diff] [blame] | 241 | NGX_WIN32_ICONS="src/os/win32/nginx.ico src/os/win32/nginx_tray.ico" |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 242 | NGX_WIN32_RC="src/os/win32/nginx.rc" |
| 243 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 244 | |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 245 | # the http modules that have their logging formats |
| 246 | # must be after ngx_http_log_module |
| 247 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 248 | HTTP_MODULES="ngx_http_module \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 249 | ngx_http_core_module \ |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 250 | ngx_http_log_module \ |
| 251 | ngx_http_upstream_module" |
Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 252 | |
Igor Sysoev | b1dfe47 | 2004-12-21 12:30:30 +0000 | [diff] [blame] | 253 | HTTP_CACHE_MODULE=ngx_http_cache_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 254 | |
Igor Sysoev | 7823cc3 | 2004-07-14 16:01:42 +0000 | [diff] [blame] | 255 | HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module" |
| 256 | HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 257 | |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 258 | HTTP_POSTPONE_FILTER_MODULE=ngx_http_postpone_filter_module |
| 259 | HTTP_COPY_FILTER_MODULE=ngx_http_copy_filter_module |
| 260 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 261 | HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module |
Igor Sysoev | 3f4685f | 2004-04-25 20:13:21 +0000 | [diff] [blame] | 262 | HTTP_HEADERS_FILTER_MODULE=ngx_http_headers_filter_module |
Igor Sysoev | 31f7f6a | 2004-05-12 05:37:55 +0000 | [diff] [blame] | 263 | |
| 264 | HTTP_RANGE_HEADER_FILTER_MODULE=ngx_http_range_header_filter_module |
| 265 | HTTP_RANGE_BODY_FILTER_MODULE=ngx_http_range_body_filter_module |
| 266 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 267 | HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module |
| 268 | |
| 269 | HTTP_STATIC_MODULE=ngx_http_static_module |
| 270 | HTTP_INDEX_MODULE=ngx_http_index_module |
| 271 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 272 | HTTP_INCS="src/http src/http/modules" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 273 | |
| 274 | HTTP_DEPS="src/http/ngx_http.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 275 | src/http/ngx_http_request.h \ |
| 276 | src/http/ngx_http_config.h \ |
| 277 | src/http/ngx_http_core_module.h \ |
| 278 | src/http/ngx_http_cache.h \ |
Igor Sysoev | 8184d1b | 2005-03-04 14:06:57 +0000 | [diff] [blame] | 279 | src/http/ngx_http_variables.h \ |
Igor Sysoev | 02f742b | 2005-04-08 15:18:55 +0000 | [diff] [blame] | 280 | src/http/ngx_http_script.h \ |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 281 | src/http/ngx_http_upstream.h \ |
Igor Sysoev | 3d2fd18 | 2006-12-04 16:46:13 +0000 | [diff] [blame] | 282 | src/http/ngx_http_upstream_round_robin.h \ |
Igor Sysoev | a8c54c0 | 2006-11-27 14:46:15 +0000 | [diff] [blame] | 283 | src/http/ngx_http_busy_lock.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 284 | |
| 285 | HTTP_SRCS="src/http/ngx_http.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 286 | src/http/ngx_http_core_module.c \ |
| 287 | src/http/ngx_http_special_response.c \ |
| 288 | src/http/ngx_http_request.c \ |
| 289 | src/http/ngx_http_parse.c \ |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 290 | src/http/ngx_http_header_filter_module.c \ |
| 291 | src/http/ngx_http_write_filter_module.c \ |
| 292 | src/http/ngx_http_copy_filter_module.c \ |
Igor Sysoev | 9ac946b | 2005-10-24 15:09:41 +0000 | [diff] [blame] | 293 | src/http/modules/ngx_http_log_module.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 294 | src/http/ngx_http_request_body.c \ |
Igor Sysoev | 8184d1b | 2005-03-04 14:06:57 +0000 | [diff] [blame] | 295 | src/http/ngx_http_variables.c \ |
Igor Sysoev | 02f742b | 2005-04-08 15:18:55 +0000 | [diff] [blame] | 296 | src/http/ngx_http_script.c \ |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 297 | src/http/ngx_http_upstream.c \ |
Igor Sysoev | 3d2fd18 | 2006-12-04 16:46:13 +0000 | [diff] [blame] | 298 | src/http/ngx_http_upstream_round_robin.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 299 | src/http/ngx_http_parse_time.c \ |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 300 | src/http/modules/ngx_http_static_module.c \ |
| 301 | src/http/modules/ngx_http_index_module.c \ |
| 302 | src/http/modules/ngx_http_chunked_filter_module.c \ |
| 303 | src/http/modules/ngx_http_range_filter_module.c \ |
| 304 | src/http/modules/ngx_http_headers_filter_module.c \ |
| 305 | src/http/modules/ngx_http_not_modified_filter_module.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 306 | |
Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 307 | # STUB |
| 308 | HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c" |
| 309 | |
Igor Sysoev | 6b0de80 | 2008-03-12 21:10:48 +0000 | [diff] [blame] | 310 | HTTP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 311 | |
Igor Sysoev | 6b0de80 | 2008-03-12 21:10:48 +0000 | [diff] [blame] | 312 | HTTP_CACHE_SRCS=src/http/ngx_http_cache.c |
| 313 | HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c |
Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 314 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 315 | |
Igor Sysoev | 3d5c0fc | 2004-06-22 16:43:09 +0000 | [diff] [blame] | 316 | HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 317 | HTTP_CHARSET_SRCS=src/http/modules/ngx_http_charset_filter_module.c |
Igor Sysoev | 3d5c0fc | 2004-06-22 16:43:09 +0000 | [diff] [blame] | 318 | |
| 319 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 320 | HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 321 | HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter_module.c |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 322 | |
| 323 | |
Igor Sysoev | e04084c | 2004-01-26 08:52:49 +0000 | [diff] [blame] | 324 | HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module |
Igor Sysoev | df3254a | 2006-01-11 15:26:57 +0000 | [diff] [blame] | 325 | HTTP_SSI_DEPS=src/http/modules/ngx_http_ssi_filter_module.h |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 326 | HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter_module.c |
Igor Sysoev | e04084c | 2004-01-26 08:52:49 +0000 | [diff] [blame] | 327 | |
| 328 | |
Igor Sysoev | d9bb8e3 | 2007-04-19 17:54:23 +0000 | [diff] [blame] | 329 | HTTP_SUB_FILTER_MODULE=ngx_http_sub_filter_module |
| 330 | HTTP_SUB_SRCS=src/http/modules/ngx_http_sub_filter_module.c |
| 331 | |
| 332 | |
Igor Sysoev | a7c4a2a | 2004-08-29 03:55:41 +0000 | [diff] [blame] | 333 | HTTP_USERID_FILTER_MODULE=ngx_http_userid_filter_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 334 | HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_filter_module.c |
Igor Sysoev | a7c4a2a | 2004-08-29 03:55:41 +0000 | [diff] [blame] | 335 | |
| 336 | |
Igor Sysoev | 09c684b | 2005-11-09 17:25:55 +0000 | [diff] [blame] | 337 | HTTP_REALIP_MODULE=ngx_http_realip_module |
| 338 | HTTP_REALIP_SRCS=src/http/modules/ngx_http_realip_module.c |
| 339 | |
| 340 | |
Igor Sysoev | 6d16e1e | 2006-04-05 13:40:54 +0000 | [diff] [blame] | 341 | HTTP_ADDITION_FILTER_MODULE=ngx_http_addition_filter_module |
| 342 | HTTP_ADDITION_SRCS=src/http/modules/ngx_http_addition_filter_module.c |
| 343 | |
| 344 | |
Igor Sysoev | 8a2b2fb | 2006-04-14 09:53:38 +0000 | [diff] [blame] | 345 | HTTP_DAV_MODULE=ngx_http_dav_module |
| 346 | HTTP_DAV_SRCS=src/http/modules/ngx_http_dav_module.c |
| 347 | |
| 348 | |
Igor Sysoev | 59f3aa3 | 2004-06-24 16:07:04 +0000 | [diff] [blame] | 349 | HTTP_ACCESS_MODULE=ngx_http_access_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 350 | HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_module.c |
Igor Sysoev | 59f3aa3 | 2004-06-24 16:07:04 +0000 | [diff] [blame] | 351 | |
| 352 | |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 353 | HTTP_AUTH_BASIC_MODULE=ngx_http_auth_basic_module |
| 354 | HTTP_AUTH_BASIC_SRCS=src/http/modules/ngx_http_auth_basic_module.c |
| 355 | |
| 356 | |
Igor Sysoev | 723e6cc | 2004-10-25 15:29:23 +0000 | [diff] [blame] | 357 | HTTP_AUTOINDEX_MODULE=ngx_http_autoindex_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 358 | HTTP_AUTOINDEX_SRCS=src/http/modules/ngx_http_autoindex_module.c |
Igor Sysoev | 723e6cc | 2004-10-25 15:29:23 +0000 | [diff] [blame] | 359 | |
| 360 | |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 361 | HTTP_STATUS_MODULE=ngx_http_status_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 362 | HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_module.c |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 363 | |
| 364 | |
Igor Sysoev | 805d9db | 2005-02-03 19:33:37 +0000 | [diff] [blame] | 365 | HTTP_GEO_MODULE=ngx_http_geo_module |
| 366 | HTTP_GEO_SRCS=src/http/modules/ngx_http_geo_module.c |
| 367 | |
| 368 | |
Igor Sysoev | 2402502 | 2005-12-16 15:07:08 +0000 | [diff] [blame] | 369 | HTTP_MAP_MODULE=ngx_http_map_module |
| 370 | HTTP_MAP_SRCS=src/http/modules/ngx_http_map_module.c |
| 371 | |
| 372 | |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 373 | HTTP_REFERER_MODULE=ngx_http_referer_module |
| 374 | HTTP_REFERER_SRCS=src/http/modules/ngx_http_referer_module.c |
| 375 | |
| 376 | |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 377 | HTTP_REWRITE_MODULE=ngx_http_rewrite_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 378 | HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_module.c |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 379 | |
| 380 | |
Igor Sysoev | f38e046 | 2004-07-16 17:11:43 +0000 | [diff] [blame] | 381 | HTTP_SSL_MODULE=ngx_http_ssl_module |
| 382 | HTTP_SSL_DEPS=src/http/modules/ngx_http_ssl_module.h |
| 383 | HTTP_SSL_SRCS=src/http/modules/ngx_http_ssl_module.c |
| 384 | |
| 385 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 386 | HTTP_PROXY_MODULE=ngx_http_proxy_module |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 387 | HTTP_PROXY_SRCS=src/http/modules/ngx_http_proxy_module.c |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 388 | |
| 389 | |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 390 | HTTP_FASTCGI_MODULE=ngx_http_fastcgi_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 391 | HTTP_FASTCGI_SRCS=src/http/modules/ngx_http_fastcgi_module.c |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 392 | |
| 393 | |
Igor Sysoev | 9bf11aa | 2006-01-16 14:56:53 +0000 | [diff] [blame] | 394 | HTTP_PERL_MODULE=ngx_http_perl_module |
| 395 | HTTP_PERL_INCS=src/http/modules/perl |
| 396 | HTTP_PERL_DEPS=src/http/modules/perl/ngx_http_perl_module.h |
| 397 | HTTP_PERL_SRCS=src/http/modules/perl/ngx_http_perl_module.c |
| 398 | |
| 399 | |
Igor Sysoev | c31a9bb | 2005-11-26 10:11:11 +0000 | [diff] [blame] | 400 | HTTP_MEMCACHED_MODULE=ngx_http_memcached_module |
| 401 | HTTP_MEMCACHED_SRCS=src/http/modules/ngx_http_memcached_module.c |
| 402 | |
| 403 | |
Igor Sysoev | 138e384 | 2007-01-06 18:52:46 +0000 | [diff] [blame] | 404 | HTTP_LIMIT_ZONE_MODULE=ngx_http_limit_zone_module |
| 405 | HTTP_LIMIT_ZONE_SRCS=src/http/modules/ngx_http_limit_zone_module.c |
| 406 | |
| 407 | |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 408 | HTTP_EMPTY_GIF_MODULE=ngx_http_empty_gif_module |
| 409 | HTTP_EMPTY_GIF_SRCS=src/http/modules/ngx_http_empty_gif_module.c |
| 410 | |
| 411 | |
Igor Sysoev | 3383ff6 | 2006-09-18 12:25:07 +0000 | [diff] [blame] | 412 | HTTP_BROWSER_MODULE=ngx_http_browser_module |
| 413 | HTTP_BROWSER_SRCS=src/http/modules/ngx_http_browser_module.c |
| 414 | |
| 415 | |
Igor Sysoev | b505006 | 2006-10-09 14:17:36 +0000 | [diff] [blame] | 416 | HTTP_FLV_MODULE=ngx_http_flv_module |
| 417 | HTTP_FLV_SRCS=src/http/modules/ngx_http_flv_module.c |
| 418 | |
| 419 | |
Igor Sysoev | c16b005 | 2007-12-27 14:21:59 +0000 | [diff] [blame] | 420 | HTTP_GZIP_STATIC_MODULE=ngx_http_gzip_static_module |
| 421 | HTTP_GZIP_STATIC_SRCS=src/http/modules/ngx_http_gzip_static_module.c |
| 422 | |
| 423 | |
Igor Sysoev | 3d2fd18 | 2006-12-04 16:46:13 +0000 | [diff] [blame] | 424 | HTTP_UPSTREAM_IP_HASH_MODULE=ngx_http_upstream_ip_hash_module |
| 425 | HTTP_UPSTREAM_IP_HASH_SRCS=src/http/modules/ngx_http_upstream_ip_hash_module.c |
| 426 | |
| 427 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 428 | MAIL_INCS="src/mail" |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 429 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 430 | MAIL_DEPS="src/mail/ngx_mail.h" |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 431 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 432 | MAIL_MODULES="ngx_mail_module ngx_mail_core_module" |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 433 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 434 | MAIL_SRCS="src/mail/ngx_mail.c \ |
| 435 | src/mail/ngx_mail_core_module.c \ |
| 436 | src/mail/ngx_mail_handler.c \ |
| 437 | src/mail/ngx_mail_parse.c" |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 438 | |
Igor Sysoev | 4871408 | 2007-09-15 16:51:16 +0000 | [diff] [blame] | 439 | MAIL_POP3_MODULE="ngx_mail_pop3_module" |
| 440 | MAIL_POP3_DEPS="src/mail/ngx_mail_pop3_module.h" |
| 441 | MAIL_POP3_SRCS="src/mail/ngx_mail_pop3_module.c \ |
| 442 | src/mail/ngx_mail_pop3_handler.c" |
| 443 | |
| 444 | MAIL_IMAP_MODULE="ngx_mail_imap_module" |
| 445 | MAIL_IMAP_DEPS="src/mail/ngx_mail_imap_module.h" |
| 446 | MAIL_IMAP_SRCS="src/mail/ngx_mail_imap_module.c \ |
| 447 | src/mail/ngx_mail_imap_handler.c" |
| 448 | |
| 449 | MAIL_SMTP_MODULE="ngx_mail_smtp_module" |
| 450 | MAIL_SMTP_DEPS="src/mail/ngx_mail_smtp_module.h" |
| 451 | MAIL_SMTP_SRCS="src/mail/ngx_mail_smtp_module.c \ |
| 452 | src/mail/ngx_mail_smtp_handler.c" |
| 453 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 454 | MAIL_SSL_MODULE="ngx_mail_ssl_module" |
| 455 | MAIL_SSL_DEPS="src/mail/ngx_mail_ssl_module.h" |
| 456 | MAIL_SSL_SRCS="src/mail/ngx_mail_ssl_module.c" |
Igor Sysoev | ceb9929 | 2005-09-06 16:09:32 +0000 | [diff] [blame] | 457 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 458 | MAIL_AUTH_HTTP_MODULE="ngx_mail_auth_http_module" |
| 459 | MAIL_AUTH_HTTP_SRCS="src/mail/ngx_mail_auth_http_module.c" |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 460 | |
Igor Sysoev | 02c8d18 | 2007-03-19 13:36:56 +0000 | [diff] [blame] | 461 | MAIL_PROXY_MODULE="ngx_mail_proxy_module" |
| 462 | MAIL_PROXY_SRCS="src/mail/ngx_mail_proxy_module.c" |
Igor Sysoev | 85dd8fc | 2008-03-18 10:36:27 +0000 | [diff] [blame] | 463 | |
| 464 | NGX_GOOGLE_PERFTOOLS_MODULE=ngx_google_perftools_module |
| 465 | NGX_GOOGLE_PERFTOOLS_SRCS=src/misc/ngx_google_perftools_module.c |
| 466 | |