diff options
author | Piotr Sikora <piotrsikora@google.com> | 2016-10-28 19:29:38 +0300 |
---|---|---|
committer | Piotr Sikora <piotrsikora@google.com> | 2016-10-28 19:29:38 +0300 |
commit | 10a0b19ae5d2a2c1f2d2099619ed1b5996f82782 (patch) | |
tree | 1ed4aca3819d32e15cb7dbd9be9e9ea986c3f7c5 /nginx/ngx_http_js_module.c | |
parent | 8cf7280ed97a0eea529d220422b111381541b914 (diff) | |
download | njs-10a0b19ae5d2a2c1f2d2099619ed1b5996f82782.tar.gz njs-10a0b19ae5d2a2c1f2d2099619ed1b5996f82782.zip |
Added missing <nxt_auto_config.h> includes.
Previously, most objects were compiled without any
features detected by the ./configure script.
Signed-off-by: Piotr Sikora <piotrsikora@google.com>
Diffstat (limited to 'nginx/ngx_http_js_module.c')
-rw-r--r-- | nginx/ngx_http_js_module.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nginx/ngx_http_js_module.c b/nginx/ngx_http_js_module.c index 994f8623..49f1db9f 100644 --- a/nginx/ngx_http_js_module.c +++ b/nginx/ngx_http_js_module.c @@ -9,6 +9,7 @@ #include <ngx_core.h> #include <ngx_http.h> +#include <nxt_auto_config.h> #include <nxt_types.h> #include <nxt_clang.h> #include <nxt_string.h> |