From: Roman Bogorodskiy Date: Wed, 10 Jul 2013 09:38:06 +0000 (+0400) Subject: Fix bridge routines detection on kFreeBSD X-Git-Tag: CVE-2013-4154~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8849fc387cdcfe524e3c30a81e004f5f34a8df8b;p=thirdparty%2Flibvirt.git Fix bridge routines detection on kFreeBSD In order to properly detect bridge related definitions such as BRDGSFD, BRDGADD and BRDGDEL on kFreeBSD we need to include . http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=715321 Reported by Laurent Bigonville. --- diff --git a/configure.ac b/configure.ac index a6ad6a3ed6..015d6c25d6 100644 --- a/configure.ac +++ b/configure.ac @@ -2405,7 +2405,8 @@ AC_CHECK_DECLS([BRDGSFD, BRDGADD, BRDGDEL], [1], [whether BSD style bridge management is available])], [], - [#include + [#include + #include #include #include ])