diff options
author | Dmitry Volyntsev <xeioex@nginx.com> | 2025-04-02 17:47:10 -0700 |
---|---|---|
committer | Dmitry Volyntsev <xeioexception@gmail.com> | 2025-04-03 22:20:32 -0700 |
commit | f678c9048b734a6cfff36e6de9ecfe11bed266b4 (patch) | |
tree | faa06192c4fd1d9ff986772eb06d717e5fa2dff0 /nginx/ngx_http_js_module.c | |
parent | a4d0f9478dc0fb5c0cd5e9003a208ca3fb8ecb15 (diff) | |
download | njs-f678c9048b734a6cfff36e6de9ecfe11bed266b4.tar.gz njs-f678c9048b734a6cfff36e6de9ecfe11bed266b4.zip |
QuickJS: added xml to nginx modules.
Missed in cec9a1650.
Diffstat (limited to 'nginx/ngx_http_js_module.c')
-rw-r--r-- | nginx/ngx_http_js_module.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nginx/ngx_http_js_module.c b/nginx/ngx_http_js_module.c index 0c8215c5..5a131bc9 100644 --- a/nginx/ngx_http_js_module.c +++ b/nginx/ngx_http_js_module.c @@ -1140,6 +1140,9 @@ qjs_module_t *njs_http_qjs_addon_modules[] = { #ifdef NJS_HAVE_OPENSSL &qjs_webcrypto_module, #endif +#ifdef NJS_HAVE_XML + &qjs_xml_module, +#endif #ifdef NJS_HAVE_ZLIB &qjs_zlib_module, #endif |