From: Willy Tarreau Date: Thu, 10 May 2007 04:39:03 +0000 (+0200) Subject: [BUILD] fixed build of files including standard.h on OpenBSD X-Git-Tag: v1.3.10.2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=938b303a04a959d260f2271f6e72080395937d1a;p=thirdparty%2Fhaproxy.git [BUILD] fixed build of files including standard.h on OpenBSD The file standard.h included netinet/in.h without including sys/types.h. This broke build on OpenBSD. --- diff --git a/include/common/standard.h b/include/common/standard.h index b150445dd0..8efda8a4b4 100644 --- a/include/common/standard.h +++ b/include/common/standard.h @@ -23,6 +23,7 @@ #define _COMMON_STANDARD_H #include +#include #include #include #include