forked from arut/nginx-mysql-module
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig
More file actions
24 lines (16 loc) · 666 Bytes
/
config
File metadata and controls
24 lines (16 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ngx_addon_name="ngx_http_mysql_module"
HTTP_MODULES="$HTTP_MODULES \
ngx_http_mysql_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS \
$ngx_addon_dir/src/ngx_http_mysql_module.c \
$ngx_addon_dir/src/ngx_http_mysql_handler.c \
$ngx_addon_dir/src/ngx_http_mysql_output.c"
NGX_ADDON_DEPS="$NGX_ADDON_DEPS \
$ngx_addon_dir/src/ngx_http_mysql_module.h \
$ngx_addon_dir/src/ngx_http_mysql_output.h \
$ngx_addon_dir/src/ngx_http_mysql_handler.h \
$ngx_addon_dir/src/ngx_http_mysql_ddebug.h \
$ngx_addon_dir/src/resty_dbd_stream.h"
CORE_LIBS="$CORE_LIBS `mysql_config --libs`"
CFLAGS="$CFLAGS `mysql_config --include`"
CFLAGS="$CFLAGS -I$ngx_addon_dir/src"