-
Notifications
You must be signed in to change notification settings - Fork 39
/
config
30 lines (25 loc) · 1018 Bytes
/
config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
ngx_addon_name=ngx_http_rds_json_filter_module
RDS_JSON_FILTER_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 \
"
RDS_JSON_FILTER_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 \
"
ngx_module_type=HTTP_AUX_FILTER
ngx_module_name=$ngx_addon_name
ngx_module_srcs="$RDS_JSON_FILTER_SRCS"
ngx_module_deps="$RDS_JSON_FILTER_DEPS"
. auto/module