|
|
- From 27f28950d4f9e44e776db5a5d2bc8d07df45eb30 Mon Sep 17 00:00:00 2001
- From: Willy Tarreau <w@1wt.eu>
- Date: Wed, 10 Aug 2016 18:30:56 +0200
- Subject: [PATCH 18/26] BUILD: log: iovec requires to include sys/uio.h on
- OpenBSD
-
- The following commit merged into 1.6-dev6 broke the build on OpenBSD :
-
- 609ac2a ("MEDIUM: log: replace sendto() with sendmsg() in __send_log()")
-
- Including sys/uio.h is enough to fix this. This fix needs to be backported
- to 1.6.
- (cherry picked from commit 077edcba2e5c25524b720f905417d9f0616cd252)
- ---
- src/log.c | 1 +
- 1 file changed, 1 insertion(+)
-
- diff --git a/src/log.c b/src/log.c
- index 1ddc06d..293a034 100644
- --- a/src/log.c
- +++ b/src/log.c
- @@ -22,6 +22,7 @@
- #include <errno.h>
-
- #include <sys/time.h>
- +#include <sys/uio.h>
-
- #include <common/config.h>
- #include <common/compat.h>
- --
- 2.7.3
-
|