Annotation of embedaddon/nginx/auto/sources, revision 1.1.1.1

1.1       misho       1: 
                      2: # Copyright (C) Igor Sysoev
                      3: # Copyright (C) Nginx, Inc.
                      4: 
                      5: 
                      6: CORE_MODULES="ngx_core_module ngx_errlog_module ngx_conf_module"
                      7: 
                      8: CORE_INCS="src/core"
                      9: 
                     10: CORE_DEPS="src/core/nginx.h \
                     11:            src/core/ngx_config.h \
                     12:            src/core/ngx_core.h \
                     13:            src/core/ngx_log.h \
                     14:            src/core/ngx_palloc.h \
                     15:            src/core/ngx_array.h \
                     16:            src/core/ngx_list.h \
                     17:            src/core/ngx_hash.h \
                     18:            src/core/ngx_buf.h \
                     19:            src/core/ngx_queue.h \
                     20:            src/core/ngx_string.h \
                     21:            src/core/ngx_parse.h \
                     22:            src/core/ngx_inet.h \
                     23:            src/core/ngx_file.h \
                     24:            src/core/ngx_crc.h \
                     25:            src/core/ngx_crc32.h \
                     26:            src/core/ngx_murmurhash.h \
                     27:            src/core/ngx_md5.h \
                     28:            src/core/ngx_sha1.h \
                     29:            src/core/ngx_rbtree.h \
                     30:            src/core/ngx_radix_tree.h \
                     31:            src/core/ngx_slab.h \
                     32:            src/core/ngx_times.h \
                     33:            src/core/ngx_shmtx.h \
                     34:            src/core/ngx_connection.h \
                     35:            src/core/ngx_cycle.h \
                     36:            src/core/ngx_conf_file.h \
                     37:            src/core/ngx_resolver.h \
                     38:            src/core/ngx_open_file_cache.h \
                     39:            src/core/ngx_crypt.h"
                     40: 
                     41: 
                     42: CORE_SRCS="src/core/nginx.c \
                     43:            src/core/ngx_log.c \
                     44:            src/core/ngx_palloc.c \
                     45:            src/core/ngx_array.c \
                     46:            src/core/ngx_list.c \
                     47:            src/core/ngx_hash.c \
                     48:            src/core/ngx_buf.c \
                     49:            src/core/ngx_queue.c \
                     50:            src/core/ngx_output_chain.c \
                     51:            src/core/ngx_string.c \
                     52:            src/core/ngx_parse.c \
                     53:            src/core/ngx_inet.c \
                     54:            src/core/ngx_file.c \
                     55:            src/core/ngx_crc32.c \
                     56:            src/core/ngx_murmurhash.c \
                     57:            src/core/ngx_md5.c \
                     58:            src/core/ngx_rbtree.c \
                     59:            src/core/ngx_radix_tree.c \
                     60:            src/core/ngx_slab.c \
                     61:            src/core/ngx_times.c \
                     62:            src/core/ngx_shmtx.c \
                     63:            src/core/ngx_connection.c \
                     64:            src/core/ngx_cycle.c \
                     65:            src/core/ngx_spinlock.c \
                     66:            src/core/ngx_cpuinfo.c \
                     67:            src/core/ngx_conf_file.c \
                     68:            src/core/ngx_resolver.c \
                     69:            src/core/ngx_open_file_cache.c \
                     70:            src/core/ngx_crypt.c"
                     71: 
                     72: 
                     73: REGEX_MODULE=ngx_regex_module
                     74: REGEX_DEPS=src/core/ngx_regex.h
                     75: REGEX_SRCS=src/core/ngx_regex.c
                     76: 
                     77: 
                     78: OPENSSL_MODULE=ngx_openssl_module
                     79: OPENSSL_DEPS=src/event/ngx_event_openssl.h
                     80: OPENSSL_SRCS="src/event/ngx_event_openssl.c \
                     81:               src/event/ngx_event_openssl_stapling.c"
                     82: 
                     83: 
                     84: EVENT_MODULES="ngx_events_module ngx_event_core_module"
                     85: 
                     86: EVENT_INCS="src/event src/event/modules"
                     87: 
                     88: EVENT_DEPS="src/event/ngx_event.h \
                     89:             src/event/ngx_event_timer.h \
                     90:             src/event/ngx_event_posted.h \
                     91:             src/event/ngx_event_busy_lock.h \
                     92:             src/event/ngx_event_connect.h \
                     93:             src/event/ngx_event_pipe.h"
                     94: 
                     95: EVENT_SRCS="src/event/ngx_event.c \
                     96:             src/event/ngx_event_timer.c \
                     97:             src/event/ngx_event_posted.c \
                     98:             src/event/ngx_event_busy_lock.c \
                     99:             src/event/ngx_event_accept.c \
                    100:             src/event/ngx_event_connect.c \
                    101:             src/event/ngx_event_pipe.c"
                    102: 
                    103: 
                    104: SELECT_MODULE=ngx_select_module
                    105: SELECT_SRCS=src/event/modules/ngx_select_module.c
                    106: WIN32_SELECT_SRCS=src/event/modules/ngx_win32_select_module.c
                    107: 
                    108: POLL_MODULE=ngx_poll_module
                    109: POLL_SRCS=src/event/modules/ngx_poll_module.c
                    110: 
                    111: KQUEUE_MODULE=ngx_kqueue_module
                    112: KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c
                    113: 
                    114: DEVPOLL_MODULE=ngx_devpoll_module
                    115: DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c
                    116: 
                    117: EVENTPORT_MODULE=ngx_eventport_module
                    118: EVENTPORT_SRCS=src/event/modules/ngx_eventport_module.c
                    119: 
                    120: EPOLL_MODULE=ngx_epoll_module
                    121: EPOLL_SRCS=src/event/modules/ngx_epoll_module.c
                    122: 
                    123: RTSIG_MODULE=ngx_rtsig_module
                    124: RTSIG_SRCS=src/event/modules/ngx_rtsig_module.c
                    125: 
                    126: IOCP_MODULE=ngx_iocp_module
                    127: IOCP_SRCS=src/event/modules/ngx_iocp_module.c
                    128: 
                    129: AIO_MODULE=ngx_aio_module
                    130: AIO_SRCS="src/event/modules/ngx_aio_module.c \
                    131:           src/os/unix/ngx_aio_read.c \
                    132:           src/os/unix/ngx_aio_write.c \
                    133:           src/os/unix/ngx_aio_read_chain.c \
                    134:           src/os/unix/ngx_aio_write_chain.c"
                    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"
                    138: 
                    139: UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix"
                    140: 
                    141: UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
                    142:             src/os/unix/ngx_time.h \
                    143:             src/os/unix/ngx_errno.h \
                    144:             src/os/unix/ngx_alloc.h \
                    145:             src/os/unix/ngx_files.h \
                    146:             src/os/unix/ngx_channel.h \
                    147:             src/os/unix/ngx_shmem.h \
                    148:             src/os/unix/ngx_process.h \
                    149:             src/os/unix/ngx_setaffinity.h \
                    150:             src/os/unix/ngx_setproctitle.h \
                    151:             src/os/unix/ngx_atomic.h \
                    152:             src/os/unix/ngx_gcc_atomic_x86.h \
                    153:             src/os/unix/ngx_thread.h \
                    154:             src/os/unix/ngx_socket.h \
                    155:             src/os/unix/ngx_os.h \
                    156:             src/os/unix/ngx_user.h \
                    157:             src/os/unix/ngx_process_cycle.h"
                    158: 
                    159: # add to UNIX_DEPS
                    160: #            src/os/unix/ngx_gcc_atomic_amd64.h \
                    161: #            src/os/unix/ngx_gcc_atomic_sparc64.h \
                    162: #            src/os/unix/ngx_gcc_atomic_ppc.h \
                    163: #            src/os/unix/ngx_sunpro_atomic_sparc64.h \
                    164: #            src/os/unix/ngx_sunpro_x86.il \
                    165: #            src/os/unix/ngx_sunpro_amd64.il \
                    166: #            src/os/unix/ngx_sunpro_sparc64.il \
                    167: 
                    168: 
                    169: UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
                    170:             src/os/unix/ngx_time.c \
                    171:             src/os/unix/ngx_errno.c \
                    172:             src/os/unix/ngx_alloc.c \
                    173:             src/os/unix/ngx_files.c \
                    174:             src/os/unix/ngx_socket.c \
                    175:             src/os/unix/ngx_recv.c \
                    176:             src/os/unix/ngx_readv_chain.c \
                    177:             src/os/unix/ngx_udp_recv.c \
                    178:             src/os/unix/ngx_send.c \
                    179:             src/os/unix/ngx_writev_chain.c \
                    180:             src/os/unix/ngx_channel.c \
                    181:             src/os/unix/ngx_shmem.c \
                    182:             src/os/unix/ngx_process.c \
                    183:             src/os/unix/ngx_daemon.c \
                    184:             src/os/unix/ngx_setaffinity.c \
                    185:             src/os/unix/ngx_setproctitle.c \
                    186:             src/os/unix/ngx_posix_init.c \
                    187:             src/os/unix/ngx_user.c \
                    188:             src/os/unix/ngx_process_cycle.c"
                    189: 
                    190: POSIX_DEPS=src/os/unix/ngx_posix_config.h
                    191: 
                    192: FREEBSD_DEPS="src/os/unix/ngx_freebsd_config.h src/os/unix/ngx_freebsd.h"
                    193: FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c
                    194: FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c
                    195: FREEBSD_RFORK_DEPS="src/os/unix/ngx_freebsd_rfork_thread.h"
                    196: FREEBSD_RFORK_SRCS="src/os/unix/ngx_freebsd_rfork_thread.c"
                    197: FREEBSD_RFORK_THREAD_SRCS="src/os/unix/rfork_thread.S"
                    198: 
                    199: PTHREAD_SRCS="src/os/unix/ngx_pthread_thread.c"
                    200: 
                    201: LINUX_DEPS="src/os/unix/ngx_linux_config.h src/os/unix/ngx_linux.h"
                    202: LINUX_SRCS=src/os/unix/ngx_linux_init.c
                    203: LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c
                    204: 
                    205: 
                    206: SOLARIS_DEPS="src/os/unix/ngx_solaris_config.h src/os/unix/ngx_solaris.h"
                    207: SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c
                    208: SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c
                    209: 
                    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: 
                    216: WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32"
                    217: 
                    218: WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \
                    219:             src/os/win32/ngx_win32_config.h \
                    220:             src/os/win32/ngx_time.h \
                    221:             src/os/win32/ngx_errno.h \
                    222:             src/os/win32/ngx_alloc.h \
                    223:             src/os/win32/ngx_files.h \
                    224:             src/os/win32/ngx_shmem.h \
                    225:             src/os/win32/ngx_process.h \
                    226:             src/os/win32/ngx_atomic.h \
                    227:             src/os/win32/ngx_thread.h \
                    228:             src/os/win32/ngx_socket.h \
                    229:             src/os/win32/ngx_os.h \
                    230:             src/os/win32/ngx_user.h \
                    231:             src/os/win32/ngx_process_cycle.h"
                    232: 
                    233: WIN32_CONFIG=src/os/win32/ngx_win32_config.h
                    234: 
                    235: WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \
                    236:             src/os/win32/ngx_errno.c \
                    237:             src/os/win32/ngx_alloc.c \
                    238:             src/os/win32/ngx_files.c \
                    239:             src/os/win32/ngx_shmem.c \
                    240:             src/os/win32/ngx_time.c \
                    241:             src/os/win32/ngx_process.c \
                    242:             src/os/win32/ngx_thread.c \
                    243:             src/os/win32/ngx_socket.c \
                    244:             src/os/win32/ngx_wsarecv.c \
                    245:             src/os/win32/ngx_wsarecv_chain.c \
                    246:             src/os/win32/ngx_udp_wsarecv.c \
                    247:             src/os/win32/ngx_wsasend.c \
                    248:             src/os/win32/ngx_wsasend_chain.c \
                    249:             src/os/win32/ngx_win32_init.c \
                    250:             src/os/win32/ngx_user.c \
                    251:             src/os/win32/ngx_event_log.c \
                    252:             src/os/win32/ngx_process_cycle.c \
                    253:             src/event/ngx_event_acceptex.c"
                    254: 
                    255: NGX_WIN32_ICONS="src/os/win32/nginx.ico"
                    256: NGX_WIN32_RC="src/os/win32/nginx.rc"
                    257: 
                    258: 
                    259: # the http modules that have their logging formats
                    260: # must be after ngx_http_log_module
                    261: 
                    262: HTTP_MODULES="ngx_http_module \
                    263:               ngx_http_core_module \
                    264:               ngx_http_log_module \
                    265:               ngx_http_upstream_module"
                    266: 
                    267: HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module"
                    268: HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module"
                    269: 
                    270: HTTP_POSTPONE_FILTER_MODULE=ngx_http_postpone_filter_module
                    271: HTTP_COPY_FILTER_MODULE=ngx_http_copy_filter_module
                    272: 
                    273: HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module
                    274: HTTP_HEADERS_FILTER_MODULE=ngx_http_headers_filter_module
                    275: 
                    276: HTTP_RANGE_HEADER_FILTER_MODULE=ngx_http_range_header_filter_module
                    277: HTTP_RANGE_BODY_FILTER_MODULE=ngx_http_range_body_filter_module
                    278: 
                    279: HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module
                    280: 
                    281: HTTP_STATIC_MODULE=ngx_http_static_module
                    282: HTTP_INDEX_MODULE=ngx_http_index_module
                    283: 
                    284: HTTP_INCS="src/http src/http/modules"
                    285: 
                    286: HTTP_DEPS="src/http/ngx_http.h \
                    287:            src/http/ngx_http_request.h \
                    288:            src/http/ngx_http_config.h \
                    289:            src/http/ngx_http_core_module.h \
                    290:            src/http/ngx_http_cache.h \
                    291:            src/http/ngx_http_variables.h \
                    292:            src/http/ngx_http_script.h \
                    293:            src/http/ngx_http_upstream.h \
                    294:            src/http/ngx_http_upstream_round_robin.h \
                    295:            src/http/ngx_http_busy_lock.h"
                    296: 
                    297: HTTP_SRCS="src/http/ngx_http.c \
                    298:            src/http/ngx_http_core_module.c \
                    299:            src/http/ngx_http_special_response.c \
                    300:            src/http/ngx_http_request.c \
                    301:            src/http/ngx_http_parse.c \
                    302:            src/http/ngx_http_header_filter_module.c \
                    303:            src/http/ngx_http_write_filter_module.c \
                    304:            src/http/ngx_http_copy_filter_module.c \
                    305:            src/http/modules/ngx_http_log_module.c \
                    306:            src/http/ngx_http_request_body.c \
                    307:            src/http/ngx_http_variables.c \
                    308:            src/http/ngx_http_script.c \
                    309:            src/http/ngx_http_upstream.c \
                    310:            src/http/ngx_http_upstream_round_robin.c \
                    311:            src/http/ngx_http_parse_time.c \
                    312:            src/http/modules/ngx_http_static_module.c \
                    313:            src/http/modules/ngx_http_index_module.c \
                    314:            src/http/modules/ngx_http_chunked_filter_module.c \
                    315:            src/http/modules/ngx_http_range_filter_module.c \
                    316:            src/http/modules/ngx_http_headers_filter_module.c \
                    317:            src/http/modules/ngx_http_not_modified_filter_module.c"
                    318: 
                    319: # STUB
                    320: HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c"
                    321: 
                    322: HTTP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c
                    323: 
                    324: HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
                    325: 
                    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: 
                    336: HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module
                    337: HTTP_CHARSET_SRCS=src/http/modules/ngx_http_charset_filter_module.c
                    338: 
                    339: 
                    340: HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module
                    341: HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter_module.c
                    342: 
                    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: 
                    348: HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module
                    349: HTTP_SSI_DEPS=src/http/modules/ngx_http_ssi_filter_module.h
                    350: HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter_module.c
                    351: 
                    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: 
                    361: HTTP_SUB_FILTER_MODULE=ngx_http_sub_filter_module
                    362: HTTP_SUB_SRCS=src/http/modules/ngx_http_sub_filter_module.c
                    363: 
                    364: 
                    365: HTTP_USERID_FILTER_MODULE=ngx_http_userid_filter_module
                    366: HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_filter_module.c
                    367: 
                    368: 
                    369: HTTP_REALIP_MODULE=ngx_http_realip_module
                    370: HTTP_REALIP_SRCS=src/http/modules/ngx_http_realip_module.c
                    371: 
                    372: 
                    373: HTTP_ADDITION_FILTER_MODULE=ngx_http_addition_filter_module
                    374: HTTP_ADDITION_SRCS=src/http/modules/ngx_http_addition_filter_module.c
                    375: 
                    376: 
                    377: HTTP_DAV_MODULE=ngx_http_dav_module
                    378: HTTP_DAV_SRCS=src/http/modules/ngx_http_dav_module.c
                    379: 
                    380: 
                    381: HTTP_ACCESS_MODULE=ngx_http_access_module
                    382: HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_module.c
                    383: 
                    384: 
                    385: HTTP_AUTH_BASIC_MODULE=ngx_http_auth_basic_module
                    386: HTTP_AUTH_BASIC_SRCS=src/http/modules/ngx_http_auth_basic_module.c
                    387: 
                    388: 
                    389: HTTP_AUTOINDEX_MODULE=ngx_http_autoindex_module
                    390: HTTP_AUTOINDEX_SRCS=src/http/modules/ngx_http_autoindex_module.c
                    391: 
                    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: 
                    397: HTTP_STATUS_MODULE=ngx_http_status_module
                    398: HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_module.c
                    399: 
                    400: 
                    401: HTTP_GEO_MODULE=ngx_http_geo_module
                    402: HTTP_GEO_SRCS=src/http/modules/ngx_http_geo_module.c
                    403: 
                    404: 
                    405: HTTP_GEOIP_MODULE=ngx_http_geoip_module
                    406: HTTP_GEOIP_SRCS=src/http/modules/ngx_http_geoip_module.c
                    407: 
                    408: 
                    409: HTTP_MAP_MODULE=ngx_http_map_module
                    410: HTTP_MAP_SRCS=src/http/modules/ngx_http_map_module.c
                    411: 
                    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: 
                    417: HTTP_REFERER_MODULE=ngx_http_referer_module
                    418: HTTP_REFERER_SRCS=src/http/modules/ngx_http_referer_module.c
                    419: 
                    420: 
                    421: HTTP_REWRITE_MODULE=ngx_http_rewrite_module
                    422: HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_module.c
                    423: 
                    424: 
                    425: HTTP_SSL_MODULE=ngx_http_ssl_module
                    426: HTTP_SSL_DEPS=src/http/modules/ngx_http_ssl_module.h
                    427: HTTP_SSL_SRCS=src/http/modules/ngx_http_ssl_module.c
                    428: 
                    429: 
                    430: HTTP_PROXY_MODULE=ngx_http_proxy_module
                    431: HTTP_PROXY_SRCS=src/http/modules/ngx_http_proxy_module.c
                    432: 
                    433: 
                    434: HTTP_FASTCGI_MODULE=ngx_http_fastcgi_module
                    435: HTTP_FASTCGI_SRCS=src/http/modules/ngx_http_fastcgi_module.c
                    436: 
                    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: 
                    446: HTTP_PERL_MODULE=ngx_http_perl_module
                    447: HTTP_PERL_INCS=src/http/modules/perl
                    448: HTTP_PERL_DEPS=src/http/modules/perl/ngx_http_perl_module.h
                    449: HTTP_PERL_SRCS=src/http/modules/perl/ngx_http_perl_module.c
                    450: 
                    451: 
                    452: HTTP_MEMCACHED_MODULE=ngx_http_memcached_module
                    453: HTTP_MEMCACHED_SRCS=src/http/modules/ngx_http_memcached_module.c
                    454: 
                    455: 
                    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
                    462: 
                    463: 
                    464: HTTP_EMPTY_GIF_MODULE=ngx_http_empty_gif_module
                    465: HTTP_EMPTY_GIF_SRCS=src/http/modules/ngx_http_empty_gif_module.c
                    466: 
                    467: 
                    468: HTTP_BROWSER_MODULE=ngx_http_browser_module
                    469: HTTP_BROWSER_SRCS=src/http/modules/ngx_http_browser_module.c
                    470: 
                    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: 
                    480: HTTP_FLV_MODULE=ngx_http_flv_module
                    481: HTTP_FLV_SRCS=src/http/modules/ngx_http_flv_module.c
                    482: 
                    483: 
                    484: HTTP_MP4_MODULE=ngx_http_mp4_module
                    485: HTTP_MP4_SRCS=src/http/modules/ngx_http_mp4_module.c
                    486: 
                    487: 
                    488: HTTP_GZIP_STATIC_MODULE=ngx_http_gzip_static_module
                    489: HTTP_GZIP_STATIC_SRCS=src/http/modules/ngx_http_gzip_static_module.c
                    490: 
                    491: 
                    492: HTTP_UPSTREAM_IP_HASH_MODULE=ngx_http_upstream_ip_hash_module
                    493: HTTP_UPSTREAM_IP_HASH_SRCS=src/http/modules/ngx_http_upstream_ip_hash_module.c
                    494: 
                    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: 
                    506: MAIL_INCS="src/mail"
                    507: 
                    508: MAIL_DEPS="src/mail/ngx_mail.h"
                    509: 
                    510: MAIL_MODULES="ngx_mail_module ngx_mail_core_module"
                    511: 
                    512: MAIL_SRCS="src/mail/ngx_mail.c \
                    513:            src/mail/ngx_mail_core_module.c \
                    514:            src/mail/ngx_mail_handler.c \
                    515:            src/mail/ngx_mail_parse.c"
                    516: 
                    517: MAIL_POP3_MODULE="ngx_mail_pop3_module"
                    518: MAIL_POP3_DEPS="src/mail/ngx_mail_pop3_module.h"
                    519: MAIL_POP3_SRCS="src/mail/ngx_mail_pop3_module.c \
                    520:                 src/mail/ngx_mail_pop3_handler.c"
                    521: 
                    522: MAIL_IMAP_MODULE="ngx_mail_imap_module"
                    523: MAIL_IMAP_DEPS="src/mail/ngx_mail_imap_module.h"
                    524: MAIL_IMAP_SRCS="src/mail/ngx_mail_imap_module.c \
                    525:                 src/mail/ngx_mail_imap_handler.c"
                    526: 
                    527: MAIL_SMTP_MODULE="ngx_mail_smtp_module"
                    528: MAIL_SMTP_DEPS="src/mail/ngx_mail_smtp_module.h"
                    529: MAIL_SMTP_SRCS="src/mail/ngx_mail_smtp_module.c \
                    530:                 src/mail/ngx_mail_smtp_handler.c"
                    531: 
                    532: MAIL_SSL_MODULE="ngx_mail_ssl_module"
                    533: MAIL_SSL_DEPS="src/mail/ngx_mail_ssl_module.h"
                    534: MAIL_SSL_SRCS="src/mail/ngx_mail_ssl_module.c"
                    535: 
                    536: MAIL_AUTH_HTTP_MODULE="ngx_mail_auth_http_module"
                    537: MAIL_AUTH_HTTP_SRCS="src/mail/ngx_mail_auth_http_module.c"
                    538: 
                    539: MAIL_PROXY_MODULE="ngx_mail_proxy_module"
                    540: MAIL_PROXY_SRCS="src/mail/ngx_mail_proxy_module.c"
                    541: 
                    542: NGX_GOOGLE_PERFTOOLS_MODULE=ngx_google_perftools_module
                    543: NGX_GOOGLE_PERFTOOLS_SRCS=src/misc/ngx_google_perftools_module.c
                    544: 
                    545: NGX_CPP_TEST_SRCS=src/misc/ngx_cpp_test_module.cpp

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>