commit | 938b303a04a959d260f2271f6e72080395937d1a | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Thu May 10 06:39:03 2007 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Thu May 10 06:39:03 2007 +0200 |
tree | 104b8844d991d4de9675d09350ab97fbbf9387c8 | |
parent | 13398d3896e95233238c7ea08f0fbee4231e4b6c [diff] |
[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 b150445..8efda8a 100644 --- a/include/common/standard.h +++ b/include/common/standard.h
@@ -23,6 +23,7 @@ #define _COMMON_STANDARD_H #include <limits.h> +#include <sys/types.h> #include <netinet/in.h> #include <common/config.h> #include <proto/fd.h>