From: Willy Tarreau Date: Wed, 11 Mar 2020 13:10:23 +0000 (+0100) Subject: BUILD: stream-int: fix a few includes dependencies X-Git-Tag: v2.2-dev5~82 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=638698da37a7fd09c51fade0ab6b66e77f788b0e;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/include/proto/stream_interface.h b/include/proto/stream_interface.h index d1e228b092..490ee5ebfc 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 b64d448af7..a3da428e80 100644 --- a/include/types/proxy.h +++ b/include/types/proxy.h @@ -40,6 +40,7 @@ #include #include +#include #include #include #include