nginxtra 1.8.1.12 → 1.10.1.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (238) hide show
  1. checksums.yaml +4 -4
  2. data/bin/nginxtra +1 -1
  3. data/bin/nginxtra_rails +1 -1
  4. data/lib/nginxtra/version.rb +1 -1
  5. data/vendor/nginx/CHANGES +363 -25
  6. data/vendor/nginx/CHANGES.ru +365 -21
  7. data/vendor/nginx/LICENSE +2 -2
  8. data/vendor/nginx/auto/cc/conf +32 -0
  9. data/vendor/nginx/auto/cc/gcc +1 -1
  10. data/vendor/nginx/auto/cc/icc +2 -2
  11. data/vendor/nginx/auto/cc/msvc +29 -8
  12. data/vendor/nginx/auto/cc/name +2 -25
  13. data/vendor/nginx/auto/cc/sunc +3 -0
  14. data/vendor/nginx/auto/endianness +7 -2
  15. data/vendor/nginx/auto/install +60 -26
  16. data/vendor/nginx/auto/lib/conf +4 -4
  17. data/vendor/nginx/auto/lib/geoip/conf +6 -1
  18. data/vendor/nginx/auto/lib/libgd/conf +6 -1
  19. data/vendor/nginx/auto/lib/libxslt/conf +11 -2
  20. data/vendor/nginx/auto/lib/make +1 -1
  21. data/vendor/nginx/auto/lib/md5/conf +2 -2
  22. data/vendor/nginx/auto/lib/md5/make +2 -2
  23. data/vendor/nginx/auto/lib/openssl/conf +52 -3
  24. data/vendor/nginx/auto/lib/openssl/make +1 -1
  25. data/vendor/nginx/auto/lib/pcre/conf +2 -2
  26. data/vendor/nginx/auto/lib/pcre/make +2 -2
  27. data/vendor/nginx/auto/lib/perl/conf +6 -3
  28. data/vendor/nginx/auto/lib/perl/make +4 -1
  29. data/vendor/nginx/auto/lib/sha1/conf +2 -2
  30. data/vendor/nginx/auto/lib/sha1/make +2 -2
  31. data/vendor/nginx/auto/lib/zlib/conf +2 -2
  32. data/vendor/nginx/auto/lib/zlib/make +2 -2
  33. data/vendor/nginx/auto/make +281 -16
  34. data/vendor/nginx/auto/module +122 -0
  35. data/vendor/nginx/auto/modules +909 -178
  36. data/vendor/nginx/auto/options +81 -19
  37. data/vendor/nginx/auto/os/conf +9 -0
  38. data/vendor/nginx/auto/os/darwin +3 -0
  39. data/vendor/nginx/auto/os/freebsd +0 -20
  40. data/vendor/nginx/auto/os/linux +0 -12
  41. data/vendor/nginx/auto/os/win32 +5 -1
  42. data/vendor/nginx/auto/sources +11 -311
  43. data/vendor/nginx/auto/summary +1 -0
  44. data/vendor/nginx/auto/types/sizeof +5 -3
  45. data/vendor/nginx/auto/types/typedef +9 -4
  46. data/vendor/nginx/auto/types/uintptr_t +7 -2
  47. data/vendor/nginx/auto/unix +72 -12
  48. data/vendor/nginx/conf/fastcgi.conf +1 -0
  49. data/vendor/nginx/conf/fastcgi_params +1 -0
  50. data/vendor/nginx/conf/scgi_params +1 -0
  51. data/vendor/nginx/conf/uwsgi_params +1 -0
  52. data/vendor/nginx/configure +1 -1
  53. data/vendor/nginx/contrib/vim/syntax/nginx.vim +2 -2
  54. data/vendor/nginx/man/nginx.8 +6 -2
  55. data/vendor/nginx/src/core/nginx.c +281 -114
  56. data/vendor/nginx/src/core/nginx.h +2 -2
  57. data/vendor/nginx/src/core/ngx_conf_file.c +54 -13
  58. data/vendor/nginx/src/core/ngx_conf_file.h +8 -52
  59. data/vendor/nginx/src/core/ngx_config.h +0 -5
  60. data/vendor/nginx/src/core/ngx_connection.c +270 -37
  61. data/vendor/nginx/src/core/ngx_connection.h +35 -12
  62. data/vendor/nginx/src/core/ngx_core.h +4 -0
  63. data/vendor/nginx/src/core/ngx_crypt.c +2 -2
  64. data/vendor/nginx/src/core/ngx_cycle.c +72 -25
  65. data/vendor/nginx/src/core/ngx_cycle.h +28 -39
  66. data/vendor/nginx/src/core/ngx_file.c +14 -5
  67. data/vendor/nginx/src/core/ngx_file.h +2 -0
  68. data/vendor/nginx/src/core/ngx_hash.c +13 -1
  69. data/vendor/nginx/src/core/ngx_inet.c +20 -18
  70. data/vendor/nginx/src/core/ngx_log.c +12 -12
  71. data/vendor/nginx/src/core/ngx_log.h +13 -6
  72. data/vendor/nginx/src/core/ngx_module.c +360 -0
  73. data/vendor/nginx/src/core/ngx_module.h +307 -0
  74. data/vendor/nginx/src/core/ngx_open_file_cache.c +2 -2
  75. data/vendor/nginx/src/core/ngx_output_chain.c +8 -4
  76. data/vendor/nginx/src/core/ngx_palloc.c +42 -44
  77. data/vendor/nginx/src/{http/ngx_http_parse_time.c → core/ngx_parse_time.c} +2 -3
  78. data/vendor/nginx/src/core/ngx_parse_time.h +22 -0
  79. data/vendor/nginx/src/core/ngx_proxy_protocol.c +50 -1
  80. data/vendor/nginx/src/core/ngx_proxy_protocol.h +3 -1
  81. data/vendor/nginx/src/core/ngx_regex.c +1 -38
  82. data/vendor/nginx/src/core/ngx_resolver.c +1814 -320
  83. data/vendor/nginx/src/core/ngx_resolver.h +67 -10
  84. data/vendor/nginx/src/core/ngx_rwlock.c +120 -0
  85. data/vendor/nginx/src/core/ngx_rwlock.h +21 -0
  86. data/vendor/nginx/src/core/ngx_slab.c +6 -5
  87. data/vendor/nginx/src/core/ngx_string.c +1 -1
  88. data/vendor/nginx/src/core/ngx_syslog.c +11 -3
  89. data/vendor/nginx/src/core/ngx_syslog.h +2 -1
  90. data/vendor/nginx/src/core/ngx_thread_pool.c +4 -0
  91. data/vendor/nginx/src/core/ngx_times.c +2 -2
  92. data/vendor/nginx/src/event/modules/ngx_devpoll_module.c +3 -1
  93. data/vendor/nginx/src/event/modules/ngx_epoll_module.c +5 -2
  94. data/vendor/nginx/src/event/modules/ngx_eventport_module.c +5 -5
  95. data/vendor/nginx/src/event/modules/ngx_kqueue_module.c +15 -8
  96. data/vendor/nginx/src/event/modules/ngx_poll_module.c +0 -10
  97. data/vendor/nginx/src/event/modules/ngx_select_module.c +0 -10
  98. data/vendor/nginx/src/event/ngx_event.c +60 -103
  99. data/vendor/nginx/src/event/ngx_event.h +22 -26
  100. data/vendor/nginx/src/event/ngx_event_accept.c +414 -88
  101. data/vendor/nginx/src/event/ngx_event_connect.c +27 -18
  102. data/vendor/nginx/src/event/ngx_event_connect.h +1 -0
  103. data/vendor/nginx/src/event/ngx_event_openssl.c +65 -25
  104. data/vendor/nginx/src/event/ngx_event_openssl.h +17 -0
  105. data/vendor/nginx/src/event/ngx_event_openssl_stapling.c +73 -7
  106. data/vendor/nginx/src/event/ngx_event_pipe.c +85 -27
  107. data/vendor/nginx/src/event/ngx_event_pipe.h +10 -0
  108. data/vendor/nginx/src/http/modules/ngx_http_auth_basic_module.c +1 -1
  109. data/vendor/nginx/src/http/modules/ngx_http_auth_request_module.c +2 -2
  110. data/vendor/nginx/src/http/modules/ngx_http_chunked_filter_module.c +2 -2
  111. data/vendor/nginx/src/http/modules/ngx_http_dav_module.c +6 -6
  112. data/vendor/nginx/src/http/modules/ngx_http_fastcgi_module.c +17 -11
  113. data/vendor/nginx/src/http/modules/ngx_http_gzip_filter_module.c +2 -2
  114. data/vendor/nginx/src/http/modules/ngx_http_headers_filter_module.c +9 -9
  115. data/vendor/nginx/src/http/modules/ngx_http_image_filter_module.c +2 -2
  116. data/vendor/nginx/src/http/modules/ngx_http_limit_conn_module.c +2 -2
  117. data/vendor/nginx/src/http/modules/ngx_http_limit_req_module.c +0 -7
  118. data/vendor/nginx/src/http/modules/ngx_http_map_module.c +6 -6
  119. data/vendor/nginx/src/http/modules/ngx_http_memcached_module.c +2 -1
  120. data/vendor/nginx/src/http/modules/ngx_http_mp4_module.c +13 -13
  121. data/vendor/nginx/src/http/modules/ngx_http_not_modified_filter_module.c +2 -2
  122. data/vendor/nginx/src/http/modules/ngx_http_proxy_module.c +26 -21
  123. data/vendor/nginx/src/http/modules/ngx_http_random_index_module.c +1 -1
  124. data/vendor/nginx/src/http/modules/ngx_http_range_filter_module.c +26 -8
  125. data/vendor/nginx/src/http/modules/ngx_http_realip_module.c +73 -3
  126. data/vendor/nginx/src/http/modules/ngx_http_referer_module.c +1 -1
  127. data/vendor/nginx/src/http/modules/ngx_http_rewrite_module.c +6 -6
  128. data/vendor/nginx/src/http/modules/ngx_http_scgi_module.c +5 -3
  129. data/vendor/nginx/src/http/modules/ngx_http_slice_filter_module.c +526 -0
  130. data/vendor/nginx/src/http/modules/ngx_http_ssi_filter_module.c +7 -7
  131. data/vendor/nginx/src/http/modules/ngx_http_ssl_module.c +19 -16
  132. data/vendor/nginx/src/http/modules/ngx_http_static_module.c +1 -1
  133. data/vendor/nginx/src/http/modules/ngx_http_stub_status_module.c +1 -1
  134. data/vendor/nginx/src/http/modules/ngx_http_sub_filter_module.c +373 -173
  135. data/vendor/nginx/src/http/modules/ngx_http_upstream_hash_module.c +72 -46
  136. data/vendor/nginx/src/http/modules/ngx_http_upstream_ip_hash_module.c +18 -30
  137. data/vendor/nginx/src/http/modules/ngx_http_upstream_keepalive_module.c +50 -39
  138. data/vendor/nginx/src/http/modules/ngx_http_upstream_least_conn_module.c +38 -129
  139. data/vendor/nginx/src/http/modules/ngx_http_upstream_zone_module.c +246 -0
  140. data/vendor/nginx/src/http/modules/ngx_http_uwsgi_module.c +6 -5
  141. data/vendor/nginx/src/http/modules/perl/nginx.xs +9 -9
  142. data/vendor/nginx/src/http/ngx_http.c +46 -43
  143. data/vendor/nginx/src/http/ngx_http.h +4 -9
  144. data/vendor/nginx/src/http/ngx_http_cache.h +4 -0
  145. data/vendor/nginx/src/http/ngx_http_copy_filter_module.c +13 -5
  146. data/vendor/nginx/src/http/ngx_http_core_module.c +92 -91
  147. data/vendor/nginx/src/http/ngx_http_core_module.h +12 -8
  148. data/vendor/nginx/src/http/ngx_http_file_cache.c +61 -10
  149. data/vendor/nginx/src/http/ngx_http_request.c +37 -50
  150. data/vendor/nginx/src/http/ngx_http_request.h +10 -15
  151. data/vendor/nginx/src/http/ngx_http_request_body.c +64 -88
  152. data/vendor/nginx/src/http/ngx_http_script.c +3 -3
  153. data/vendor/nginx/src/http/ngx_http_special_response.c +1 -4
  154. data/vendor/nginx/src/http/ngx_http_upstream.c +245 -109
  155. data/vendor/nginx/src/http/ngx_http_upstream.h +11 -5
  156. data/vendor/nginx/src/http/ngx_http_upstream_round_robin.c +212 -65
  157. data/vendor/nginx/src/http/ngx_http_upstream_round_robin.h +66 -5
  158. data/vendor/nginx/src/http/ngx_http_variables.c +28 -15
  159. data/vendor/nginx/src/http/ngx_http_write_filter_module.c +1 -1
  160. data/vendor/nginx/src/http/v2/ngx_http_v2.c +4349 -0
  161. data/vendor/nginx/src/http/v2/ngx_http_v2.h +337 -0
  162. data/vendor/nginx/src/http/v2/ngx_http_v2_filter_module.c +1391 -0
  163. data/vendor/nginx/src/http/v2/ngx_http_v2_huff_decode.c +2714 -0
  164. data/vendor/nginx/src/http/v2/ngx_http_v2_huff_encode.c +254 -0
  165. data/vendor/nginx/src/http/v2/ngx_http_v2_module.c +469 -0
  166. data/vendor/nginx/src/http/{ngx_http_spdy_module.h → v2/ngx_http_v2_module.h} +10 -9
  167. data/vendor/nginx/src/http/v2/ngx_http_v2_table.c +349 -0
  168. data/vendor/nginx/src/mail/ngx_mail.c +49 -82
  169. data/vendor/nginx/src/mail/ngx_mail.h +16 -23
  170. data/vendor/nginx/src/mail/ngx_mail_auth_http_module.c +1 -1
  171. data/vendor/nginx/src/mail/ngx_mail_core_module.c +60 -34
  172. data/vendor/nginx/src/mail/ngx_mail_handler.c +17 -12
  173. data/vendor/nginx/src/mail/ngx_mail_proxy_module.c +1 -14
  174. data/vendor/nginx/src/mail/ngx_mail_smtp_handler.c +1 -1
  175. data/vendor/nginx/src/mail/ngx_mail_ssl_module.c +5 -5
  176. data/vendor/nginx/src/os/unix/ngx_atomic.h +10 -10
  177. data/vendor/nginx/src/os/unix/ngx_channel.h +4 -4
  178. data/vendor/nginx/src/os/unix/ngx_darwin_config.h +2 -0
  179. data/vendor/nginx/src/os/unix/ngx_darwin_init.c +1 -0
  180. data/vendor/nginx/src/os/unix/ngx_dlopen.c +28 -0
  181. data/vendor/nginx/src/os/unix/ngx_dlopen.h +31 -0
  182. data/vendor/nginx/src/os/unix/ngx_errno.h +1 -0
  183. data/vendor/nginx/src/os/unix/ngx_file_aio_read.c +1 -1
  184. data/vendor/nginx/src/os/unix/ngx_files.c +313 -80
  185. data/vendor/nginx/src/os/unix/ngx_files.h +5 -2
  186. data/vendor/nginx/src/os/unix/ngx_freebsd_config.h +3 -1
  187. data/vendor/nginx/src/os/unix/ngx_freebsd_init.c +1 -0
  188. data/vendor/nginx/src/os/unix/ngx_freebsd_sendfile_chain.c +13 -0
  189. data/vendor/nginx/src/os/unix/ngx_linux.h +0 -2
  190. data/vendor/nginx/src/os/unix/ngx_linux_aio_read.c +1 -1
  191. data/vendor/nginx/src/os/unix/ngx_linux_config.h +2 -6
  192. data/vendor/nginx/src/os/unix/ngx_linux_init.c +1 -33
  193. data/vendor/nginx/src/os/unix/ngx_linux_sendfile_chain.c +55 -12
  194. data/vendor/nginx/src/os/unix/ngx_os.h +3 -9
  195. data/vendor/nginx/src/os/unix/ngx_posix_config.h +14 -1
  196. data/vendor/nginx/src/os/unix/ngx_posix_init.c +2 -1
  197. data/vendor/nginx/src/os/unix/ngx_process.c +1 -1
  198. data/vendor/nginx/src/os/unix/ngx_process_cycle.c +25 -51
  199. data/vendor/nginx/src/os/unix/ngx_process_cycle.h +1 -0
  200. data/vendor/nginx/src/os/unix/ngx_readv_chain.c +24 -28
  201. data/vendor/nginx/src/os/unix/ngx_recv.c +30 -79
  202. data/vendor/nginx/src/os/unix/ngx_send.c +1 -1
  203. data/vendor/nginx/src/os/unix/ngx_setaffinity.c +14 -30
  204. data/vendor/nginx/src/os/unix/ngx_setaffinity.h +15 -1
  205. data/vendor/nginx/src/os/unix/ngx_solaris_config.h +2 -0
  206. data/vendor/nginx/src/os/unix/ngx_solaris_init.c +1 -0
  207. data/vendor/nginx/src/os/unix/ngx_solaris_sendfilev_chain.c +23 -0
  208. data/vendor/nginx/src/os/unix/ngx_sunpro_amd64.il +3 -3
  209. data/vendor/nginx/src/os/unix/ngx_sunpro_x86.il +3 -3
  210. data/vendor/nginx/src/os/unix/ngx_udp_recv.c +5 -48
  211. data/vendor/nginx/src/os/unix/ngx_udp_send.c +56 -0
  212. data/vendor/nginx/src/stream/ngx_stream.c +564 -0
  213. data/vendor/nginx/src/stream/ngx_stream.h +212 -0
  214. data/vendor/nginx/src/stream/ngx_stream_access_module.c +451 -0
  215. data/vendor/nginx/src/stream/ngx_stream_core_module.c +562 -0
  216. data/vendor/nginx/src/stream/ngx_stream_handler.c +344 -0
  217. data/vendor/nginx/src/stream/ngx_stream_limit_conn_module.c +632 -0
  218. data/vendor/nginx/src/stream/ngx_stream_proxy_module.c +1674 -0
  219. data/vendor/nginx/src/stream/ngx_stream_ssl_module.c +460 -0
  220. data/vendor/nginx/src/stream/ngx_stream_ssl_module.h +49 -0
  221. data/vendor/nginx/src/stream/ngx_stream_upstream.c +464 -0
  222. data/vendor/nginx/src/stream/ngx_stream_upstream.h +107 -0
  223. data/vendor/nginx/src/stream/ngx_stream_upstream_hash_module.c +656 -0
  224. data/vendor/nginx/src/stream/ngx_stream_upstream_least_conn_module.c +307 -0
  225. data/vendor/nginx/src/stream/ngx_stream_upstream_round_robin.c +702 -0
  226. data/vendor/nginx/src/stream/ngx_stream_upstream_round_robin.h +139 -0
  227. data/vendor/nginx/src/stream/ngx_stream_upstream_zone_module.c +242 -0
  228. metadata +39 -15
  229. data/vendor/nginx/src/event/modules/ngx_aio_module.c +0 -171
  230. data/vendor/nginx/src/event/modules/ngx_rtsig_module.c +0 -735
  231. data/vendor/nginx/src/http/ngx_http_spdy.c +0 -3701
  232. data/vendor/nginx/src/http/ngx_http_spdy.h +0 -261
  233. data/vendor/nginx/src/http/ngx_http_spdy_filter_module.c +0 -1222
  234. data/vendor/nginx/src/http/ngx_http_spdy_module.c +0 -408
  235. data/vendor/nginx/src/os/unix/ngx_aio_read.c +0 -109
  236. data/vendor/nginx/src/os/unix/ngx_aio_read_chain.c +0 -78
  237. data/vendor/nginx/src/os/unix/ngx_aio_write.c +0 -109
  238. data/vendor/nginx/src/os/unix/ngx_aio_write_chain.c +0 -100
