forked from openresty/rds-json-nginx-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig
16 lines (14 loc) · 1.08 KB
/
config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
ngx_addon_name=ngx_http_rds_json_filter_module
NGX_SRCS="$ngx_addon_dir/src/ngx_http_rds_json_filter_module.c $ngx_addon_dir/src/ngx_http_rds_json_processor.c $ngx_addon_dir/src/ngx_http_rds_json_util.c $ngx_addon_dir/src/ngx_http_rds_json_output.c $ngx_addon_dir/src/ngx_http_rds_json_handler.c"
NGX_DEPS="$ngx_addon_dir/src/ddebug.h $ngx_addon_dir/src/resty_dbd_stream.h $ngx_addon_dir/src/ngx_http_rds_json_filter_module.h $ngx_addon_dir/src/ngx_http_rds_json_processor.h $ngx_addon_dir/src/ngx_http_rds_json_util.h $ngx_addon_dir/src/ngx_http_rds.h $ngx_addon_dir/src/resty_dbd_stream.h $ngx_addon_dir/src/ngx_http_rds_json_output.h $ngx_addon_dir/src/ngx_http_rds_utils.h $ngx_addon_dir/src/ngx_http_rds_json_handler.h"
if test -n "$ngx_module_link"; then
ngx_module_type=HTTP
ngx_module_name=ngx_http_rds_json_filter_module
ngx_module_srcs="$NGX_SRCS"
ngx_module_deps="$NGX_DEPS"
. auto/module
else
HTTP_AUX_FILTER_MODULES="$HTTP_AUX_FILTER_MODULES ngx_http_rds_json_filter_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $NGX_SRCS"
NGX_ADDON_DEPS="$NGX_ADDON_DEPS $NGX_DEPS"
fi