-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig
67 lines (60 loc) · 2.93 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
ngx_addon_name="ngx_ckp_module"
CHK_CORE_MODULES=" \
"
CHK_HTTP_MODULES=" \
ngx_ckp_module \
"
CHK_DEPS=" \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_compression.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_initializer.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_custom_response.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_io.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_failing_state.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_metric.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_hook_threads.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_static_content.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_hooks.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_thread.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_http_parser.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_utils.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_http_usercheck.h \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_http_cp_attachment_module.h \
$ngx_addon_dir/core/include/attachments/nginx_attachment_common.h \
$ngx_addon_dir/core/include/attachments/nginx_attachment_util.h \
$ngx_addon_dir/core/include/attachments/shmem_ipc.h \
$ngx_addon_dir/core/include/attachments/compression_utils.h \
$ngx_addon_dir/core/include/attachments/attachment_types.h \
$ngx_addon_dir/core/include/attachments/c_common/ip_common.h \
"
CHK_CORE_SRCS=" \
"
CHK_HTTP_SRCS=" \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_compression.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_io.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_custom_response.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_metric.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_failing_state.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_static_content.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_hook_threads.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_thread.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_hooks.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_utils.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_http_parser.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_http_cp_attachment_module.c \
$ngx_addon_dir/attachments/nginx/ngx_module/ngx_cp_initializer.c \
"
if [ $ngx_module_link = DYNAMIC ] ; then
ngx_module_name="$CHK_CORE_MODULES $CHK_HTTP_MODULES"
ngx_module_srcs="$CHK_CORE_SRCS $CHK_HTTP_SRCS"
. auto/module
elif [ $ngx_module_link = ADDON ] ; then
ngx_module_type=CORE
ngx_module_name=$CHK_CORE_MODULES
ngx_module_srcs=$CHK_CORE_SRCS
. auto/module
ngx_module_type=HTTP
ngx_module_name=$CHK_HTTP_MODULES
ngx_module_srcs=$CHK_HTTP_SRCS
. auto/module
fi
USE_OPENSSL=YES