forked from kjdev/nginx-keyval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config
42 lines (32 loc) · 974 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
31
32
33
34
35
36
37
38
39
40
41
42
# deprecated: for compatibility
if [ -n "$NGX_HTTP_KEYVAL_ZONE_REDIS" ]; then
NGX_KEYVAL_ZONE_REDIS=1
fi
if [ -n "$NGX_KEYVAL_ZONE_REDIS" ]; then
cat << END >> $NGX_AUTO_CONFIG_H
#ifndef NGX_HAVE_KEYVAL_ZONE_REDIS
#define NGX_HAVE_KEYVAL_ZONE_REDIS 1
#endif
END
NGX_KEYVAL_LIBS="-lhiredis"
fi
KEYVAL_SRCS="$ngx_addon_dir/src/ngx_keyval.c"
ngx_addon_name=ngx_http_keyval_module
if [ $HTTP != NO ]; then
ngx_module_type=HTTP
ngx_module_name=ngx_http_keyval_module
ngx_module_srcs="$ngx_addon_dir/src/ngx_http_keyval_module.c $KEYVAL_SRCS"
ngx_module_deps=
ngx_module_incs="$ngx_addon_dir/src"
ngx_module_libs="$NGX_KEYVAL_LIBS"
. auto/module
fi
if [ $STREAM != NO ]; then
ngx_module_type=STREAM
ngx_module_name=ngx_stream_keyval_module
ngx_module_srcs="$ngx_addon_dir/src/ngx_stream_keyval_module.c $KEYVAL_SRCS"
ngx_module_deps=
ngx_module_incs="$ngx_addon_dir/src"
ngx_module_libs="$NGX_KEYVAL_LIBS"
. auto/module
fi