From: Sergey Kandaurov Date: Thu, 16 Apr 2015 15:18:37 +0000 (+0300) Subject: Core: ensure that ngx_config.h is always included first. X-Git-Tag: release-1.8.0~1 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=0b0ba16e51f94c6fa779474112f9cf5ad6778bc6;p=nginx.git Core: ensure that ngx_config.h is always included first. This fixes compilation of various 3rd party modules when nginx is configured with threads. --- diff --git a/src/core/ngx_core.h b/src/core/ngx_core.h index bc1d43f98..97100f6d0 100644 --- a/src/core/ngx_core.h +++ b/src/core/ngx_core.h @@ -9,6 +9,9 @@ #define _NGX_CORE_H_INCLUDED_ +#include + + typedef struct ngx_module_s ngx_module_t; typedef struct ngx_conf_s ngx_conf_t; typedef struct ngx_cycle_s ngx_cycle_t;