-
Notifications
You must be signed in to change notification settings - Fork 37
/
config
77 lines (57 loc) · 2.29 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
68
69
70
71
72
73
74
75
76
77
ngx_addon_name="ngx_python_module"
if [ "$NGX_SYSTEM" = "Darwin" ]; then
CFLAGS="$CFLAGS -D_XOPEN_SOURCE"
fi
PYTHON_CONFIG=${PYTHON_CONFIG:-python-config}
PYTHON_CORE_INCS=`$PYTHON_CONFIG --includes|sed -e 's/^-I//g' -e 's/ -I/ /g'`
PYTHON_CORE_LIBS=`$PYTHON_CONFIG --ldflags`
PYTHON_CORE_DEPS="$ngx_addon_dir/src/ngx_python.h"
PYTHON_CORE_SRCS="$ngx_addon_dir/src/ngx_python.c \
$ngx_addon_dir/src/ngx_python_sleep.c \
$ngx_addon_dir/src/ngx_python_socket.c \
$ngx_addon_dir/src/ngx_python_resolve.c"
PYTHON_HTTP_DEPS="$ngx_addon_dir/src/ngx_http_python_request.h"
PYTHON_HTTP_SRCS="$ngx_addon_dir/src/ngx_http_python_module.c \
$ngx_addon_dir/src/ngx_http_python_request.c"
PYTHON_STREAM_DEPS="$ngx_addon_dir/src/ngx_stream_python_session.h"
PYTHON_STREAM_SRCS="$ngx_addon_dir/src/ngx_stream_python_module.c \
$ngx_addon_dir/src/ngx_stream_python_session.c"
ngx_module_incs=$PYTHON_CORE_INCS
ngx_module_libs=$PYTHON_CORE_LIBS
if [ $ngx_module_link = DYNAMIC ] ; then
ngx_module_type=CORE
ngx_module_name=ngx_python_module
ngx_module_deps=$PYTHON_CORE_DEPS
ngx_module_srcs=$PYTHON_CORE_SRCS
if [ $HTTP != NO ]; then
ngx_module_name="$ngx_module_name ngx_http_python_module"
ngx_module_deps="$ngx_module_deps $PYTHON_HTTP_DEPS"
ngx_module_srcs="$ngx_module_srcs $PYTHON_HTTP_SRCS"
fi
if [ $STREAM != NO ]; then
ngx_module_name="$ngx_module_name ngx_stream_python_module"
ngx_module_deps="$ngx_module_deps $PYTHON_STREAM_DEPS"
ngx_module_srcs="$ngx_module_srcs $PYTHON_STREAM_SRCS"
fi
. auto/module
else
ngx_module_type=CORE
ngx_module_name=ngx_python_module
ngx_module_deps=$PYTHON_CORE_DEPS
ngx_module_srcs=$PYTHON_CORE_SRCS
. auto/module
if [ $HTTP != NO ]; then
ngx_module_type=HTTP
ngx_module_name=ngx_http_python_module
ngx_module_deps="$PYTHON_CORE_DEPS $PYTHON_HTTP_DEPS"
ngx_module_srcs=$PYTHON_HTTP_SRCS
. auto/module
fi
if [ $STREAM != NO ]; then
ngx_module_type=STREAM
ngx_module_name=ngx_stream_python_module
ngx_module_deps="$PYTHON_CORE_DEPS $PYTHON_STREAM_DEPS"
ngx_module_srcs=$PYTHON_STREAM_SRCS
. auto/module
fi
fi