Re: [ovs-dev] [PATCH] lib: Fix netbsd compilation error

2016-02-23 Thread Ben Pfaff
On Mon, Feb 15, 2016 at 10:08:51AM -0500, Lance Richardson wrote: > NetBSD requires to be included before . > Without this fix we have: > > In file included from lib/netdev-vport.c:25:0: > /usr/include/netinet/ip6.h:82:18: error: field 'ip6_src' has incomplete type > /usr/include/netinet/ip6.h:83

[ovs-dev] [PATCH] lib: Fix netbsd compilation error

2016-02-15 Thread Lance Richardson
NetBSD requires to be included before . Without this fix we have: In file included from lib/netdev-vport.c:25:0: /usr/include/netinet/ip6.h:82:18: error: field 'ip6_src' has incomplete type /usr/include/netinet/ip6.h:83:18: error: field 'ip6_dst' has incomplete type Signed-off-by: Lance Richards