@@ -0,0 +1,122 @@
1
+
2
+ # Copyright (C) Ruslan Ermilov
3
+ # Copyright (C) Nginx, Inc.
4
+
5
+
6
+ case $ngx_module_type in
7
+ HTTP_*) ngx_var=HTTP ;;
8
+ *) ngx_var=$ngx_module_type ;;
9
+ esac
10
+
11
+
12
+ if [ "$ngx_module_link" = DYNAMIC ]; then
13
+
14
+ for ngx_module in $ngx_module_name; do
15
+ # extract the first name
16
+ break
17
+ done
18
+
19
+ DYNAMIC_MODULES="$DYNAMIC_MODULES $ngx_module"
20
+ eval ${ngx_module}_SRCS=\"$ngx_module_srcs\"
21
+
22
+ eval ${ngx_module}_MODULES=\"$ngx_module_name\"
23
+
24
+ if [ -z "$ngx_module_order" -a \
25
+ \( "$ngx_module_type" = "HTTP_FILTER" \
26
+ -o "$ngx_module_type" = "HTTP_AUX_FILTER" \) ]
27
+ then
28
+ eval ${ngx_module}_ORDER=\"$ngx_module_name \
29
+ ngx_http_copy_filter_module\"
30
+ else
31
+ eval ${ngx_module}_ORDER=\"$ngx_module_order\"
32
+ fi
33
+
34
+ if test -n "$ngx_module_incs"; then
35
+ CORE_INCS="$CORE_INCS $ngx_module_incs"
36
+ fi
37
+
38
+ libs=
39
+ for lib in $ngx_module_libs
40
+ do
41
+ case $lib in
42
+
43
+ LIBXSLT | LIBGD | GEOIP | PERL)
44
+ libs="$libs \$NGX_LIB_$lib"
45
+
46
+ if eval [ "\$USE_${lib}" = NO ] ; then
47
+ eval USE_${lib}=DYNAMIC
48
+ fi
49
+ ;;
50
+
51
+ PCRE | OPENSSL | MD5 | SHA1 | ZLIB)
52
+ eval USE_${lib}=YES
53
+ ;;
54
+
55
+ *)
56
+ libs="$libs $lib"
57
+ ;;
58
+
59
+ esac
60
+ done
61
+ eval ${ngx_module}_LIBS=\'$libs\'
62
+
63
+ elif [ "$ngx_module_link" = YES ]; then
64
+
65
+ eval ${ngx_module_type}_MODULES=\"\$${ngx_module_type}_MODULES \
66
+ $ngx_module_name\"
67
+
68
+ eval ${ngx_var}_SRCS=\"\$${ngx_var}_SRCS $ngx_module_srcs\"
69
+
70
+ if test -n "$ngx_module_incs"; then
71
+ eval ${ngx_var}_INCS=\"\$${ngx_var}_INCS $ngx_module_incs\"
72
+ fi
73
+
74
+ if test -n "$ngx_module_deps"; then
75
+ eval ${ngx_var}_DEPS=\"\$${ngx_var}_DEPS $ngx_module_deps\"
76
+ fi
77
+
78
+ for lib in $ngx_module_libs
79
+ do
80
+ case $lib in
81
+
82
+ PCRE | OPENSSL | MD5 | SHA1 | ZLIB | LIBXSLT | LIBGD | PERL | GEOIP)
83
+ eval USE_${lib}=YES
84
+ ;;
85
+
86
+ *)
87
+ CORE_LIBS="$CORE_LIBS $lib"
88
+ ;;
89
+
90
+ esac
91
+ done
92
+
93
+ elif [ "$ngx_module_link" = ADDON ]; then
94
+
95
+ eval ${ngx_module_type}_MODULES=\"\$${ngx_module_type}_MODULES \
96
+ $ngx_module_name\"
97
+
98
+ NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_module_srcs"
99
+
100
+ if test -n "$ngx_module_incs"; then
101
+ eval ${ngx_var}_INCS=\"\$${ngx_var}_INCS $ngx_module_incs\"
102
+ fi
103
+
104
+ if test -n "$ngx_module_deps"; then
105
+ NGX_ADDON_DEPS="$NGX_ADDON_DEPS $ngx_module_deps"
106
+ fi
107
+
108
+ for lib in $ngx_module_libs
109
+ do
110
+ case $lib in
111
+
112
+ PCRE | OPENSSL | MD5 | SHA1 | ZLIB | LIBXSLT | LIBGD | PERL | GEOIP)
113
+ eval USE_${lib}=YES
114
+ ;;
115
+
116
+ *)
117
+ CORE_LIBS="$CORE_LIBS $lib"
118
+ ;;
119
+
120
+ esac
121
+ done
122
+ fi
@@ -49,19 +49,51 @@ if [ $NGX_TEST_BUILD_EPOLL = YES ]; then
49
49
  CORE_SRCS="$CORE_SRCS $EPOLL_SRCS"
