Skip to content

Commit 5be1e44

Browse files
committed
Merge pull request anomalizer#23 from irasnyd/master
Fix static and dynamic mode compilation with nginx >= 1.9.11
2 parents 396137c + 57d1570 commit 5be1e44

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ ngx_addon_name=ngx_http_aws_auth
22

33
if test -n "$ngx_module_link"; then
44
ngx_module_type=HTTP
5-
ngx_module_name=ngx_http_aws_auth
5+
ngx_module_name=ngx_http_aws_auth_module
66
ngx_module_incs=
77
ngx_module_deps=
8-
ngx_module_srcs="$ngx_addon_dir/ngx_http_aws_auth.c"
8+
ngx_module_srcs="$ngx_addon_dir/ngx_http_aws_auth_module.c"
99
ngx_module_libs="$CORE_LIBS -lssl"
1010

1111
. auto/module
1212
else
1313
HTTP_MODULES="$HTTP_MODULES ngx_http_aws_auth_module"
14-
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_aws_auth.c"
14+
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_aws_auth_module.c"
1515
CORE_LIBS="$CORE_LIBS -lssl"
16-
fi
16+
fi

0 commit comments

Comments
 (0)