diff options
Diffstat (limited to 'nginx/ngx_js.c')
-rw-r--r-- | nginx/ngx_js.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nginx/ngx_js.c b/nginx/ngx_js.c index 2b5be2ce..ed3ea5c2 100644 --- a/nginx/ngx_js.c +++ b/nginx/ngx_js.c @@ -88,9 +88,15 @@ static njs_external_t ngx_js_ext_core[] = { njs_module_t *njs_js_addon_modules[] = { +#ifdef NJS_HAVE_OPENSSL &njs_webcrypto_module, +#endif +#ifdef NJS_HAVE_XML &njs_xml_module, +#endif +#ifdef NJS_HAVE_ZLIB &njs_zlib_module, +#endif NULL, }; |