50
50
  fi
51
51
 
52
- if [ $NGX_TEST_BUILD_RTSIG = YES ]; then
53
- have=NGX_HAVE_RTSIG . auto/have
54
- have=NGX_TEST_BUILD_RTSIG . auto/have
55
- EVENT_MODULES="$EVENT_MODULES $RTSIG_MODULE"
56
- CORE_SRCS="$CORE_SRCS $RTSIG_SRCS"
57
- fi
58
-
59
52
  if [ $NGX_TEST_BUILD_SOLARIS_SENDFILEV = YES ]; then
60
53
  have=NGX_TEST_BUILD_SOLARIS_SENDFILEV . auto/have
61
54
  CORE_SRCS="$CORE_SRCS $SOLARIS_SENDFILEV_SRCS"
62
55
  fi
63
56
 
64
57
 
58
+ HTTP_MODULES=
59
+ HTTP_DEPS=
60
+ HTTP_INCS=
61
+
62
+ ngx_module_type=HTTP
63
+
64
+ if :; then
65
+ ngx_module_name="ngx_http_module \
66
+ ngx_http_core_module \
67
+ ngx_http_log_module \
68
+ ngx_http_upstream_module"
69
+ ngx_module_incs="src/http src/http/modules"
70
+ ngx_module_deps="src/http/ngx_http.h \
71
+ src/http/ngx_http_request.h \
72
+ src/http/ngx_http_config.h \
73
+ src/http/ngx_http_core_module.h \
74
+ src/http/ngx_http_cache.h \
75
+ src/http/ngx_http_variables.h \
76
+ src/http/ngx_http_script.h \
77
+ src/http/ngx_http_upstream.h \
78
+ src/http/ngx_http_upstream_round_robin.h"
79
+ ngx_module_srcs="src/http/ngx_http.c \
80
+ src/http/ngx_http_core_module.c \
81
+ src/http/ngx_http_special_response.c \
82
+ src/http/ngx_http_request.c \
83
+ src/http/ngx_http_parse.c \
84
+ src/http/modules/ngx_http_log_module.c \
85
+ src/http/ngx_http_request_body.c \
86
+ src/http/ngx_http_variables.c \
87
+ src/http/ngx_http_script.c \
88
+ src/http/ngx_http_upstream.c \
89
+ src/http/ngx_http_upstream_round_robin.c"
90
+ ngx_module_libs=
91
+ ngx_module_link=YES
92
+
93
+ . auto/module
94
+ fi
95
+
96
+
65
97
  if [ $HTTP != YES ]; then
66
98
  have=NGX_CRYPT . auto/nohave
67
99
  CRYPT_LIB=
@@ -80,6 +112,11 @@ if [ $HTTP_SSI = YES ]; then
80
112
  fi
81
113
 
82
114
 
115
+ if [ $HTTP_SLICE = YES ]; then
116
+ HTTP_POSTPONE=YES
117
+ fi
118
+
119
+
83
120
  if [ $HTTP_ADDITION = YES ]; then
84
121
  HTTP_POSTPONE=YES
85
122
  fi
@@ -101,7 +138,7 @@ fi
101
138
  # ngx_http_write_filter
102
139
  # ngx_http_header_filter
103
140
  # ngx_http_chunked_filter
104
- # ngx_http_spdy_filter
141
+ # ngx_http_v2_filter
105
142
  # ngx_http_range_header_filter
106
143
  # ngx_http_gzip_filter
107
144
  # ngx_http_postpone_filter
@@ -117,286 +154,902 @@ fi
117
154
  # ngx_http_copy_filter
118
155
  # ngx_http_range_body_filter
119
156
  # ngx_http_not_modified_filter
120
-
121
- HTTP_FILTER_MODULES="$HTTP_WRITE_FILTER_MODULE \
122
- $HTTP_HEADER_FILTER_MODULE \
123
- $HTTP_CHUNKED_FILTER_MODULE"
124
-
125
- if [ $HTTP_SPDY = YES ]; then
126
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SPDY_FILTER_MODULE"
157
+ # ngx_http_slice_filter
158
+
159
+ ngx_module_type=HTTP_FILTER
160
+ HTTP_FILTER_MODULES=
161
+
162
+ ngx_module_order="ngx_http_static_module \
163
+ ngx_http_gzip_static_module \
164
+ ngx_http_dav_module \
165
+ ngx_http_autoindex_module \
166
+ ngx_http_index_module \
167
+ ngx_http_random_index_module \
168
+ ngx_http_access_module \
169
+ ngx_http_realip_module \
170
+ ngx_http_write_filter_module \
171
+ ngx_http_header_filter_module \
172
+ ngx_http_chunked_filter_module \
173
+ ngx_http_v2_filter_module \
174
+ ngx_http_range_header_filter_module \
175
+ ngx_http_gzip_filter_module \
176
+ ngx_http_postpone_filter_module \
177
+ ngx_http_ssi_filter_module \
178
+ ngx_http_charset_filter_module \
179
+ ngx_http_xslt_filter_module \
180
+ ngx_http_image_filter_module \
181
+ ngx_http_sub_filter_module \
182
+ ngx_http_addition_filter_module \
183
+ ngx_http_gunzip_filter_module \
184
+ ngx_http_userid_filter_module \
185
+ ngx_http_headers_filter_module \
186
+ ngx_http_copy_filter_module \
187
+ ngx_http_range_body_filter_module \
188
+ ngx_http_not_modified_filter_module \
189
+ ngx_http_slice_filter_module"
190
+
191
+ if :; then
192
+ ngx_module_name=ngx_http_write_filter_module
193
+ ngx_module_incs=
194
+ ngx_module_deps=
195
+ ngx_module_srcs=src/http/ngx_http_write_filter_module.c
196
+ ngx_module_libs=
197
+ ngx_module_link=YES
198
+
199
+ . auto/module
200
+ fi
201
+
202
+ if :; then
203
+ ngx_module_name=ngx_http_header_filter_module
204
+ ngx_module_incs=
205
+ ngx_module_deps=
206
+ ngx_module_srcs=src/http/ngx_http_header_filter_module.c
207
+ ngx_module_libs=
208
+ ngx_module_link=YES
209
+
210
+ . auto/module
211
+ fi
212
+
213
+ if :; then
214
+ ngx_module_name=ngx_http_chunked_filter_module
215
+ ngx_module_incs=
216
+ ngx_module_deps=
217
+ ngx_module_srcs=src/http/modules/ngx_http_chunked_filter_module.c
218
+ ngx_module_libs=
219
+ ngx_module_link=YES
220
+
221
+ . auto/module
222
+ fi
223
+
224
+ if [ $HTTP_V2 = YES ]; then
225
+ ngx_module_name=ngx_http_v2_filter_module
226
+ ngx_module_incs=
227
+ ngx_module_deps=
228
+ ngx_module_srcs=src/http/v2/ngx_http_v2_filter_module.c
229
+ ngx_module_libs=
230
+ ngx_module_link=$HTTP_V2
231
+
232
+ . auto/module
233
+ fi
234
+
235
+ if :; then
236
+ ngx_module_name=ngx_http_range_header_filter_module
237
+ ngx_module_incs=
238
+ ngx_module_deps=
239
+ ngx_module_srcs=src/http/modules/ngx_http_range_filter_module.c
240
+ ngx_module_libs=
241
+ ngx_module_link=YES
242
+
243
+ . auto/module
127
244
  fi
128
245
 
