blob: 03501d7d46558717b49e012e435e3dc8fd4c1fd2 (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright (C) Dmitry Volyntsev
# Copyright (C) F5, Inc
njs_module_name=qjs_buffer_module
njs_module_incs=
njs_module_srcs=src/qjs_buffer.c
. auto/qjs_module
njs_module_name=qjs_crypto_module
njs_module_incs=
njs_module_srcs=external/qjs_crypto_module.c
. auto/qjs_module
njs_module_name=qjs_fs_module
njs_module_incs=
njs_module_srcs=external/qjs_fs_module.c
. auto/qjs_module
njs_module_name=qjs_query_string_module
njs_module_incs=
njs_module_srcs=external/qjs_query_string_module.c
. auto/qjs_module
if [ $NJS_OPENSSL = YES -a $NJS_HAVE_OPENSSL = YES ]; then
njs_module_name=qjs_webcrypto_module
njs_module_incs=
njs_module_srcs=external/qjs_webcrypto_module.c
. auto/qjs_module
fi
if [ $NJS_LIBXML2 = YES -a $NJS_HAVE_LIBXML2 = YES ]; then
njs_module_name=qjs_xml_module
njs_module_incs=
njs_module_srcs=external/qjs_xml_module.c
. auto/qjs_module
fi
if [ $NJS_ZLIB = YES -a $NJS_HAVE_ZLIB = YES ]; then
njs_module_name=qjs_zlib_module
njs_module_incs=
njs_module_srcs=external/qjs_zlib_module.c
. auto/qjs_module
fi
|