-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig
41 lines (36 loc) · 1.4 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
ngx_feature="statshouse http module"
ngx_module_type=HTTP
ngx_module_name=ngx_http_statshouse_module
ngx_module_srcs="
$ngx_addon_dir/src/ngx_http_statshouse_module.c \
$ngx_addon_dir/src/ngx_statshouse_aggregate.c \
$ngx_addon_dir/src/ngx_statshouse_stat.c \
$ngx_addon_dir/src/ngx_statshouse_tl.c \
$ngx_addon_dir/src/ngx_statshouse.c"
ngx_module_deps=" \
$ngx_addon_dir/include/ngx_http_statshouse.h \
$ngx_addon_dir/include/ngx_statshouse_stat.h \
$ngx_addon_dir/src/ngx_statshouse_aggregate.h \
$ngx_addon_dir/src/ngx_statshouse_tl.h \
$ngx_addon_dir/src/ngx_statshouse.h"
ngx_module_incs="$ngx_addon_dir/include"
. auto/module
if [ $STREAM != NO ]; then
ngx_module_type=STREAM
ngx_module_name=ngx_stream_statshouse_module
ngx_module_srcs="
$ngx_addon_dir/src/ngx_stream_statshouse_module.c \
$ngx_addon_dir/src/ngx_statshouse_aggregate.c \
$ngx_addon_dir/src/ngx_statshouse_stat.c \
$ngx_addon_dir/src/ngx_statshouse_tl.c \
$ngx_addon_dir/src/ngx_statshouse.c"
ngx_module_deps=" \
$ngx_addon_dir/include/ngx_stream_statshouse.h \
$ngx_addon_dir/include/ngx_statshouse_stat.h \
$ngx_addon_dir/src/ngx_statshouse_aggregate.h \
$ngx_addon_dir/src/ngx_statshouse_tl.h \
$ngx_addon_dir/src/ngx_statshouse.h"
ngx_module_incs=
. auto/module
fi
have=NGX_HTTP_STATSHOUSE_MODULE . auto/have