From: Willy Tarreau Date: Wed, 24 Jan 2007 17:20:50 +0000 (+0100) Subject: [BUILD] fix build on FreeBSD (missing fd_set declaration) X-Git-Tag: v1.3.7~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca28d1e1cb4fbdebf6d98f1fbac0d66abc5f0f15;p=thirdparty%2Fhaproxy.git [BUILD] fix build on FreeBSD (missing fd_set declaration) Sorin Pop reported a patch to fix build on FreeBSD. The file common/standard.h used an fd_set in a declaration but did not include enough headers for it to be known. --- diff --git a/include/common/standard.h b/include/common/standard.h index fa9ed17acb..ec5e755d0d 100644 --- a/include/common/standard.h +++ b/include/common/standard.h @@ -24,6 +24,7 @@ #include #include +#include /****** string-specific macros and functions ******/ /* if a > max, then bound to . The macro returns the new */