From 7e1ffe3c4136b6a100b8e1220ea1d8186667d117 Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Wed, 19 Oct 2016 13:32:57 -0200 Subject: [PATCH] ovn: fix build on FreeBSD The missing include was needed for struct in6_addr. Otherwise, this build failure would occur. In file included from ovn/lib/actions.c:23: ovn/lib/ovn-dhcp.h:163:21: error: field has incomplete type 'struct in6_addr' Signed-off-by: Thadeu Lima de Souza Cascardo Signed-off-by: Ben Pfaff --- ovn/lib/ovn-dhcp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ovn/lib/ovn-dhcp.h b/ovn/lib/ovn-dhcp.h index 65a066be029..ecfcc03a79e 100644 --- a/ovn/lib/ovn-dhcp.h +++ b/ovn/lib/ovn-dhcp.h @@ -17,6 +17,7 @@ #ifndef OVN_DHCP_H #define OVN_DHCP_H 1 +#include #include "openvswitch/hmap.h" #include "hash.h"