From ca28d1e1cb4fbdebf6d98f1fbac0d66abc5f0f15 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Wed, 24 Jan 2007 18:20:50 +0100 Subject: [PATCH] [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. --- include/common/standard.h | 1 + 1 file changed, 1 insertion(+) 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 */ -- 2.47.2