sources 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. # Copyright (C) Igor Sysoev
  2. # Copyright (C) Nginx, Inc.
  3. CORE_MODULES="ngx_core_module ngx_errlog_module ngx_conf_module"
  4. CORE_INCS="src/core"
  5. CORE_DEPS="src/core/nginx.h \
  6. src/core/ngx_config.h \
  7. src/core/ngx_core.h \
  8. src/core/ngx_log.h \
  9. src/core/ngx_palloc.h \
  10. src/core/ngx_array.h \
  11. src/core/ngx_list.h \
  12. src/core/ngx_hash.h \
  13. src/core/ngx_buf.h \
  14. src/core/ngx_queue.h \
  15. src/core/ngx_string.h \
  16. src/core/ngx_parse.h \
  17. src/core/ngx_inet.h \
  18. src/core/ngx_file.h \
  19. src/core/ngx_crc.h \
  20. src/core/ngx_crc32.h \
  21. src/core/ngx_murmurhash.h \
  22. src/core/ngx_md5.h \
  23. src/core/ngx_sha1.h \
  24. src/core/ngx_rbtree.h \
  25. src/core/ngx_radix_tree.h \
  26. src/core/ngx_slab.h \
  27. src/core/ngx_times.h \
  28. src/core/ngx_shmtx.h \
  29. src/core/ngx_connection.h \
  30. src/core/ngx_cycle.h \
  31. src/core/ngx_conf_file.h \
  32. src/core/ngx_resolver.h \
  33. src/core/ngx_open_file_cache.h \
  34. src/core/ngx_crypt.h"
  35. CORE_SRCS="src/core/nginx.c \
  36. src/core/ngx_log.c \
  37. src/core/ngx_palloc.c \
  38. src/core/ngx_array.c \
  39. src/core/ngx_list.c \
  40. src/core/ngx_hash.c \
  41. src/core/ngx_buf.c \
  42. src/core/ngx_queue.c \
  43. src/core/ngx_output_chain.c \
  44. src/core/ngx_string.c \
  45. src/core/ngx_parse.c \
  46. src/core/ngx_inet.c \
  47. src/core/ngx_file.c \
  48. src/core/ngx_crc32.c \
  49. src/core/ngx_murmurhash.c \
  50. src/core/ngx_md5.c \
  51. src/core/ngx_rbtree.c \
  52. src/core/ngx_radix_tree.c \
  53. src/core/ngx_slab.c \
  54. src/core/ngx_times.c \
  55. src/core/ngx_shmtx.c \
  56. src/core/ngx_connection.c \
  57. src/core/ngx_cycle.c \
  58. src/core/ngx_spinlock.c \
  59. src/core/ngx_cpuinfo.c \
  60. src/core/ngx_conf_file.c \
  61. src/core/ngx_resolver.c \
  62. src/core/ngx_open_file_cache.c \
  63. src/core/ngx_crypt.c"
  64. REGEX_DEPS=src/core/ngx_regex.h
  65. REGEX_SRCS=src/core/ngx_regex.c
  66. OPENSSL_MODULE=ngx_openssl_module
  67. OPENSSL_DEPS=src/event/ngx_event_openssl.h
  68. OPENSSL_SRCS=src/event/ngx_event_openssl.c
  69. EVENT_MODULES="ngx_events_module ngx_event_core_module"
  70. EVENT_INCS="src/event src/event/modules"
  71. EVENT_DEPS="src/event/ngx_event.h \
  72. src/event/ngx_event_timer.h \
  73. src/event/ngx_event_posted.h \
  74. src/event/ngx_event_busy_lock.h \
  75. src/event/ngx_event_connect.h \
  76. src/event/ngx_event_pipe.h"
  77. EVENT_SRCS="src/event/ngx_event.c \
  78. src/event/ngx_event_timer.c \
  79. src/event/ngx_event_posted.c \
  80. src/event/ngx_event_busy_lock.c \
  81. src/event/ngx_event_accept.c \
  82. src/event/ngx_event_connect.c \
  83. src/event/ngx_event_pipe.c"
  84. SELECT_MODULE=ngx_select_module
  85. SELECT_SRCS=src/event/modules/ngx_select_module.c
  86. WIN32_SELECT_SRCS=src/event/modules/ngx_win32_select_module.c
  87. POLL_MODULE=ngx_poll_module
  88. POLL_SRCS=src/event/modules/ngx_poll_module.c
  89. KQUEUE_MODULE=ngx_kqueue_module
  90. KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c
  91. DEVPOLL_MODULE=ngx_devpoll_module
  92. DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c
  93. EVENTPORT_MODULE=ngx_eventport_module
  94. EVENTPORT_SRCS=src/event/modules/ngx_eventport_module.c
  95. EPOLL_MODULE=ngx_epoll_module
  96. EPOLL_SRCS=src/event/modules/ngx_epoll_module.c
  97. RTSIG_MODULE=ngx_rtsig_module
  98. RTSIG_SRCS=src/event/modules/ngx_rtsig_module.c
  99. IOCP_MODULE=ngx_iocp_module
  100. IOCP_SRCS=src/event/modules/ngx_iocp_module.c
  101. AIO_MODULE=ngx_aio_module
  102. AIO_SRCS="src/event/modules/ngx_aio_module.c \
  103. src/os/unix/ngx_aio_read.c \
  104. src/os/unix/ngx_aio_write.c \
  105. src/os/unix/ngx_aio_read_chain.c \
  106. src/os/unix/ngx_aio_write_chain.c"
  107. FILE_AIO_SRCS="src/os/unix/ngx_file_aio_read.c"
  108. LINUX_AIO_SRCS="src/os/unix/ngx_linux_aio_read.c"
  109. UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix"
  110. UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
  111. src/os/unix/ngx_time.h \
  112. src/os/unix/ngx_errno.h \
  113. src/os/unix/ngx_alloc.h \
  114. src/os/unix/ngx_files.h \
  115. src/os/unix/ngx_channel.h \
  116. src/os/unix/ngx_shmem.h \
  117. src/os/unix/ngx_process.h \
  118. src/os/unix/ngx_setproctitle.h \
  119. src/os/unix/ngx_atomic.h \
  120. src/os/unix/ngx_gcc_atomic_x86.h \
  121. src/os/unix/ngx_thread.h \
  122. src/os/unix/ngx_socket.h \
  123. src/os/unix/ngx_os.h \
  124. src/os/unix/ngx_user.h \
  125. src/os/unix/ngx_process_cycle.h"
  126. # add to UNIX_DEPS
  127. # src/os/unix/ngx_gcc_atomic_amd64.h \
  128. # src/os/unix/ngx_gcc_atomic_sparc64.h \
  129. # src/os/unix/ngx_gcc_atomic_ppc.h \
  130. # src/os/unix/ngx_sunpro_atomic_sparc64.h \
  131. # src/os/unix/ngx_sunpro_x86.il \
  132. # src/os/unix/ngx_sunpro_amd64.il \
  133. # src/os/unix/ngx_sunpro_sparc64.il \
  134. UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
  135. src/os/unix/ngx_time.c \
  136. src/os/unix/ngx_errno.c \
  137. src/os/unix/ngx_alloc.c \
  138. src/os/unix/ngx_files.c \
  139. src/os/unix/ngx_socket.c \
  140. src/os/unix/ngx_recv.c \
  141. src/os/unix/ngx_readv_chain.c \
  142. src/os/unix/ngx_udp_recv.c \
  143. src/os/unix/ngx_send.c \
  144. src/os/unix/ngx_writev_chain.c \
  145. src/os/unix/ngx_channel.c \
  146. src/os/unix/ngx_shmem.c \
  147. src/os/unix/ngx_process.c \
  148. src/os/unix/ngx_daemon.c \
  149. src/os/unix/ngx_setproctitle.c \
  150. src/os/unix/ngx_posix_init.c \
  151. src/os/unix/ngx_user.c \
  152. src/os/unix/ngx_process_cycle.c"
  153. POSIX_DEPS=src/os/unix/ngx_posix_config.h
  154. FREEBSD_DEPS="src/os/unix/ngx_freebsd_config.h src/os/unix/ngx_freebsd.h"
  155. FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c
  156. FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c
  157. FREEBSD_RFORK_DEPS="src/os/unix/ngx_freebsd_rfork_thread.h"
  158. FREEBSD_RFORK_SRCS="src/os/unix/ngx_freebsd_rfork_thread.c"
  159. FREEBSD_RFORK_THREAD_SRCS="src/os/unix/rfork_thread.S"
  160. PTHREAD_SRCS="src/os/unix/ngx_pthread_thread.c"
  161. LINUX_DEPS="src/os/unix/ngx_linux_config.h src/os/unix/ngx_linux.h"
  162. LINUX_SRCS=src/os/unix/ngx_linux_init.c
  163. LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c
  164. SOLARIS_DEPS="src/os/unix/ngx_solaris_config.h src/os/unix/ngx_solaris.h"
  165. SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c
  166. SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c
  167. DARWIN_DEPS="src/os/unix/ngx_darwin_config.h src/os/unix/ngx_darwin.h"
  168. DARWIN_SRCS=src/os/unix/ngx_darwin_init.c
  169. DARWIN_SENDFILE_SRCS=src/os/unix/ngx_darwin_sendfile_chain.c
  170. WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32"
  171. WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \
  172. src/os/win32/ngx_win32_config.h \
  173. src/os/win32/ngx_time.h \
  174. src/os/win32/ngx_errno.h \
  175. src/os/win32/ngx_alloc.h \
  176. src/os/win32/ngx_files.h \
  177. src/os/win32/ngx_shmem.h \
  178. src/os/win32/ngx_process.h \
  179. src/os/win32/ngx_atomic.h \
  180. src/os/win32/ngx_thread.h \
  181. src/os/win32/ngx_socket.h \
  182. src/os/win32/ngx_os.h \
  183. src/os/win32/ngx_user.h \
  184. src/os/win32/ngx_process_cycle.h"
  185. WIN32_CONFIG=src/os/win32/ngx_win32_config.h
  186. WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \
  187. src/os/win32/ngx_errno.c \
  188. src/os/win32/ngx_alloc.c \
  189. src/os/win32/ngx_files.c \
  190. src/os/win32/ngx_shmem.c \
  191. src/os/win32/ngx_time.c \
  192. src/os/win32/ngx_process.c \
  193. src/os/win32/ngx_thread.c \
  194. src/os/win32/ngx_socket.c \
  195. src/os/win32/ngx_wsarecv.c \
  196. src/os/win32/ngx_wsarecv_chain.c \
  197. src/os/win32/ngx_udp_wsarecv.c \
  198. src/os/win32/ngx_wsasend.c \
  199. src/os/win32/ngx_wsasend_chain.c \
  200. src/os/win32/ngx_win32_init.c \
  201. src/os/win32/ngx_user.c \
  202. src/os/win32/ngx_event_log.c \
  203. src/os/win32/ngx_process_cycle.c \
  204. src/event/ngx_event_acceptex.c"
  205. NGX_WIN32_ICONS="src/os/win32/nginx.ico"
  206. NGX_WIN32_RC="src/os/win32/nginx.rc"
  207. # the http modules that have their logging formats
  208. # must be after ngx_http_log_module
  209. HTTP_MODULES="ngx_http_module \
  210. ngx_http_core_module \
  211. ngx_http_log_module \
  212. ngx_http_upstream_module"
  213. HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module"
  214. HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module"
  215. HTTP_POSTPONE_FILTER_MODULE=ngx_http_postpone_filter_module
  216. HTTP_COPY_FILTER_MODULE=ngx_http_copy_filter_module
  217. HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module
  218. HTTP_HEADERS_FILTER_MODULE=ngx_http_headers_filter_module
  219. HTTP_RANGE_HEADER_FILTER_MODULE=ngx_http_range_header_filter_module
  220. HTTP_RANGE_BODY_FILTER_MODULE=ngx_http_range_body_filter_module
  221. HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module
  222. HTTP_STATIC_MODULE=ngx_http_static_module
  223. HTTP_INDEX_MODULE=ngx_http_index_module
  224. HTTP_INCS="src/http src/http/modules"
  225. HTTP_DEPS="src/http/ngx_http.h \
  226. src/http/ngx_http_request.h \
  227. src/http/ngx_http_config.h \
  228. src/http/ngx_http_core_module.h \
  229. src/http/ngx_http_cache.h \
  230. src/http/ngx_http_variables.h \
  231. src/http/ngx_http_script.h \
  232. src/http/ngx_http_upstream.h \
  233. src/http/ngx_http_upstream_round_robin.h \
  234. src/http/ngx_http_busy_lock.h"
  235. HTTP_SRCS="src/http/ngx_http.c \
  236. src/http/ngx_http_core_module.c \
  237. src/http/ngx_http_special_response.c \
  238. src/http/ngx_http_request.c \
  239. src/http/ngx_http_parse.c \
  240. src/http/ngx_http_header_filter_module.c \
  241. src/http/ngx_http_write_filter_module.c \
  242. src/http/ngx_http_copy_filter_module.c \
  243. src/http/modules/ngx_http_log_module.c \
  244. src/http/ngx_http_request_body.c \
  245. src/http/ngx_http_variables.c \
  246. src/http/ngx_http_script.c \
  247. src/http/ngx_http_upstream.c \
  248. src/http/ngx_http_upstream_round_robin.c \
  249. src/http/ngx_http_parse_time.c \
  250. src/http/modules/ngx_http_static_module.c \
  251. src/http/modules/ngx_http_index_module.c \
  252. src/http/modules/ngx_http_chunked_filter_module.c \
  253. src/http/modules/ngx_http_range_filter_module.c \
  254. src/http/modules/ngx_http_headers_filter_module.c \
  255. src/http/modules/ngx_http_not_modified_filter_module.c"
  256. # STUB
  257. HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c"
  258. HTTP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c
  259. HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
  260. HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module
  261. HTTP_CHARSET_SRCS=src/http/modules/ngx_http_charset_filter_module.c
  262. HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module
  263. HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter_module.c
  264. HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module
  265. HTTP_SSI_DEPS=src/http/modules/ngx_http_ssi_filter_module.h
  266. HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter_module.c
  267. HTTP_XSLT_FILTER_MODULE=ngx_http_xslt_filter_module
  268. HTTP_XSLT_SRCS=src/http/modules/ngx_http_xslt_filter_module.c
  269. HTTP_IMAGE_FILTER_MODULE=ngx_http_image_filter_module
  270. HTTP_IMAGE_SRCS=src/http/modules/ngx_http_image_filter_module.c
  271. HTTP_SUB_FILTER_MODULE=ngx_http_sub_filter_module
  272. HTTP_SUB_SRCS=src/http/modules/ngx_http_sub_filter_module.c
  273. HTTP_USERID_FILTER_MODULE=ngx_http_userid_filter_module
  274. HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_filter_module.c
  275. HTTP_REALIP_MODULE=ngx_http_realip_module
  276. HTTP_REALIP_SRCS=src/http/modules/ngx_http_realip_module.c
  277. HTTP_ADDITION_FILTER_MODULE=ngx_http_addition_filter_module
  278. HTTP_ADDITION_SRCS=src/http/modules/ngx_http_addition_filter_module.c
  279. HTTP_DAV_MODULE=ngx_http_dav_module
  280. HTTP_DAV_SRCS=src/http/modules/ngx_http_dav_module.c
  281. HTTP_ACCESS_MODULE=ngx_http_access_module
  282. HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_module.c
  283. HTTP_AUTH_BASIC_MODULE=ngx_http_auth_basic_module
  284. HTTP_AUTH_BASIC_SRCS=src/http/modules/ngx_http_auth_basic_module.c
  285. HTTP_AUTOINDEX_MODULE=ngx_http_autoindex_module
  286. HTTP_AUTOINDEX_SRCS=src/http/modules/ngx_http_autoindex_module.c
  287. HTTP_RANDOM_INDEX_MODULE=ngx_http_random_index_module
  288. HTTP_RANDOM_INDEX_SRCS=src/http/modules/ngx_http_random_index_module.c
  289. HTTP_STATUS_MODULE=ngx_http_status_module
  290. HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_module.c
  291. HTTP_GEO_MODULE=ngx_http_geo_module
  292. HTTP_GEO_SRCS=src/http/modules/ngx_http_geo_module.c
  293. HTTP_GEOIP_MODULE=ngx_http_geoip_module
  294. HTTP_GEOIP_SRCS=src/http/modules/ngx_http_geoip_module.c
  295. HTTP_MAP_MODULE=ngx_http_map_module
  296. HTTP_MAP_SRCS=src/http/modules/ngx_http_map_module.c
  297. HTTP_SPLIT_CLIENTS_MODULE=ngx_http_split_clients_module
  298. HTTP_SPLIT_CLIENTS_SRCS=src/http/modules/ngx_http_split_clients_module.c
  299. HTTP_REFERER_MODULE=ngx_http_referer_module
  300. HTTP_REFERER_SRCS=src/http/modules/ngx_http_referer_module.c
  301. HTTP_REWRITE_MODULE=ngx_http_rewrite_module
  302. HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_module.c
  303. HTTP_SSL_MODULE=ngx_http_ssl_module
  304. HTTP_SSL_DEPS=src/http/modules/ngx_http_ssl_module.h
  305. HTTP_SSL_SRCS=src/http/modules/ngx_http_ssl_module.c
  306. HTTP_PROXY_MODULE=ngx_http_proxy_module
  307. HTTP_PROXY_SRCS=src/http/modules/ngx_http_proxy_module.c
  308. HTTP_FASTCGI_MODULE=ngx_http_fastcgi_module
  309. HTTP_FASTCGI_SRCS=src/http/modules/ngx_http_fastcgi_module.c
  310. HTTP_UWSGI_MODULE=ngx_http_uwsgi_module
  311. HTTP_UWSGI_SRCS=src/http/modules/ngx_http_uwsgi_module.c
  312. HTTP_SCGI_MODULE=ngx_http_scgi_module
  313. HTTP_SCGI_SRCS=src/http/modules/ngx_http_scgi_module.c
  314. HTTP_PERL_MODULE=ngx_http_perl_module
  315. HTTP_PERL_INCS=src/http/modules/perl
  316. HTTP_PERL_DEPS=src/http/modules/perl/ngx_http_perl_module.h
  317. HTTP_PERL_SRCS=src/http/modules/perl/ngx_http_perl_module.c
  318. HTTP_MEMCACHED_MODULE=ngx_http_memcached_module
  319. HTTP_MEMCACHED_SRCS=src/http/modules/ngx_http_memcached_module.c
  320. HTTP_LIMIT_ZONE_MODULE=ngx_http_limit_zone_module
  321. HTTP_LIMIT_ZONE_SRCS=src/http/modules/ngx_http_limit_zone_module.c
  322. HTTP_LIMIT_REQ_MODULE=ngx_http_limit_req_module
  323. HTTP_LIMIT_REQ_SRCS=src/http/modules/ngx_http_limit_req_module.c
  324. HTTP_EMPTY_GIF_MODULE=ngx_http_empty_gif_module
  325. HTTP_EMPTY_GIF_SRCS=src/http/modules/ngx_http_empty_gif_module.c
  326. HTTP_BROWSER_MODULE=ngx_http_browser_module
  327. HTTP_BROWSER_SRCS=src/http/modules/ngx_http_browser_module.c
  328. HTTP_SECURE_LINK_MODULE=ngx_http_secure_link_module
  329. HTTP_SECURE_LINK_SRCS=src/http/modules/ngx_http_secure_link_module.c
  330. HTTP_DEGRADATION_MODULE=ngx_http_degradation_module
  331. HTTP_DEGRADATION_SRCS=src/http/modules/ngx_http_degradation_module.c
  332. HTTP_FLV_MODULE=ngx_http_flv_module
  333. HTTP_FLV_SRCS=src/http/modules/ngx_http_flv_module.c
  334. HTTP_MP4_MODULE=ngx_http_mp4_module
  335. HTTP_MP4_SRCS=src/http/modules/ngx_http_mp4_module.c
  336. HTTP_GZIP_STATIC_MODULE=ngx_http_gzip_static_module
  337. HTTP_GZIP_STATIC_SRCS=src/http/modules/ngx_http_gzip_static_module.c
  338. HTTP_UPSTREAM_IP_HASH_MODULE=ngx_http_upstream_ip_hash_module
  339. HTTP_UPSTREAM_IP_HASH_SRCS=src/http/modules/ngx_http_upstream_ip_hash_module.c
  340. MAIL_INCS="src/mail"
  341. MAIL_DEPS="src/mail/ngx_mail.h"
  342. MAIL_MODULES="ngx_mail_module ngx_mail_core_module"
  343. MAIL_SRCS="src/mail/ngx_mail.c \
  344. src/mail/ngx_mail_core_module.c \
  345. src/mail/ngx_mail_handler.c \
  346. src/mail/ngx_mail_parse.c"
  347. MAIL_POP3_MODULE="ngx_mail_pop3_module"
  348. MAIL_POP3_DEPS="src/mail/ngx_mail_pop3_module.h"
  349. MAIL_POP3_SRCS="src/mail/ngx_mail_pop3_module.c \
  350. src/mail/ngx_mail_pop3_handler.c"
  351. MAIL_IMAP_MODULE="ngx_mail_imap_module"
  352. MAIL_IMAP_DEPS="src/mail/ngx_mail_imap_module.h"
  353. MAIL_IMAP_SRCS="src/mail/ngx_mail_imap_module.c \
  354. src/mail/ngx_mail_imap_handler.c"
  355. MAIL_SMTP_MODULE="ngx_mail_smtp_module"
  356. MAIL_SMTP_DEPS="src/mail/ngx_mail_smtp_module.h"
  357. MAIL_SMTP_SRCS="src/mail/ngx_mail_smtp_module.c \
  358. src/mail/ngx_mail_smtp_handler.c"
  359. MAIL_SSL_MODULE="ngx_mail_ssl_module"
  360. MAIL_SSL_DEPS="src/mail/ngx_mail_ssl_module.h"
  361. MAIL_SSL_SRCS="src/mail/ngx_mail_ssl_module.c"
  362. MAIL_AUTH_HTTP_MODULE="ngx_mail_auth_http_module"
  363. MAIL_AUTH_HTTP_SRCS="src/mail/ngx_mail_auth_http_module.c"
  364. MAIL_PROXY_MODULE="ngx_mail_proxy_module"
  365. MAIL_PROXY_SRCS="src/mail/ngx_mail_proxy_module.c"
  366. NGX_GOOGLE_PERFTOOLS_MODULE=ngx_google_perftools_module
  367. NGX_GOOGLE_PERFTOOLS_SRCS=src/misc/ngx_google_perftools_module.c
  368. NGX_CPP_TEST_SRCS=src/misc/ngx_cpp_test_module.cpp