1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# Copyright (C) Dmitry Volyntsev
# Copyright (C) NGINX, Inc.
njs_module_name=njs_buffer_module
njs_module_incs=
njs_module_srcs=src/njs_buffer.c
. auto/module
njs_module_name=njs_crypto_module
njs_module_incs=
njs_module_srcs=external/njs_crypto_module.c
. auto/module
if [ $NJS_OPENSSL = YES -a $NJS_HAVE_OPENSSL = YES ]; then
njs_module_name=njs_webcrypto_module
njs_module_incs=
njs_module_srcs=external/njs_webcrypto_module.c
. auto/module
fi
njs_module_name=njs_fs_module
njs_module_incs=
njs_module_srcs=external/njs_fs_module.c
. auto/module
njs_module_name=njs_query_string_module
njs_module_incs=
njs_module_srcs=external/njs_query_string_module.c
. auto/module
|