129
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_RANGE_HEADER_FILTER_MODULE"
130
-
131
246
  if [ $HTTP_GZIP = YES ]; then
132
247
  have=NGX_HTTP_GZIP . auto/have
133
248
  USE_ZLIB=YES
134
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_GZIP_FILTER_MODULE"
135
- HTTP_SRCS="$HTTP_SRCS $HTTP_GZIP_SRCS"
249
+
250
+ ngx_module_name=ngx_http_gzip_filter_module
251
+ ngx_module_incs=
252
+ ngx_module_deps=
253
+ ngx_module_srcs=src/http/modules/ngx_http_gzip_filter_module.c
254
+ ngx_module_libs=
255
+ ngx_module_link=$HTTP_GZIP
256
+
257
+ . auto/module
136
258
  fi
137
259
 
138
260
  if [ $HTTP_POSTPONE = YES ]; then
139
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_POSTPONE_FILTER_MODULE"
140
- HTTP_SRCS="$HTTP_SRCS $HTTP_POSTPONE_FILTER_SRCS"
261
+ ngx_module_name=ngx_http_postpone_filter_module
262
+ ngx_module_incs=
263
+ ngx_module_deps=
264
+ ngx_module_srcs=src/http/ngx_http_postpone_filter_module.c
265
+ ngx_module_libs=
266
+ ngx_module_link=$HTTP_POSTPONE
267
+
268
+ . auto/module
141
269
  fi
142
270
 
143
271
  if [ $HTTP_SSI = YES ]; then
144
272
  have=NGX_HTTP_SSI . auto/have
145
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SSI_FILTER_MODULE"
146
- HTTP_DEPS="$HTTP_DEPS $HTTP_SSI_DEPS"
147
- HTTP_SRCS="$HTTP_SRCS $HTTP_SSI_SRCS"
273
+
274
+ ngx_module_name=ngx_http_ssi_filter_module
275
+ ngx_module_incs=
276
+ ngx_module_deps=src/http/modules/ngx_http_ssi_filter_module.h
277
+ ngx_module_srcs=src/http/modules/ngx_http_ssi_filter_module.c
278
+ ngx_module_libs=
279
+ ngx_module_link=$HTTP_SSI
280
+
281
+ . auto/module
148
282
  fi
149
283
 
150
284
  if [ $HTTP_CHARSET = YES ]; then
151
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_CHARSET_FILTER_MODULE"
152
- HTTP_SRCS="$HTTP_SRCS $HTTP_CHARSET_SRCS"
285
+ ngx_module_name=ngx_http_charset_filter_module
286
+ ngx_module_incs=
287
+ ngx_module_deps=
288
+ ngx_module_srcs=src/http/modules/ngx_http_charset_filter_module.c
289
+ ngx_module_libs=
290
+ ngx_module_link=$HTTP_CHARSET
291
+
292
+ . auto/module
153
293
  fi
154
294
 
155
- if [ $HTTP_XSLT = YES ]; then
156
- USE_LIBXSLT=YES
157
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_XSLT_FILTER_MODULE"
158
- HTTP_SRCS="$HTTP_SRCS $HTTP_XSLT_SRCS"
295
+ if [ $HTTP_XSLT != NO ]; then
296
+ ngx_module_name=ngx_http_xslt_filter_module
297
+ ngx_module_incs=
298
+ ngx_module_deps=
299
+ ngx_module_srcs=src/http/modules/ngx_http_xslt_filter_module.c
300
+ ngx_module_libs=LIBXSLT
301
+ ngx_module_link=$HTTP_XSLT
302
+
303
+ . auto/module
159
304
  fi
160
305
 
161
- if [ $HTTP_IMAGE_FILTER = YES ]; then
162
- USE_LIBGD=YES
163
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_IMAGE_FILTER_MODULE"
164
- HTTP_SRCS="$HTTP_SRCS $HTTP_IMAGE_SRCS"
306
+ if [ $HTTP_IMAGE_FILTER != NO ]; then
307
+ ngx_module_name=ngx_http_image_filter_module
308
+ ngx_module_incs=
309
+ ngx_module_deps=
310
+ ngx_module_srcs=src/http/modules/ngx_http_image_filter_module.c
311
+ ngx_module_libs=LIBGD
312
+ ngx_module_link=$HTTP_IMAGE_FILTER
313
+
314
+ . auto/module
165
315
  fi
166
316
 
167
317
  if [ $HTTP_SUB = YES ]; then
168
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SUB_FILTER_MODULE"
169
- HTTP_SRCS="$HTTP_SRCS $HTTP_SUB_SRCS"
318
+ ngx_module_name=ngx_http_sub_filter_module
319
+ ngx_module_incs=
320
+ ngx_module_deps=
321
+ ngx_module_srcs=src/http/modules/ngx_http_sub_filter_module.c
322
+ ngx_module_libs=
323
+ ngx_module_link=$HTTP_SUB
324
+
325
+ . auto/module
170
326
  fi
171
327
 
172
328
  if [ $HTTP_ADDITION = YES ]; then
173
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_ADDITION_FILTER_MODULE"
174
- HTTP_SRCS="$HTTP_SRCS $HTTP_ADDITION_SRCS"
329
+ ngx_module_name=ngx_http_addition_filter_module
330
+ ngx_module_incs=
331
+ ngx_module_deps=
332
+ ngx_module_srcs=src/http/modules/ngx_http_addition_filter_module.c
333
+ ngx_module_libs=
334
+ ngx_module_link=$HTTP_ADDITION
335
+
336
+ . auto/module
175
337
  fi
176
338
 
177
339
  if [ $HTTP_GUNZIP = YES ]; then
178
340
  have=NGX_HTTP_GZIP . auto/have
179
341
  USE_ZLIB=YES
180
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_GUNZIP_FILTER_MODULE"
181
- HTTP_SRCS="$HTTP_SRCS $HTTP_GUNZIP_SRCS"
342
+
343
+ ngx_module_name=ngx_http_gunzip_filter_module
344
+ ngx_module_incs=
345
+ ngx_module_deps=
346
+ ngx_module_srcs=src/http/modules/ngx_http_gunzip_filter_module.c
347
+ ngx_module_libs=
348
+ ngx_module_link=$HTTP_GUNZIP
349
+
350
+ . auto/module
182
351
  fi
183
352
 
184
353
  if [ $HTTP_USERID = YES ]; then
185
- HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_USERID_FILTER_MODULE"
186
- HTTP_SRCS="$HTTP_SRCS $HTTP_USERID_SRCS"
354
+ ngx_module_name=ngx_http_userid_filter_module
355
+ ngx_module_incs=
356
+ ngx_module_deps=
357
+ ngx_module_srcs=src/http/modules/ngx_http_userid_filter_module.c
358
+ ngx_module_libs=
359
+ ngx_module_link=$HTTP_USERID
360
+
361
+ . auto/module
187
362
  fi
188
363
 
364
+ if :; then
365
+ ngx_module_name=ngx_http_headers_filter_module
366
+ ngx_module_incs=
367
+ ngx_module_deps=
368
+ ngx_module_srcs=src/http/modules/ngx_http_headers_filter_module.c
369
+ ngx_module_libs=
370
+ ngx_module_link=YES
189
371
 
190
- if [ $HTTP_SPDY = YES ]; then
191
- have=NGX_HTTP_SPDY . auto/have
192
- USE_ZLIB=YES
193
- HTTP_MODULES="$HTTP_MODULES $HTTP_SPDY_MODULE"
194
- HTTP_DEPS="$HTTP_DEPS $HTTP_SPDY_DEPS"
195
- HTTP_SRCS="$HTTP_SRCS $HTTP_SPDY_SRCS"
372
+ . auto/module
373
+ fi
374
+
375
+
376
+ ngx_module_type=HTTP_INIT_FILTER
377
+ HTTP_INIT_FILTER_MODULES=
378
+
379
+ if :; then
380
+ ngx_module_name=ngx_http_copy_filter_module
381
+ ngx_module_incs=
382
+ ngx_module_deps=
383
+ ngx_module_srcs=src/http/ngx_http_copy_filter_module.c
384
+ ngx_module_libs=
385
+ ngx_module_link=YES
386
+
387
+ . auto/module
388
+ fi
389
+
390
+ if :; then
391
+ ngx_module_name=ngx_http_range_body_filter_module
392
+ ngx_module_incs=
393
+ ngx_module_deps=
394
+ ngx_module_srcs=
395
+ ngx_module_libs=
396
+ ngx_module_link=YES
397
+
398
+ . auto/module
399
+ fi
400
+
401
+ if :; then
402
+ ngx_module_name=ngx_http_not_modified_filter_module
403
+ ngx_module_incs=
404
+ ngx_module_deps=
405
+ ngx_module_srcs=src/http/modules/ngx_http_not_modified_filter_module.c
406
+ ngx_module_libs=
407
+ ngx_module_link=YES
408
+
409
+ . auto/module
410
+ fi
411
+
412
+ if [ $HTTP_SLICE = YES ]; then
413
+ ngx_module_name=ngx_http_slice_filter_module
414
+ ngx_module_incs=
415
+ ngx_module_deps=
416
+ ngx_module_srcs=src/http/modules/ngx_http_slice_filter_module.c
417
+ ngx_module_libs=
418
+ ngx_module_link=$HTTP_SLICE
419
+
420
+ . auto/module
421
+ fi
422
+
423
+
424
+ ngx_module_type=HTTP
425
+
426
+ if [ $HTTP_V2 = YES ]; then
427
+ have=NGX_HTTP_V2 . auto/have
428
+
429
+ ngx_module_name=ngx_http_v2_module
430
+ ngx_module_incs=src/http/v2
431
+ ngx_module_deps="src/http/v2/ngx_http_v2.h src/http/v2/ngx_http_v2_module.h"
432
+ ngx_module_srcs="src/http/v2/ngx_http_v2.c \
433
+ src/http/v2/ngx_http_v2_table.c \
434
+ src/http/v2/ngx_http_v2_huff_decode.c \
435
+ src/http/v2/ngx_http_v2_huff_encode.c \
436
+ src/http/v2/ngx_http_v2_module.c"
437
+ ngx_module_libs=
438
+ ngx_module_link=$HTTP_V2
439
+
440
+ . auto/module
196
441
  fi
197
442
 
198
- HTTP_MODULES="$HTTP_MODULES $HTTP_STATIC_MODULE"
443
+ if :; then
444
+ ngx_module_name=ngx_http_static_module
445
+ ngx_module_incs=
446
+ ngx_module_deps=
447
+ ngx_module_srcs=src/http/modules/ngx_http_static_module.c
448
+ ngx_module_libs=
449
+ ngx_module_link=YES
450
+
451
+ . auto/module
452
+ fi
199
453
 
200
454
  if [ $HTTP_GZIP_STATIC = YES ]; then
