-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig
More file actions
24 lines (22 loc) · 1.02 KB
/
Copy pathconfig
File metadata and controls
24 lines (22 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
ngx_addon_name=ngx_http_lscache_module
if test -n "$ngx_module_link"; then
ngx_module_type=HTTP
ngx_module_name=ngx_http_lscache_module
ngx_module_srcs="$ngx_addon_dir/ngx_http_lscache_module.c \
$ngx_addon_dir/ngx_http_lscache_filter.c \
$ngx_addon_dir/ngx_http_lscache_serve.c \
$ngx_addon_dir/ngx_http_lscache_storage.c \
$ngx_addon_dir/ngx_http_lscache_purge.c \
$ngx_addon_dir/ngx_http_lscache_vary.c"
ngx_module_libs="PCRE"
. auto/module
else
HTTP_MODULES="$HTTP_MODULES ngx_http_lscache_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS \
$ngx_addon_dir/ngx_http_lscache_module.c \
$ngx_addon_dir/ngx_http_lscache_filter.c \
$ngx_addon_dir/ngx_http_lscache_serve.c \
$ngx_addon_dir/ngx_http_lscache_storage.c \
$ngx_addon_dir/ngx_http_lscache_purge.c \
$ngx_addon_dir/ngx_http_lscache_vary.c"
fi