Skip to content

Commit

Permalink
Merge pull request yaoweibin#19 from kriegsmanj/master
Browse files Browse the repository at this point in the history
Feature: nginx dynamic module support

fix yaoweibin#32 as well
  • Loading branch information
cuber authored Aug 6, 2019
2 parents bc58cb1 + b157ed3 commit b8a71ea
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions config
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
ngx_addon_name=ngx_http_subs_filter_module
HTTP_AUX_FILTER_MODULES="$HTTP_AUX_FILTER_MODULES ngx_http_subs_filter_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_subs_filter_module.c"

if test -n "$ngx_module_link"; then
ngx_module_type=HTTP_FILTER
ngx_module_name=ngx_http_subs_filter_module
ngx_module_incs=
ngx_module_deps=
ngx_module_srcs="$ngx_addon_dir/ngx_http_subs_filter_module.c"
ngx_module_libs=""

. auto/module
else
HTTP_AUX_FILTER_MODULES="$HTTP_AUX_FILTER_MODULES ngx_http_subs_filter_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_subs_filter_module.c"
fi

0 comments on commit b8a71ea

Please sign in to comment.