201
455
  have=NGX_HTTP_GZIP . auto/have
202
- HTTP_MODULES="$HTTP_MODULES $HTTP_GZIP_STATIC_MODULE"
203
- HTTP_SRCS="$HTTP_SRCS $HTTP_GZIP_STATIC_SRCS"
456
+
457
+ ngx_module_name=ngx_http_gzip_static_module
458
+ ngx_module_incs=
459
+ ngx_module_deps=
460
+ ngx_module_srcs=src/http/modules/ngx_http_gzip_static_module.c
461
+ ngx_module_libs=
462
+ ngx_module_link=$HTTP_GZIP_STATIC
463
+
464
+ . auto/module
204
465
  fi
205
466
 
206
467
  if [ $HTTP_DAV = YES ]; then
207
468
  have=NGX_HTTP_DAV . auto/have
208
- HTTP_MODULES="$HTTP_MODULES $HTTP_DAV_MODULE"
209
- HTTP_SRCS="$HTTP_SRCS $HTTP_DAV_SRCS"
469
+
470
+ ngx_module_name=ngx_http_dav_module
471
+ ngx_module_incs=
472
+ ngx_module_deps=
473
+ ngx_module_srcs=src/http/modules/ngx_http_dav_module.c
474
+ ngx_module_libs=
475
+ ngx_module_link=$HTTP_DAV
476
+
477
+ . auto/module
210
478
  fi
211
479
 
212
480
  if [ $HTTP_AUTOINDEX = YES ]; then
213
- HTTP_MODULES="$HTTP_MODULES $HTTP_AUTOINDEX_MODULE"
214
- HTTP_SRCS="$HTTP_SRCS $HTTP_AUTOINDEX_SRCS"
481
+ ngx_module_name=ngx_http_autoindex_module
482
+ ngx_module_incs=
483
+ ngx_module_deps=
484
+ ngx_module_srcs=src/http/modules/ngx_http_autoindex_module.c
485
+ ngx_module_libs=
486
+ ngx_module_link=$HTTP_AUTOINDEX
487
+
488
+ . auto/module
215
489
  fi
216
490
 
217
- HTTP_MODULES="$HTTP_MODULES $HTTP_INDEX_MODULE"
491
+ if :; then
492
+ ngx_module_name=ngx_http_index_module
493
+ ngx_module_incs=
494
+ ngx_module_deps=
495
+ ngx_module_srcs=src/http/modules/ngx_http_index_module.c
496
+ ngx_module_libs=
497
+ ngx_module_link=YES
498
+
499
+ . auto/module
500
+ fi
218
501
 
219
502
  if [ $HTTP_RANDOM_INDEX = YES ]; then
220
- HTTP_MODULES="$HTTP_MODULES $HTTP_RANDOM_INDEX_MODULE"
221
- HTTP_SRCS="$HTTP_SRCS $HTTP_RANDOM_INDEX_SRCS"
503
+ ngx_module_name=ngx_http_random_index_module
504
+ ngx_module_incs=
505
+ ngx_module_deps=
506
+ ngx_module_srcs=src/http/modules/ngx_http_random_index_module.c
507
+ ngx_module_libs=
508
+ ngx_module_link=$HTTP_RANDOM_INDEX
509
+
510
+ . auto/module
222
511
  fi
223
512
 
224
513
  if [ $HTTP_AUTH_REQUEST = YES ]; then
225
- HTTP_MODULES="$HTTP_MODULES $HTTP_AUTH_REQUEST_MODULE"
226
- HTTP_SRCS="$HTTP_SRCS $HTTP_AUTH_REQUEST_SRCS"
514
+ ngx_module_name=ngx_http_auth_request_module
515
+ ngx_module_incs=
516
+ ngx_module_deps=
517
+ ngx_module_srcs=src/http/modules/ngx_http_auth_request_module.c
518
+ ngx_module_libs=
519
+ ngx_module_link=$HTTP_AUTH_REQUEST
520
+
521
+ . auto/module
227
522
  fi
228
523
 
229
524
  if [ $HTTP_AUTH_BASIC = YES ]; then
230
525
  USE_MD5=YES
231
526
  USE_SHA1=YES
232
527
  have=NGX_CRYPT . auto/have
233
- HTTP_MODULES="$HTTP_MODULES $HTTP_AUTH_BASIC_MODULE"
234
- HTTP_SRCS="$HTTP_SRCS $HTTP_AUTH_BASIC_SRCS"
235
- CORE_LIBS="$CORE_LIBS $CRYPT_LIB"
528
+
529
+ ngx_module_name=ngx_http_auth_basic_module
530
+ ngx_module_incs=
531
+ ngx_module_deps=
532
+ ngx_module_srcs=src/http/modules/ngx_http_auth_basic_module.c
533
+ ngx_module_libs=$CRYPT_LIB
534
+ ngx_module_link=$HTTP_AUTH_BASIC
535
+
536
+ . auto/module
236
537
  fi
237
538
 
238
539
  if [ $HTTP_ACCESS = YES ]; then
239
- HTTP_MODULES="$HTTP_MODULES $HTTP_ACCESS_MODULE"
240
- HTTP_SRCS="$HTTP_SRCS $HTTP_ACCESS_SRCS"
540
+ ngx_module_name=ngx_http_access_module
541
+ ngx_module_incs=
542
+ ngx_module_deps=
543
+ ngx_module_srcs=src/http/modules/ngx_http_access_module.c
544
+ ngx_module_libs=
545
+ ngx_module_link=$HTTP_ACCESS
546
+
547
+ . auto/module
241
548
  fi
242
549
 
243
550
  if [ $HTTP_LIMIT_CONN = YES ]; then
244
- HTTP_MODULES="$HTTP_MODULES $HTTP_LIMIT_CONN_MODULE"
245
- HTTP_SRCS="$HTTP_SRCS $HTTP_LIMIT_CONN_SRCS"
551
+ ngx_module_name=ngx_http_limit_conn_module
552
+ ngx_module_incs=
553
+ ngx_module_deps=
554
+ ngx_module_srcs=src/http/modules/ngx_http_limit_conn_module.c
555
+ ngx_module_libs=
556
+ ngx_module_link=$HTTP_LIMIT_CONN
557
+
558
+ . auto/module
246
559
  fi
247
560
 
248
561
  if [ $HTTP_LIMIT_REQ = YES ]; then
249
- HTTP_MODULES="$HTTP_MODULES $HTTP_LIMIT_REQ_MODULE"
250
- HTTP_SRCS="$HTTP_SRCS $HTTP_LIMIT_REQ_SRCS"
562
+ ngx_module_name=ngx_http_limit_req_module
563
+ ngx_module_incs=
564
+ ngx_module_deps=
565
+ ngx_module_srcs=src/http/modules/ngx_http_limit_req_module.c
566
+ ngx_module_libs=
567
+ ngx_module_link=$HTTP_LIMIT_REQ
568
+
569
+ . auto/module
251
570
  fi
252
571
 
253
572
  if [ $HTTP_REALIP = YES ]; then
254
573
  have=NGX_HTTP_REALIP . auto/have
255
574
  have=NGX_HTTP_X_FORWARDED_FOR . auto/have
256
- HTTP_MODULES="$HTTP_MODULES $HTTP_REALIP_MODULE"
257
- HTTP_SRCS="$HTTP_SRCS $HTTP_REALIP_SRCS"
575
+
576
+ ngx_module_name=ngx_http_realip_module
577
+ ngx_module_incs=
578
+ ngx_module_deps=
579
+ ngx_module_srcs=src/http/modules/ngx_http_realip_module.c
580
+ ngx_module_libs=
581
+ ngx_module_link=$HTTP_REALIP
582
+
583
+ . auto/module
258
584
  fi
259
585
 
260
586
  if [ $HTTP_STATUS = YES ]; then
261
- HTTP_MODULES="$HTTP_MODULES $HTTP_STATUS_MODULE"
262
- HTTP_SRCS="$HTTP_SRCS $HTTP_STATUS_SRCS"
587
+ ngx_module_name=ngx_http_status_module
588
+ ngx_module_incs=
589
+ ngx_module_deps=
590
+ ngx_module_srcs=src/http/modules/ngx_http_status_module.c
591
+ ngx_module_libs=
592
+ ngx_module_link=$HTTP_STATUS
593
+
594
+ . auto/module
263
595
  fi
264
596
 
265
597
  if [ $HTTP_GEO = YES ]; then
266
598
  have=NGX_HTTP_X_FORWARDED_FOR . auto/have
267
- HTTP_MODULES="$HTTP_MODULES $HTTP_GEO_MODULE"
268
- HTTP_SRCS="$HTTP_SRCS $HTTP_GEO_SRCS"
599
+
600
+ ngx_module_name=ngx_http_geo_module
601
+ ngx_module_incs=
602
+ ngx_module_deps=
603
+ ngx_module_srcs=src/http/modules/ngx_http_geo_module.c
604
+ ngx_module_libs=
605
+ ngx_module_link=$HTTP_GEO
606
+
607
+ . auto/module
269
608
  fi
270
609
 
271
- if [ $HTTP_GEOIP = YES ]; then
610
+ if [ $HTTP_GEOIP != NO ]; then
272
611
  have=NGX_HTTP_X_FORWARDED_FOR . auto/have
273
- HTTP_MODULES="$HTTP_MODULES $HTTP_GEOIP_MODULE"
274
- HTTP_SRCS="$HTTP_SRCS $HTTP_GEOIP_SRCS"
612
+
613
+ ngx_module_name=ngx_http_geoip_module
614
+ ngx_module_incs=
615
+ ngx_module_deps=
616
+ ngx_module_srcs=src/http/modules/ngx_http_geoip_module.c
617
+ ngx_module_libs=GEOIP
618
+ ngx_module_link=$HTTP_GEOIP
619
+
620
+ . auto/module
275
621
  fi
276
622
 
277
623
  if [ $HTTP_MAP = YES ]; then
278
- HTTP_MODULES="$HTTP_MODULES $HTTP_MAP_MODULE"
279
- HTTP_SRCS="$HTTP_SRCS $HTTP_MAP_SRCS"
624
+ ngx_module_name=ngx_http_map_module
625
+ ngx_module_incs=
626
+ ngx_module_deps=
627
+ ngx_module_srcs=src/http/modules/ngx_http_map_module.c
628
+ ngx_module_libs=
629
+ ngx_module_link=$HTTP_MAP
630
+
631
+ . auto/module
280
632
  fi
281
633
 
282
634
  if [ $HTTP_SPLIT_CLIENTS = YES ]; then
