Skip to content

Commit

Permalink
Feature: nginx dynamic module support
Browse files Browse the repository at this point in the history
  • Loading branch information
kriegsmanj committed Feb 15, 2016
1 parent 131c030 commit b157ed3
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 b157ed3

Please sign in to comment.