From: Willy Tarreau Date: Wed, 10 Aug 2016 16:57:38 +0000 (+0200) Subject: BUILD: connection: fix build breakage on openbsd due to missing in_systm.h X-Git-Tag: v1.7-dev4~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2629f293e43994dc96d36369dbc86131bd61243;p=thirdparty%2Fhaproxy.git BUILD: connection: fix build breakage on openbsd due to missing in_systm.h Recent commit 93b227d ("MINOR: listener: add the "accept-netscaler-cip" option to the "bind" keyword") introduced an include of netinet/ip.h which requires in_systm.h on OpenBSD. No backport is needed. --- diff --git a/include/types/connection.h b/include/types/connection.h index 2d10704c11..beb9b898e2 100644 --- a/include/types/connection.h +++ b/include/types/connection.h @@ -32,6 +32,7 @@ #include #include +#include #include #include