283
- HTTP_MODULES="$HTTP_MODULES $HTTP_SPLIT_CLIENTS_MODULE"
284
- HTTP_SRCS="$HTTP_SRCS $HTTP_SPLIT_CLIENTS_SRCS"
635
+ ngx_module_name=ngx_http_split_clients_module
636
+ ngx_module_incs=
637
+ ngx_module_deps=
638
+ ngx_module_srcs=src/http/modules/ngx_http_split_clients_module.c
639
+ ngx_module_libs=
640
+ ngx_module_link=$HTTP_SPLIT_CLIENTS
641
+
642
+ . auto/module
285
643
  fi
286
644
 
287
645
  if [ $HTTP_REFERER = YES ]; then
288
- HTTP_MODULES="$HTTP_MODULES $HTTP_REFERER_MODULE"
289
- HTTP_SRCS="$HTTP_SRCS $HTTP_REFERER_SRCS"
646
+ ngx_module_name=ngx_http_referer_module
647
+ ngx_module_incs=
648
+ ngx_module_deps=
649
+ ngx_module_srcs=src/http/modules/ngx_http_referer_module.c
650
+ ngx_module_libs=
651
+ ngx_module_link=$HTTP_REFERER
652
+
653
+ . auto/module
290
654
  fi
291
655
 
292
656
  if [ $HTTP_REWRITE = YES -a $USE_PCRE != DISABLED ]; then
293
657
  USE_PCRE=YES
294
- HTTP_MODULES="$HTTP_MODULES $HTTP_REWRITE_MODULE"
295
- HTTP_SRCS="$HTTP_SRCS $HTTP_REWRITE_SRCS"
658
+
659
+ ngx_module_name=ngx_http_rewrite_module
660
+ ngx_module_incs=
661
+ ngx_module_deps=
662
+ ngx_module_srcs=src/http/modules/ngx_http_rewrite_module.c
663
+ ngx_module_libs=
664
+ ngx_module_link=$HTTP_REWRITE
665
+
666
+ . auto/module
296
667
  fi
297
668
 
298
669
  if [ $HTTP_SSL = YES ]; then
299
670
  USE_OPENSSL=YES
300
671
  have=NGX_HTTP_SSL . auto/have
301
- HTTP_MODULES="$HTTP_MODULES $HTTP_SSL_MODULE"
302
- HTTP_DEPS="$HTTP_DEPS $HTTP_SSL_DEPS"
303
- HTTP_SRCS="$HTTP_SRCS $HTTP_SSL_SRCS"
672
+
673
+ ngx_module_name=ngx_http_ssl_module
674
+ ngx_module_incs=
675
+ ngx_module_deps=src/http/modules/ngx_http_ssl_module.h
676
+ ngx_module_srcs=src/http/modules/ngx_http_ssl_module.c
677
+ ngx_module_libs=
678
+ ngx_module_link=$HTTP_SSL
679
+
680
+ . auto/module
304
681
  fi
305
682
 
306
683
  if [ $HTTP_PROXY = YES ]; then
307
684
  have=NGX_HTTP_X_FORWARDED_FOR . auto/have
308
685
  #USE_MD5=YES
309
- HTTP_MODULES="$HTTP_MODULES $HTTP_PROXY_MODULE"
310
- HTTP_DEPS="$HTTP_DEPS $HTTP_PROXY_DEPS"
311
- HTTP_SRCS="$HTTP_SRCS $HTTP_PROXY_SRCS"
686
+
687
+ ngx_module_name=ngx_http_proxy_module
688
+ ngx_module_incs=
689
+ ngx_module_deps=
690
+ ngx_module_srcs=src/http/modules/ngx_http_proxy_module.c
691
+ ngx_module_libs=
692
+ ngx_module_link=$HTTP_PROXY
693
+
694
+ . auto/module
312
695
  fi
313
696
 
314
697
  if [ $HTTP_FASTCGI = YES ]; then
315
- HTTP_MODULES="$HTTP_MODULES $HTTP_FASTCGI_MODULE"
316
- HTTP_SRCS="$HTTP_SRCS $HTTP_FASTCGI_SRCS"
698
+ ngx_module_name=ngx_http_fastcgi_module
699
+ ngx_module_incs=
700
+ ngx_module_deps=
701
+ ngx_module_srcs=src/http/modules/ngx_http_fastcgi_module.c
702
+ ngx_module_libs=
703
+ ngx_module_link=$HTTP_FASTCGI
704
+
705
+ . auto/module
317
706
  fi
318
707
 
319
708
  if [ $HTTP_UWSGI = YES ]; then
320
- HTTP_MODULES="$HTTP_MODULES $HTTP_UWSGI_MODULE"
321
- HTTP_SRCS="$HTTP_SRCS $HTTP_UWSGI_SRCS"
709
+ ngx_module_name=ngx_http_uwsgi_module
710
+ ngx_module_incs=
711
+ ngx_module_deps=
712
+ ngx_module_srcs=src/http/modules/ngx_http_uwsgi_module.c
713
+ ngx_module_libs=
714
+ ngx_module_link=$HTTP_UWSGI
715
+
716
+ . auto/module
322
717
  fi
323
718
 
324
719
  if [ $HTTP_SCGI = YES ]; then
325
- HTTP_MODULES="$HTTP_MODULES $HTTP_SCGI_MODULE"
326
- HTTP_SRCS="$HTTP_SRCS $HTTP_SCGI_SRCS"
720
+ ngx_module_name=ngx_http_scgi_module
721
+ ngx_module_incs=
722
+ ngx_module_deps=
723
+ ngx_module_srcs=src/http/modules/ngx_http_scgi_module.c
724
+ ngx_module_libs=
725
+ ngx_module_link=$HTTP_SCGI
726
+
727
+ . auto/module
327
728
  fi
328
729
 
329
- if [ $HTTP_PERL = YES ]; then
330
- USE_PERL=YES
331
- HTTP_MODULES="$HTTP_MODULES $HTTP_PERL_MODULE"
332
- HTTP_INCS="$HTTP_INCS $HTTP_PERL_INCS"
333
- HTTP_DEPS="$HTTP_DEPS $HTTP_PERL_DEPS"
334
- HTTP_SRCS="$HTTP_SRCS $HTTP_PERL_SRCS"
730
+ if [ $HTTP_PERL != NO ]; then
731
+ ngx_module_name=ngx_http_perl_module
732
+ ngx_module_incs=src/http/modules/perl
733
+ ngx_module_deps=src/http/modules/perl/ngx_http_perl_module.h
734
+ ngx_module_srcs=src/http/modules/perl/ngx_http_perl_module.c
735
+ ngx_module_libs=PERL
736
+ ngx_module_link=$HTTP_PERL
737
+
738
+ . auto/module
335
739
  fi
336
740
 
337
741
  if [ $HTTP_MEMCACHED = YES ]; then
338
- HTTP_MODULES="$HTTP_MODULES $HTTP_MEMCACHED_MODULE"
339
- HTTP_SRCS="$HTTP_SRCS $HTTP_MEMCACHED_SRCS"
742
+ ngx_module_name=ngx_http_memcached_module
743
+ ngx_module_incs=
744
+ ngx_module_deps=
745
+ ngx_module_srcs=src/http/modules/ngx_http_memcached_module.c
746
+ ngx_module_libs=
747
+ ngx_module_link=$HTTP_MEMCACHED
748
+
749
+ . auto/module
340
750
  fi
341
751
 
342
752
  if [ $HTTP_EMPTY_GIF = YES ]; then
343
- HTTP_MODULES="$HTTP_MODULES $HTTP_EMPTY_GIF_MODULE"
344
- HTTP_SRCS="$HTTP_SRCS $HTTP_EMPTY_GIF_SRCS"
753
+ ngx_module_name=ngx_http_empty_gif_module
754
+ ngx_module_incs=
755
+ ngx_module_deps=
756
+ ngx_module_srcs=src/http/modules/ngx_http_empty_gif_module.c
757
+ ngx_module_libs=
758
+ ngx_module_link=$HTTP_EMPTY_GIF
759
+
760
+ . auto/module
345
761
  fi
346
762
 
347
763
  if [ $HTTP_BROWSER = YES ]; then
348
- HTTP_MODULES="$HTTP_MODULES $HTTP_BROWSER_MODULE"
349
- HTTP_SRCS="$HTTP_SRCS $HTTP_BROWSER_SRCS"
764
+ ngx_module_name=ngx_http_browser_module
765
+ ngx_module_incs=
766
+ ngx_module_deps=
767
+ ngx_module_srcs=src/http/modules/ngx_http_browser_module.c
768
+ ngx_module_libs=
769
+ ngx_module_link=$HTTP_BROWSER
770
+
771
+ . auto/module
350
772
  fi
351
773
 
352
774
  if [ $HTTP_SECURE_LINK = YES ]; then
353
775
  USE_MD5=YES
354
- HTTP_MODULES="$HTTP_MODULES $HTTP_SECURE_LINK_MODULE"
355
- HTTP_SRCS="$HTTP_SRCS $HTTP_SECURE_LINK_SRCS"
776
+
777
+ ngx_module_name=ngx_http_secure_link_module
778
+ ngx_module_incs=
779
+ ngx_module_deps=
780
+ ngx_module_srcs=src/http/modules/ngx_http_secure_link_module.c
781
+ ngx_module_libs=
782
+ ngx_module_link=$HTTP_SECURE_LINK
783
+
784
+ . auto/module
356
785
  fi
357
786
 
358
787
  if [ $HTTP_DEGRADATION = YES ]; then
359
788
  have=NGX_HTTP_DEGRADATION . auto/have
360
- HTTP_MODULES="$HTTP_MODULES $HTTP_DEGRADATION_MODULE"
361
- HTTP_SRCS="$HTTP_SRCS $HTTP_DEGRADATION_SRCS"
789
+
790
+ ngx_module_name=ngx_http_degradation_module
791
+ ngx_module_incs=
792
+ ngx_module_deps=
793
+ ngx_module_srcs=src/http/modules/ngx_http_degradation_module.c
794
+ ngx_module_libs=
795
+ ngx_module_link=$HTTP_DEGRADATION
796
+
797
+ . auto/module
362
798
  fi
363
799
 
364
800
  if [ $HTTP_FLV = YES ]; then
365
- HTTP_MODULES="$HTTP_MODULES $HTTP_FLV_MODULE"
366
- HTTP_SRCS="$HTTP_SRCS $HTTP_FLV_SRCS"
801
+ ngx_module_name=ngx_http_flv_module
802
+ ngx_module_incs=
803
+ ngx_module_deps=
804
+ ngx_module_srcs=src/http/modules/ngx_http_flv_module.c
805
+ ngx_module_libs=
806
+ ngx_module_link=$HTTP_FLV
807
+
808
+ . auto/module
367
809
  fi
368
810
 
369
811
  if [ $HTTP_MP4 = YES ]; then
