mirror of
https://github.com/nginx/nginx.git
synced 2024-11-28 08:09:00 +08:00
97f59dda09
The auto/module script is extended to understand ngx_module_link=DYNAMIC. When set, it links the module as a shared object rather than statically into nginx binary. The module can later be loaded using the "load_module" directive. New auto/module parameter ngx_module_order allows to define module loading order in complex cases. By default the order is set based on ngx_module_type. 3rd party modules can be compiled dynamically using the --add-dynamic-module configure option, which will preset ngx_module_link to "DYNAMIC" before calling the module config script. Win32 support is rudimentary, and only works when using MinGW gcc (which is able to handle exports/imports automatically). In collaboration with Ruslan Ermilov.
53 lines
758 B
Plaintext
53 lines
758 B
Plaintext
|
|
# Copyright (C) Igor Sysoev
|
|
# Copyright (C) Nginx, Inc.
|
|
|
|
|
|
NGX_MAKEFILE=$NGX_OBJS/Makefile
|
|
NGX_MODULES_C=$NGX_OBJS/ngx_modules.c
|
|
NGX_MODULES=
|
|
|
|
NGX_AUTO_HEADERS_H=$NGX_OBJS/ngx_auto_headers.h
|
|
NGX_AUTO_CONFIG_H=$NGX_OBJS/ngx_auto_config.h
|
|
|
|
NGX_AUTOTEST=$NGX_OBJS/autotest
|
|
NGX_AUTOCONF_ERR=$NGX_OBJS/autoconf.err
|
|
|
|
# STUBs
|
|
NGX_ERR=$NGX_OBJS/autoconf.err
|
|
MAKEFILE=$NGX_OBJS/Makefile
|
|
|
|
|
|
NGX_PCH=
|
|
NGX_USE_PCH=
|
|
|
|
|
|
# check the echo's "-n" option and "\c" capability
|
|
|
|
if echo "test\c" | grep c >/dev/null; then
|
|
|
|
if echo -n test | grep n >/dev/null; then
|
|
ngx_n=
|
|
ngx_c=
|
|
|
|
else
|
|
ngx_n=-n
|
|
ngx_c=
|
|
fi
|
|
|
|
else
|
|
ngx_n=
|
|
ngx_c='\c'
|
|
fi
|
|
|
|
|
|
# create Makefile
|
|
|
|
cat << END > Makefile
|
|
|
|
default: build
|
|
|
|
clean:
|
|
rm -rf Makefile $NGX_OBJS
|
|
END
|