From ca0b9871bc74d7d4548d76eb4d4c2a3a5ebb22ec Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Wed, 22 Jul 2020 14:48:49 +0300 Subject: QUIC: fixed bulding perl module by reducing header pollution. The ngx_http_perl_module module doesn't have a notion of including additional search paths through --with-cc-opt, which results in compile error incomplete type 'enum ssl_encryption_level_t' when building nginx without QUIC support. The enum is visible from quic event headers and eventually pollutes ngx_core.h. The fix is to limit including headers to compile units that are real consumers. --- src/core/ngx_core.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/core') diff --git a/src/core/ngx_core.h b/src/core/ngx_core.h index a8959ddcc..ade35be73 100644 --- a/src/core/ngx_core.h +++ b/src/core/ngx_core.h @@ -86,8 +86,6 @@ typedef void (*ngx_connection_handler_pt)(ngx_connection_t *c); #include #if (NGX_OPENSSL_QUIC) #include -#include -#include #endif #endif #include -- cgit