370
- HTTP_MODULES="$HTTP_MODULES $HTTP_MP4_MODULE"
371
- HTTP_SRCS="$HTTP_SRCS $HTTP_MP4_SRCS"
812
+ ngx_module_name=ngx_http_mp4_module
813
+ ngx_module_incs=
814
+ ngx_module_deps=
815
+ ngx_module_srcs=src/http/modules/ngx_http_mp4_module.c
816
+ ngx_module_libs=
817
+ ngx_module_link=$HTTP_MP4
818
+
819
+ . auto/module
372
820
  fi
373
821
 
374
822
  if [ $HTTP_UPSTREAM_HASH = YES ]; then
375
- HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_HASH_MODULE"
376
- HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_HASH_SRCS"
823
+ ngx_module_name=ngx_http_upstream_hash_module
824
+ ngx_module_incs=
825
+ ngx_module_deps=
826
+ ngx_module_srcs=src/http/modules/ngx_http_upstream_hash_module.c
827
+ ngx_module_libs=
828
+ ngx_module_link=$HTTP_UPSTREAM_HASH
829
+
830
+ . auto/module
377
831
  fi
378
832
 
379
833
  if [ $HTTP_UPSTREAM_IP_HASH = YES ]; then
380
- HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_IP_HASH_MODULE"
381
- HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_IP_HASH_SRCS"
834
+ ngx_module_name=ngx_http_upstream_ip_hash_module
835
+ ngx_module_incs=
836
+ ngx_module_deps=
837
+ ngx_module_srcs=src/http/modules/ngx_http_upstream_ip_hash_module.c
838
+ ngx_module_libs=
839
+ ngx_module_link=$HTTP_UPSTREAM_IP_HASH
840
+
841
+ . auto/module
382
842
  fi
383
843
 
384
844
  if [ $HTTP_UPSTREAM_LEAST_CONN = YES ]; then
385
- HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_LEAST_CONN_MODULE"
386
- HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_LEAST_CONN_SRCS"
845
+ ngx_module_name=ngx_http_upstream_least_conn_module
846
+ ngx_module_incs=
847
+ ngx_module_deps=
848
+ ngx_module_srcs=src/http/modules/ngx_http_upstream_least_conn_module.c
849
+ ngx_module_libs=
850
+ ngx_module_link=$HTTP_UPSTREAM_LEAST_CONN
851
+
852
+ . auto/module
387
853
  fi
388
854
 
389
855
  if [ $HTTP_UPSTREAM_KEEPALIVE = YES ]; then
390
- HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_KEEPALIVE_MODULE"
391
- HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_KEEPALIVE_SRCS"
856
+ ngx_module_name=ngx_http_upstream_keepalive_module
857
+ ngx_module_incs=
858
+ ngx_module_deps=
859
+ ngx_module_srcs=src/http/modules/ngx_http_upstream_keepalive_module.c
860
+ ngx_module_libs=
861
+ ngx_module_link=$HTTP_UPSTREAM_KEEPALIVE
862
+
863
+ . auto/module
864
+ fi
865
+
866
+ if [ $HTTP_UPSTREAM_ZONE = YES ]; then
867
+ have=NGX_HTTP_UPSTREAM_ZONE . auto/have
868
+
869
+ ngx_module_name=ngx_http_upstream_zone_module
870
+ ngx_module_incs=
871
+ ngx_module_deps=
872
+ ngx_module_srcs=src/http/modules/ngx_http_upstream_zone_module.c
873
+ ngx_module_libs=
874
+ ngx_module_link=$HTTP_UPSTREAM_ZONE
875
+
876
+ . auto/module
392
877
  fi
393
878
 
394
879
  if [ $HTTP_STUB_STATUS = YES ]; then
395
880
  have=NGX_STAT_STUB . auto/have
396
- HTTP_MODULES="$HTTP_MODULES ngx_http_stub_status_module"
397
- HTTP_SRCS="$HTTP_SRCS src/http/modules/ngx_http_stub_status_module.c"
881
+
882
+ ngx_module_name=ngx_http_stub_status_module
883
+ ngx_module_incs=
884
+ ngx_module_deps=
885
+ ngx_module_srcs=src/http/modules/ngx_http_stub_status_module.c
886
+ ngx_module_libs=
887
+ ngx_module_link=$HTTP_STUB_STATUS
888
+
889
+ . auto/module
398
890
  fi
399
891
 
892
+
893
+ if [ $MAIL != NO ]; then
894
+ MAIL_MODULES=
895
+ MAIL_DEPS=
896
+ MAIL_INCS=
897
+
898
+ ngx_module_type=MAIL
899
+ ngx_module_libs=
900
+ ngx_module_link=YES
901
+
902
+ ngx_module_order=
903
+
904
+ ngx_module_name="ngx_mail_module ngx_mail_core_module"
905
+ ngx_module_incs="src/mail"
906
+ ngx_module_deps="src/mail/ngx_mail.h"
907
+ ngx_module_srcs="src/mail/ngx_mail.c \
908
+ src/mail/ngx_mail_core_module.c \
909
+ src/mail/ngx_mail_handler.c \
910
+ src/mail/ngx_mail_parse.c"
911
+
912
+ . auto/module
913
+
914
+ ngx_module_incs=
915
+
916
+ if [ $MAIL_SSL = YES ]; then
917
+ USE_OPENSSL=YES
918
+ have=NGX_MAIL_SSL . auto/have
919
+
920
+ ngx_module_name=ngx_mail_ssl_module
921
+ ngx_module_deps=src/mail/ngx_mail_ssl_module.h
922
+ ngx_module_srcs=src/mail/ngx_mail_ssl_module.c
923
+
924
+ . auto/module
925
+ fi
926
+
927
+ if [ $MAIL_POP3 = YES ]; then
928
+ ngx_module_name=ngx_mail_pop3_module
929
+ ngx_module_deps=src/mail/ngx_mail_pop3_module.h
930
+ ngx_module_srcs="src/mail/ngx_mail_pop3_module.c \
931
+ src/mail/ngx_mail_pop3_handler.c"
932
+
933
+ . auto/module
934
+ fi
935
+
936
+ if [ $MAIL_IMAP = YES ]; then
937
+ ngx_module_name=ngx_mail_imap_module
938
+ ngx_module_deps=src/mail/ngx_mail_imap_module.h
939
+ ngx_module_srcs="src/mail/ngx_mail_imap_module.c \
940
+ src/mail/ngx_mail_imap_handler.c"
941
+
942
+ . auto/module
943
+ fi
944
+
945
+ if [ $MAIL_SMTP = YES ]; then
946
+ ngx_module_name=ngx_mail_smtp_module
947
+ ngx_module_deps=src/mail/ngx_mail_smtp_module.h
948
+ ngx_module_srcs="src/mail/ngx_mail_smtp_module.c \
949
+ src/mail/ngx_mail_smtp_handler.c"
950
+
951
+ . auto/module
952
+ fi
953
+
954
+ ngx_module_name=ngx_mail_auth_http_module
955
+ ngx_module_deps=
956
+ ngx_module_srcs=src/mail/ngx_mail_auth_http_module.c
957
+
958
+ . auto/module
959
+
960
+ ngx_module_name=ngx_mail_proxy_module
961
+ ngx_module_deps=
962
+ ngx_module_srcs=src/mail/ngx_mail_proxy_module.c
963
+
964
+ . auto/module
965
+ fi
966
+
967
+
968
+ if [ $STREAM != NO ]; then
969
+ STREAM_MODULES=
970
+ STREAM_DEPS=
971
+ STREAM_INCS=
972
+
973
+ ngx_module_type=STREAM
974
+ ngx_module_libs=
975
+ ngx_module_link=YES
976
+
977
+ ngx_module_order=
978
+
979
+ ngx_module_name="ngx_stream_module \
980
+ ngx_stream_core_module \
981
+ ngx_stream_proxy_module \
982
+ ngx_stream_upstream_module"
983
+ ngx_module_incs="src/stream"
984
+ ngx_module_deps="src/stream/ngx_stream.h \
985
+ src/stream/ngx_stream_upstream.h \
986
+ src/stream/ngx_stream_upstream_round_robin.h"
987
+ ngx_module_srcs="src/stream/ngx_stream.c \
988
+ src/stream/ngx_stream_handler.c \
989
+ src/stream/ngx_stream_core_module.c \
990
+ src/stream/ngx_stream_proxy_module.c \
991
+ src/stream/ngx_stream_upstream.c \
992
+ src/stream/ngx_stream_upstream_round_robin.c"
993
+
994
+ . auto/module
995
+
996
+ ngx_module_incs=
997
+
998
+ if [ $STREAM_SSL = YES ]; then
999
+ USE_OPENSSL=YES
1000
+ have=NGX_STREAM_SSL . auto/have
1001
+
1002
+ ngx_module_name=ngx_stream_ssl_module
1003
+ ngx_module_deps=src/stream/ngx_stream_ssl_module.h
1004
+ ngx_module_srcs=src/stream/ngx_stream_ssl_module.c
1005
+
1006
+ . auto/module
1007
+ fi
1008
+
1009
+ if [ $STREAM_LIMIT_CONN = YES ]; then
1010
+ ngx_module_name=ngx_stream_limit_conn_module
1011
+ ngx_module_deps=
1012
+ ngx_module_srcs=src/stream/ngx_stream_limit_conn_module.c
1013
+
1014
+ . auto/module
1015
+ fi
1016
+
1017
+ if [ $STREAM_ACCESS = YES ]; then
1018
+ ngx_module_name=ngx_stream_access_module
1019
+ ngx_module_deps=
1020
+ ngx_module_srcs=src/stream/ngx_stream_access_module.c
1021
+
1022
+ . auto/module
1023
+ fi
1024
+
1025
+ if [ $STREAM_UPSTREAM_HASH = YES ]; then
1026
+ ngx_module_name=ngx_stream_upstream_hash_module
1027
+ ngx_module_deps=
1028
+ ngx_module_srcs=src/stream/ngx_stream_upstream_hash_module.c
1029
+
1030
+ . auto/module
1031
+ fi
1032
+
1033
+ if [ $STREAM_UPSTREAM_LEAST_CONN = YES ]; then
1034
+ ngx_module_name=ngx_stream_upstream_least_conn_module
1035
+ ngx_module_deps=
1036
+ ngx_module_srcs=src/stream/ngx_stream_upstream_least_conn_module.c
1037
+
1038
+ . auto/module
1039
+ fi
1040
+
1041
+ if [ $STREAM_UPSTREAM_ZONE = YES ]; then
1042
+ have=NGX_STREAM_UPSTREAM_ZONE . auto/have
1043
+
1044
+ ngx_module_name=ngx_stream_upstream_zone_module
1045
+ ngx_module_deps=
1046
+ ngx_module_srcs=src/stream/ngx_stream_upstream_zone_module.c
1047
+
1048
+ . auto/module
1049
+ fi
1050
+ fi
1051
+
1052
+
400
1053
  #if [ -r $NGX_OBJS/auto ]; then
