-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig
52 lines (37 loc) · 1.59 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
42
43
44
45
46
47
48
49
50
51
52
ngx_addon_name="ngx_template_module ngx_http_template_module ngx_stream_template_module"
CORE_MODULE_SRCS="$ngx_addon_dir/src/ngx_template.c $ngx_addon_dir/src/ngx_template_module.c"
CORE_MODULE_DEPS="$ngx_addon_dir/src/api/ngx_template.h"
REQUIRED_INCS="$YAML_PREFIX/include $ngx_addon_dir/src/api"
REQUIRED_LIBS="-L$YAML_PREFIX/lib -lyaml"
SRCS="$ngx_addon_dir/src/ngx_http_template_module.c $ngx_addon_dir/src/ngx_stream_template_module.c"
if [ "$ngx_module_link" = DYNAMIC ]; then
ngx_module_type=HTTP_AUX_FILTER
ngx_module_name="ngx_http_template_module"
ngx_module_incs=$REQUIRED_INCS
ngx_module_libs=$REQUIRED_LIBS
ngx_module_deps="$DEPS"
ngx_module_srcs="$SRCS"
. auto/module
ngx_module_type=STREAM
ngx_module_name="ngx_stream_template_module"
ngx_module_incs=$REQUIRED_INCS
ngx_module_libs=$REQUIRED_LIBS
ngx_module_deps="$DEPS"
ngx_module_srcs="$SRCS"
. auto/module
ngx_module_type=CORE
ngx_module_name="ngx_template_module"
ngx_module_incs=$REQUIRED_INCS
ngx_module_libs=$REQUIRED_LIBS
ngx_module_deps="$CORE_MODULE_DEPS"
ngx_module_srcs="$CORE_MODULE_SRCS"
. auto/module
elif [ "$ngx_module_link" = ADDON ]; then
STREAM_MODULES="$STREAM_MODULES ngx_stream_template_module"
HTTP_AUX_FILTER_MODULES="$HTTP_AUX_FILTER_MODULES ngx_http_template_module"
EVENT_MODULES="$EVENT_MODULES ngx_template_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $SRCS $CORE_MODULE_SRCS"
NGX_ADDON_DEPS="$NGX_ADDON_DEPS $DEPS $CORE_MODULE_DEPS"
CORE_INCS="$CORE_INCS $REQUIRED_INCS"
CORE_LIBS="$CORE_LIBS $REQUIRED_LIBS"
fi