]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUILD: connection: fix build breakage on openbsd due to missing in_systm.h
authorWilly Tarreau <w@1wt.eu>
Wed, 10 Aug 2016 16:57:38 +0000 (18:57 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 10 Aug 2016 17:32:33 +0000 (19:32 +0200)
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.

include/types/connection.h

index 2d10704c11a7f0ce39f2d9cf8a7d7e4875b517b2..beb9b898e2cd35fb7d74feb12bd58f0406f6d219 100644 (file)
@@ -32,6 +32,7 @@
 #include <types/port_range.h>
 #include <types/protocol.h>
 
+#include <netinet/in_systm.h>
 #include <netinet/ip.h>
 #include <netinet/ip6.h>