summaryrefslogtreecommitdiff
path: root/www-misc/zoneminder/files/zoneminder-1.30.4-glibc226.patch
blob: 34afe0cb3b675cf97eb96d69f740848b0ed928bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From 417421b1d869d1b71c8ec1a1e3b082fcede6ce58 Mon Sep 17 00:00:00 2001
From: Andrew Bauer <zonexpertconsulting@outlook.com>
Date: Tue, 13 Jun 2017 14:39:12 -0500
Subject: [PATCH] move include <sys/uio.h> outside defined(BSD) block (#1919)

---
 src/zm_comms.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/zm_comms.h b/src/zm_comms.h
index cf108c1ea..ae5fd5b08 100644
--- a/src/zm_comms.h
+++ b/src/zm_comms.h
@@ -30,9 +30,9 @@
 
 #include <set>
 #include <vector>
+#include <sys/uio.h>
 
 #if defined(BSD)
-#include <sys/uio.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #endif