From 638698da37a7fd09c51fade0ab6b66e77f788b0e Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Wed, 11 Mar 2020 14:10:23 +0100 Subject: [PATCH] BUILD: stream-int: fix a few includes dependencies The stream-int code doesn't need to load server.h as it doesn't use servers at all. However removing this one reveals that proxy.h was lacking types/checks.h that used to be silently inherited from types/server.h loaded before in stream_interface.h. --- include/proto/stream_interface.h | 1 - include/types/proxy.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/include/proto/stream_interface.h b/include/proto/stream_interface.h index d1e228b09..490ee5ebf 100644 --- a/include/proto/stream_interface.h +++ b/include/proto/stream_interface.h @@ -25,7 +25,6 @@ #include #include -#include #include #include #include diff --git a/include/types/proxy.h b/include/types/proxy.h index b64d448af..a3da428e8 100644 --- a/include/types/proxy.h +++ b/include/types/proxy.h @@ -40,6 +40,7 @@ #include #include +#include #include #include #include