401
1054
  # . $NGX_OBJS/auto
402
1055
  #fi
@@ -410,6 +1063,15 @@ if test -n "$NGX_ADDONS"; then
410
1063
  do
411
1064
  echo "adding module in $ngx_addon_dir"
412
1065
 
1066
+ ngx_module_type=
1067
+ ngx_module_name=
1068
+ ngx_module_incs=
1069
+ ngx_module_deps=
1070
+ ngx_module_srcs=
1071
+ ngx_module_libs=
1072
+ ngx_module_order=
1073
+ ngx_module_link=ADDON
1074
+
413
1075
  if test -f $ngx_addon_dir/config; then
414
1076
  . $ngx_addon_dir/config
415
1077
 
@@ -423,93 +1085,149 @@ if test -n "$NGX_ADDONS"; then
423
1085
  fi
424
1086
 
425
1087
 
426
- if [ $MAIL_SSL = YES ]; then
427
- have=NGX_MAIL_SSL . auto/have
428
- USE_OPENSSL=YES
429
- fi
1088
+ if test -n "$DYNAMIC_ADDONS"; then
430
1089
 
1090
+ echo configuring additional dynamic modules
431
1091
 
432
- modules="$CORE_MODULES $EVENT_MODULES"
1092
+ for ngx_addon_dir in $DYNAMIC_ADDONS
1093
+ do
1094
+ echo "adding module in $ngx_addon_dir"
433
1095
 
1096
+ ngx_module_type=
1097
+ ngx_module_name=
1098
+ ngx_module_incs=
1099
+ ngx_module_deps=
1100
+ ngx_module_srcs=
1101
+ ngx_module_libs=
1102
+ ngx_module_order=
1103
+ ngx_module_link=DYNAMIC
434
1104
 
435
- # thread pool module should be initialized after events
436
- if [ $USE_THREADS = YES ]; then
437
- modules="$modules $THREAD_POOL_MODULE"
1105
+ if test -f $ngx_addon_dir/config; then
1106
+ . $ngx_addon_dir/config
1107
+
1108
+ echo " + $ngx_addon_name was configured"
1109
+
1110
+ else
1111
+ echo "$0: error: no $ngx_addon_dir/config was found"
1112
+ exit 1
1113
+ fi
1114
+ done
438
1115
  fi
439
1116
 
440
1117
 
441
1118
  if [ $USE_OPENSSL = YES ]; then
442
- modules="$modules $OPENSSL_MODULE"
443
- CORE_DEPS="$CORE_DEPS $OPENSSL_DEPS"
444
- CORE_SRCS="$CORE_SRCS $OPENSSL_SRCS"
1119
+ ngx_module_type=CORE
1120
+ ngx_module_name=ngx_openssl_module
1121
+ ngx_module_incs=
1122
+ ngx_module_deps=src/event/ngx_event_openssl.h
1123
+ ngx_module_srcs="src/event/ngx_event_openssl.c
1124
+ src/event/ngx_event_openssl_stapling.c"
1125
+ ngx_module_libs=
1126
+ ngx_module_link=YES
1127
+ ngx_module_order=
1128
+
1129
+ . auto/module
445
1130
  fi
446
1131
 
1132
+
447
1133
  if [ $USE_PCRE = YES ]; then
448
- modules="$modules $REGEX_MODULE"
449
- CORE_DEPS="$CORE_DEPS $REGEX_DEPS"
450
- CORE_SRCS="$CORE_SRCS $REGEX_SRCS"
1134
+ ngx_module_type=CORE
1135
+ ngx_module_name=ngx_regex_module
1136
+ ngx_module_incs=
1137
+ ngx_module_deps=src/core/ngx_regex.h
1138
+ ngx_module_srcs=src/core/ngx_regex.c
1139
+ ngx_module_libs=
1140
+ ngx_module_link=YES
1141
+ ngx_module_order=
1142
+
1143
+ . auto/module
1144
+ fi
1145
+
1146
+
1147
+ modules="$CORE_MODULES $EVENT_MODULES"
1148
+
1149
+
1150
+ # thread pool module should be initialized after events
1151
+ if [ $USE_THREADS = YES ]; then
1152
+ modules="$modules $THREAD_POOL_MODULE"
451
1153
  fi
452
1154
 
1155
+
453
1156
  if [ $HTTP = YES ]; then
454
1157
  modules="$modules $HTTP_MODULES $HTTP_FILTER_MODULES \
455
- $HTTP_HEADERS_FILTER_MODULE \
456
- $HTTP_AUX_FILTER_MODULES \
457
- $HTTP_COPY_FILTER_MODULE \
458
- $HTTP_RANGE_BODY_FILTER_MODULE \
459
- $HTTP_NOT_MODIFIED_FILTER_MODULE"
1158
+ $HTTP_AUX_FILTER_MODULES $HTTP_INIT_FILTER_MODULES"
460
1159
 
461
1160
  NGX_ADDON_DEPS="$NGX_ADDON_DEPS \$(HTTP_DEPS)"
462
1161
  fi
463
1162
 
464
1163
 
465
- if [ $MAIL = YES ]; then
466
- modules="$modules $MAIL_MODULES"
1164
+ if [ $MAIL != NO ]; then
467
1165
 
468
- if [ $MAIL_SSL = YES ]; then
469
- modules="$modules $MAIL_SSL_MODULE"
470
- MAIL_DEPS="$MAIL_DEPS $MAIL_SSL_DEPS"
471
- MAIL_SRCS="$MAIL_SRCS $MAIL_SSL_SRCS"
472
- fi
1166
+ if [ $MAIL = YES ]; then
1167
+ modules="$modules $MAIL_MODULES"
473
1168
 
474
- if [ $MAIL_POP3 = YES ]; then
475
- modules="$modules $MAIL_POP3_MODULE"
476
- MAIL_DEPS="$MAIL_DEPS $MAIL_POP3_DEPS"
477
- MAIL_SRCS="$MAIL_SRCS $MAIL_POP3_SRCS"
478
- fi
1169
+ elif [ $MAIL = DYNAMIC ]; then
1170
+ ngx_module_name=$MAIL_MODULES
1171
+ ngx_module_incs=
1172
+ ngx_module_deps=$MAIL_DEPS
1173
+ ngx_module_srcs=$MAIL_SRCS
1174
+ ngx_module_libs=
1175
+ ngx_module_link=DYNAMIC
479
1176
 
480
- if [ $MAIL_IMAP = YES ]; then
481
- modules="$modules $MAIL_IMAP_MODULE"
482
- MAIL_DEPS="$MAIL_DEPS $MAIL_IMAP_DEPS"
483
- MAIL_SRCS="$MAIL_SRCS $MAIL_IMAP_SRCS"
1177
+ . auto/module
484
1178
  fi
485
1179
 
486
- if [ $MAIL_SMTP = YES ]; then
487
- modules="$modules $MAIL_SMTP_MODULE"
488
- MAIL_DEPS="$MAIL_DEPS $MAIL_SMTP_DEPS"
489
- MAIL_SRCS="$MAIL_SRCS $MAIL_SMTP_SRCS"
490
- fi
1180
+ NGX_ADDON_DEPS="$NGX_ADDON_DEPS \$(MAIL_DEPS)"
1181
+ fi
491
1182
 
492
- modules="$modules $MAIL_AUTH_HTTP_MODULE"
493
- MAIL_SRCS="$MAIL_SRCS $MAIL_AUTH_HTTP_SRCS"
494
1183
 
495
- modules="$modules $MAIL_PROXY_MODULE"
496
- MAIL_SRCS="$MAIL_SRCS $MAIL_PROXY_SRCS"
1184
+ if [ $STREAM != NO ]; then
497
1185
 
498
- NGX_ADDON_DEPS="$NGX_ADDON_DEPS \$(MAIL_DEPS)"
1186
+ if [ $STREAM = YES ]; then
1187
+ modules="$modules $STREAM_MODULES"
1188
+
1189
+ elif [ $STREAM = DYNAMIC ]; then
1190
+ ngx_module_name=$STREAM_MODULES
1191
+ ngx_module_incs=
1192
+ ngx_module_deps=$STREAM_DEPS
1193
+ ngx_module_srcs=$STREAM_SRCS
1194
+ ngx_module_libs=
1195
+ ngx_module_link=DYNAMIC
1196
+
1197
+ . auto/module
1198
+ fi
1199
+
1200
+ NGX_ADDON_DEPS="$NGX_ADDON_DEPS \$(STREAM_DEPS)"
499
1201
  fi
500
1202
 
501
1203
 
1204
+ ngx_module_type=MISC
1205
+ MISC_MODULES=
1206
+
502
1207
  if [ $NGX_GOOGLE_PERFTOOLS = YES ]; then
503
- modules="$modules $NGX_GOOGLE_PERFTOOLS_MODULE"
504
- NGX_MISC_SRCS="$NGX_MISC_SRCS $NGX_GOOGLE_PERFTOOLS_SRCS"
505
- fi
1208
+ ngx_module_name=ngx_google_perftools_module
1209
+ ngx_module_incs=
1210
+ ngx_module_deps=
1211
+ ngx_module_srcs=src/misc/ngx_google_perftools_module.c
1212
+ ngx_module_libs=
1213
+ ngx_module_link=$NGX_GOOGLE_PERFTOOLS
506
1214
 
1215
+ . auto/module
1216
+ fi
507
1217
 
508
1218
  if [ $NGX_CPP_TEST = YES ]; then
509
- NGX_MISC_SRCS="$NGX_MISC_SRCS $NGX_CPP_TEST_SRCS"
510
- CORE_LIBS="$CORE_LIBS -lstdc++"
1219
+ ngx_module_name=
1220
+ ngx_module_incs=
1221
+ ngx_module_deps=
1222
+ ngx_module_srcs=src/misc/ngx_cpp_test_module.cpp
1223
+ ngx_module_libs=-lstdc++
1224
+ ngx_module_link=$NGX_CPP_TEST
1225
+
1226
+ . auto/module
511
1227
  fi
512
1228
 
1229
+ modules="$modules $MISC_MODULES"
1230
+
513
1231
 
514
1232
  cat << END > $NGX_MODULES_C
515
1233
 
@@ -538,3 +1256,16 @@ cat << END >> $NGX_MODULES_C
538
1256
  };
539
1257
 
540
1258
  END
1259
+
1260
+ echo 'char *ngx_module_names[] = {' >> $NGX_MODULES_C
1261
+
1262
+ for mod in $modules
1263
+ do
1264
+ echo " \"$mod\"," >> $NGX_MODULES_C
1265
+ done
1266
+
1267
+ cat << END >> $NGX_MODULES_C
1268
+ NULL
1269
+ };
1270
+
1271
+ END