~ubuntu-branches/ubuntu/trusty/nginx/trusty-proposed

« back to all changes in this revision

Viewing changes to auto/sources

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2013-04-25 12:51:45 UTC
  • mfrom: (1.3.28)
  • mto: (1.3.29) (15.1.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 64.
  • Revision ID: package-import@ubuntu.com-20130425125145-ugl0wor6bq0u5eae
Tags: upstream-1.4.0
ImportĀ upstreamĀ versionĀ 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
# Copyright (C) Igor Sysoev
 
3
# Copyright (C) Nginx, Inc.
3
4
 
4
5
 
5
6
CORE_MODULES="ngx_core_module ngx_errlog_module ngx_conf_module"
22
23
           src/core/ngx_file.h \
23
24
           src/core/ngx_crc.h \
24
25
           src/core/ngx_crc32.h \
 
26
           src/core/ngx_murmurhash.h \
25
27
           src/core/ngx_md5.h \
26
28
           src/core/ngx_sha1.h \
27
29
           src/core/ngx_rbtree.h \
34
36
           src/core/ngx_conf_file.h \
35
37
           src/core/ngx_resolver.h \
36
38
           src/core/ngx_open_file_cache.h \
37
 
           src/core/ngx_garbage_collector.h"
 
39
           src/core/ngx_crypt.h"
38
40
 
39
41
 
40
42
CORE_SRCS="src/core/nginx.c \
44
46
           src/core/ngx_list.c \
45
47
           src/core/ngx_hash.c \
46
48
           src/core/ngx_buf.c \
 
49
           src/core/ngx_queue.c \
47
50
           src/core/ngx_output_chain.c \
48
51
           src/core/ngx_string.c \
49
52
           src/core/ngx_parse.c \
50
53
           src/core/ngx_inet.c \
51
54
           src/core/ngx_file.c \
52
55
           src/core/ngx_crc32.c \
 
56
           src/core/ngx_murmurhash.c \
 
57
           src/core/ngx_md5.c \
53
58
           src/core/ngx_rbtree.c \
54
59
           src/core/ngx_radix_tree.c \
55
60
           src/core/ngx_slab.c \
62
67
           src/core/ngx_conf_file.c \
63
68
           src/core/ngx_resolver.c \
64
69
           src/core/ngx_open_file_cache.c \
65
 
           src/core/ngx_garbage_collector.c"
66
 
 
67
 
 
 
70
           src/core/ngx_crypt.c"
 
71
 
 
72
 
 
73
REGEX_MODULE=ngx_regex_module
68
74
REGEX_DEPS=src/core/ngx_regex.h
69
75
REGEX_SRCS=src/core/ngx_regex.c
70
76
 
71
77
 
72
78
OPENSSL_MODULE=ngx_openssl_module
73
79
OPENSSL_DEPS=src/event/ngx_event_openssl.h
74
 
OPENSSL_SRCS=src/event/ngx_event_openssl.c
 
80
OPENSSL_SRCS="src/event/ngx_event_openssl.c \
 
81
              src/event/ngx_event_openssl_stapling.c"
75
82
 
76
83
 
77
84
EVENT_MODULES="ngx_events_module ngx_event_core_module"
96
103
 
97
104
SELECT_MODULE=ngx_select_module
98
105
SELECT_SRCS=src/event/modules/ngx_select_module.c
 
106
WIN32_SELECT_SRCS=src/event/modules/ngx_win32_select_module.c
99
107
 
100
108
POLL_MODULE=ngx_poll_module
101
109
POLL_SRCS=src/event/modules/ngx_poll_module.c
125
133
          src/os/unix/ngx_aio_read_chain.c \
126
134
          src/os/unix/ngx_aio_write_chain.c"
127
135
 
 
136
FILE_AIO_SRCS="src/os/unix/ngx_file_aio_read.c"
 
137
LINUX_AIO_SRCS="src/os/unix/ngx_linux_aio_read.c"
128
138
 
129
139
UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix"
130
140
 
131
141
UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
132
142
            src/os/unix/ngx_time.h \
133
 
            src/os/unix/ngx_types.h \
134
143
            src/os/unix/ngx_errno.h \
135
144
            src/os/unix/ngx_alloc.h \
136
145
            src/os/unix/ngx_files.h \
137
146
            src/os/unix/ngx_channel.h \
138
147
            src/os/unix/ngx_shmem.h \
139
148
            src/os/unix/ngx_process.h \
 
149
            src/os/unix/ngx_setaffinity.h \
140
150
            src/os/unix/ngx_setproctitle.h \
141
151
            src/os/unix/ngx_atomic.h \
142
152
            src/os/unix/ngx_gcc_atomic_x86.h \
171
181
            src/os/unix/ngx_shmem.c \
172
182
            src/os/unix/ngx_process.c \
173
183
            src/os/unix/ngx_daemon.c \
 
184
            src/os/unix/ngx_setaffinity.c \
174
185
            src/os/unix/ngx_setproctitle.c \
175
186
            src/os/unix/ngx_posix_init.c \
176
187
            src/os/unix/ngx_user.c \
197
208
SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c
198
209
 
199
210
 
 
211
DARWIN_DEPS="src/os/unix/ngx_darwin_config.h src/os/unix/ngx_darwin.h"
 
212
DARWIN_SRCS=src/os/unix/ngx_darwin_init.c
 
213
DARWIN_SENDFILE_SRCS=src/os/unix/ngx_darwin_sendfile_chain.c
 
214
 
 
215
 
200
216
WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32"
201
217
 
202
218
WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \
203
219
            src/os/win32/ngx_win32_config.h \
204
220
            src/os/win32/ngx_time.h \
205
 
            src/os/win32/ngx_types.h \
206
221
            src/os/win32/ngx_errno.h \
207
222
            src/os/win32/ngx_alloc.h \
208
223
            src/os/win32/ngx_files.h \
213
228
            src/os/win32/ngx_socket.h \
214
229
            src/os/win32/ngx_os.h \
215
230
            src/os/win32/ngx_user.h \
216
 
            src/os/win32/ngx_gui.h \
217
 
            src/os/win32/ngx_gui_resources.h \
218
231
            src/os/win32/ngx_process_cycle.h"
219
232
 
220
233
WIN32_CONFIG=src/os/win32/ngx_win32_config.h
231
244
            src/os/win32/ngx_wsarecv.c \
232
245
            src/os/win32/ngx_wsarecv_chain.c \
233
246
            src/os/win32/ngx_udp_wsarecv.c \
 
247
            src/os/win32/ngx_wsasend.c \
234
248
            src/os/win32/ngx_wsasend_chain.c \
235
249
            src/os/win32/ngx_win32_init.c \
236
250
            src/os/win32/ngx_user.c \
237
 
            src/os/win32/ngx_gui.c \
 
251
            src/os/win32/ngx_event_log.c \
238
252
            src/os/win32/ngx_process_cycle.c \
239
253
            src/event/ngx_event_acceptex.c"
240
254
 
241
 
NGX_WIN32_ICONS="src/os/win32/nginx.ico src/os/win32/nginx_tray.ico"
 
255
NGX_WIN32_ICONS="src/os/win32/nginx.ico"
242
256
NGX_WIN32_RC="src/os/win32/nginx.rc"
243
257
 
244
258
 
250
264
              ngx_http_log_module \
251
265
              ngx_http_upstream_module"
252
266
 
253
 
HTTP_CACHE_MODULE=ngx_http_cache_module
254
 
 
255
267
HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module"
256
268
HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module"
257
269
 
309
321
 
310
322
HTTP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c
311
323
 
312
 
HTTP_CACHE_SRCS=src/http/ngx_http_cache.c
313
324
HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
314
325
 
315
326
 
 
327
HTTP_SPDY_MODULE=ngx_http_spdy_module
 
328
HTTP_SPDY_FILTER_MODULE=ngx_http_spdy_filter_module
 
329
HTTP_SPDY_DEPS="src/http/ngx_http_spdy.h \
 
330
                src/http/ngx_http_spdy_module.h"
 
331
HTTP_SPDY_SRCS="src/http/ngx_http_spdy.c \
 
332
                src/http/ngx_http_spdy_module.c \
 
333
                src/http/ngx_http_spdy_filter_module.c"
 
334
 
 
335
 
316
336
HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module
317
337
HTTP_CHARSET_SRCS=src/http/modules/ngx_http_charset_filter_module.c
318
338
 
321
341
HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter_module.c
322
342
 
323
343
 
 
344
HTTP_GUNZIP_FILTER_MODULE=ngx_http_gunzip_filter_module
 
345
HTTP_GUNZIP_SRCS=src/http/modules/ngx_http_gunzip_filter_module.c
 
346
 
 
347
 
324
348
HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module
325
349
HTTP_SSI_DEPS=src/http/modules/ngx_http_ssi_filter_module.h
326
350
HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter_module.c
327
351
 
328
352
 
 
353
HTTP_XSLT_FILTER_MODULE=ngx_http_xslt_filter_module
 
354
HTTP_XSLT_SRCS=src/http/modules/ngx_http_xslt_filter_module.c
 
355
 
 
356
 
 
357
HTTP_IMAGE_FILTER_MODULE=ngx_http_image_filter_module
 
358
HTTP_IMAGE_SRCS=src/http/modules/ngx_http_image_filter_module.c
 
359
 
 
360
 
329
361
HTTP_SUB_FILTER_MODULE=ngx_http_sub_filter_module
330
362
HTTP_SUB_SRCS=src/http/modules/ngx_http_sub_filter_module.c
331
363
 
358
390
HTTP_AUTOINDEX_SRCS=src/http/modules/ngx_http_autoindex_module.c
359
391
 
360
392
 
 
393
HTTP_RANDOM_INDEX_MODULE=ngx_http_random_index_module
 
394
HTTP_RANDOM_INDEX_SRCS=src/http/modules/ngx_http_random_index_module.c
 
395
 
 
396
 
361
397
HTTP_STATUS_MODULE=ngx_http_status_module
362
398
HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_module.c
363
399
 
366
402
HTTP_GEO_SRCS=src/http/modules/ngx_http_geo_module.c
367
403
 
368
404
 
 
405
HTTP_GEOIP_MODULE=ngx_http_geoip_module
 
406
HTTP_GEOIP_SRCS=src/http/modules/ngx_http_geoip_module.c
 
407
 
 
408
 
369
409
HTTP_MAP_MODULE=ngx_http_map_module
370
410
HTTP_MAP_SRCS=src/http/modules/ngx_http_map_module.c
371
411
 
372
412
 
 
413
HTTP_SPLIT_CLIENTS_MODULE=ngx_http_split_clients_module
 
414
HTTP_SPLIT_CLIENTS_SRCS=src/http/modules/ngx_http_split_clients_module.c
 
415
 
 
416
 
373
417
HTTP_REFERER_MODULE=ngx_http_referer_module
374
418
HTTP_REFERER_SRCS=src/http/modules/ngx_http_referer_module.c
375
419
 
391
435
HTTP_FASTCGI_SRCS=src/http/modules/ngx_http_fastcgi_module.c
392
436
 
393
437
 
 
438
HTTP_UWSGI_MODULE=ngx_http_uwsgi_module
 
439
HTTP_UWSGI_SRCS=src/http/modules/ngx_http_uwsgi_module.c
 
440
 
 
441
 
 
442
HTTP_SCGI_MODULE=ngx_http_scgi_module
 
443
HTTP_SCGI_SRCS=src/http/modules/ngx_http_scgi_module.c
 
444
 
 
445
 
394
446
HTTP_PERL_MODULE=ngx_http_perl_module
395
447
HTTP_PERL_INCS=src/http/modules/perl
396
448
HTTP_PERL_DEPS=src/http/modules/perl/ngx_http_perl_module.h
401
453
HTTP_MEMCACHED_SRCS=src/http/modules/ngx_http_memcached_module.c
402
454
 
403
455
 
404
 
HTTP_LIMIT_ZONE_MODULE=ngx_http_limit_zone_module
405
 
HTTP_LIMIT_ZONE_SRCS=src/http/modules/ngx_http_limit_zone_module.c
 
456
HTTP_LIMIT_CONN_MODULE=ngx_http_limit_conn_module
 
457
HTTP_LIMIT_CONN_SRCS=src/http/modules/ngx_http_limit_conn_module.c
 
458
 
 
459
 
 
460
HTTP_LIMIT_REQ_MODULE=ngx_http_limit_req_module
 
461
HTTP_LIMIT_REQ_SRCS=src/http/modules/ngx_http_limit_req_module.c
406
462
 
407
463
 
408
464
HTTP_EMPTY_GIF_MODULE=ngx_http_empty_gif_module
413
469
HTTP_BROWSER_SRCS=src/http/modules/ngx_http_browser_module.c
414
470
 
415
471
 
 
472
HTTP_SECURE_LINK_MODULE=ngx_http_secure_link_module
 
473
HTTP_SECURE_LINK_SRCS=src/http/modules/ngx_http_secure_link_module.c
 
474
 
 
475
 
 
476
HTTP_DEGRADATION_MODULE=ngx_http_degradation_module
 
477
HTTP_DEGRADATION_SRCS=src/http/modules/ngx_http_degradation_module.c
 
478
 
 
479
 
416
480
HTTP_FLV_MODULE=ngx_http_flv_module
417
481
HTTP_FLV_SRCS=src/http/modules/ngx_http_flv_module.c
418
482
 
419
483
 
 
484
HTTP_MP4_MODULE=ngx_http_mp4_module
 
485
HTTP_MP4_SRCS=src/http/modules/ngx_http_mp4_module.c
 
486
 
 
487
 
420
488
HTTP_GZIP_STATIC_MODULE=ngx_http_gzip_static_module
421
489
HTTP_GZIP_STATIC_SRCS=src/http/modules/ngx_http_gzip_static_module.c
422
490
 
425
493
HTTP_UPSTREAM_IP_HASH_SRCS=src/http/modules/ngx_http_upstream_ip_hash_module.c
426
494
 
427
495
 
 
496
HTTP_UPSTREAM_LEAST_CONN_MODULE=ngx_http_upstream_least_conn_module
 
497
HTTP_UPSTREAM_LEAST_CONN_SRCS=" \
 
498
    src/http/modules/ngx_http_upstream_least_conn_module.c"
 
499
 
 
500
 
 
501
HTTP_UPSTREAM_KEEPALIVE_MODULE=ngx_http_upstream_keepalive_module
 
502
HTTP_UPSTREAM_KEEPALIVE_SRCS=" \
 
503
    src/http/modules/ngx_http_upstream_keepalive_module.c"
 
504
 
 
505
 
428
506
MAIL_INCS="src/mail"
429
507
 
430
508
MAIL_DEPS="src/mail/ngx_mail.h"
464
542
NGX_GOOGLE_PERFTOOLS_MODULE=ngx_google_perftools_module
465
543
NGX_GOOGLE_PERFTOOLS_SRCS=src/misc/ngx_google_perftools_module.c
466
544
 
 
545
NGX_CPP_TEST_SRCS=src/misc/ngx_cpp_test_module.cpp