Skip to content

Commit dacf4a2

Browse files
author
Christos Kontas
committed
Fix compilation under NGINX v1.9.11
After the latest changes on NGINX dynamic modules, the module can't link properly to the main NGINX codebase, as it reports a missing symbol: `ngx_http_aws_auth`. Apparently, we need to specify the module's symbol in the `ngx_module_name` directive.
1 parent 396137c commit dacf4a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ 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=
88
ngx_module_srcs="$ngx_addon_dir/ngx_http_aws_auth.c"

0 commit comments

Comments
 (0)