Merge pull request #44 from vrnagy/master

Support to be built as dynamic module
pull/45/head
Adrian Perez 9 years ago
commit 06eda48a62

@ -6,8 +6,9 @@ compiler:
env:
# At least try stable and mainline versions
- NGINX=1.9.11
- NGINX=1.8.1
- NGINX=1.10.0 TYPE=dynamic
- NGINX=1.9.15 TYPE=dynamic
- NGINX=1.8.1 TYPE=static
# Also, the oldest supported version
# TODO: Fails building because it won't find IOV_MAX from header.
#- NGINX=0.7.69
@ -25,5 +26,5 @@ cache: ccache
script: |
wget -O - http://nginx.org/download/nginx-${NGINX}.tar.gz | tar -xzf -
cd nginx-${NGINX}
./configure --add-module=.. --with-http_addition_module
if [[ ${TYPE} = "dynamic" ]] ; then ./configure --add-dynamic-module=.. --with-http_addition_module ; else ./configure --add-module=.. --with-http_addition_module ; fi
make

@ -1,12 +1,19 @@
# vim:ft=sh:
ngx_addon_name=ngx_http_fancyindex_module
if test -n "$ngx_module_link"; then
ngx_module_type=HTTP
ngx_module_name=ngx_http_fancyindex_module
ngx_module_srcs="$ngx_addon_dir/ngx_http_fancyindex_module.c"
. auto/module
else
# XXX: Insert fancyindex module *after* index module!
#
HTTP_MODULES=`echo "${HTTP_MODULES}" | sed -e \
's/ngx_http_index_module/ngx_http_fancyindex_module ngx_http_index_module/'`
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_fancyindex_module.c"
if [ $HTTP_ADDITION != YES ] ; then
echo " - The 'addition' filter is needed for fancyindex_{header,footer}, but it was disabled"
fi
fi

Loading…
Cancel
Save