summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/sysklogd/files/0002-include-sys-types.h-for-off_t.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/sysklogd/files/0002-include-sys-types.h-for-off_t.patch')
-rw-r--r--meta/recipes-extended/sysklogd/files/0002-include-sys-types.h-for-off_t.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-extended/sysklogd/files/0002-include-sys-types.h-for-off_t.patch b/meta/recipes-extended/sysklogd/files/0002-include-sys-types.h-for-off_t.patch
deleted file mode 100644
index 799a7a4c4c..0000000000
--- a/meta/recipes-extended/sysklogd/files/0002-include-sys-types.h-for-off_t.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1From 10cff4ba2d09b30f8f1967f910e8ab08447a8add Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 7 Dec 2019 10:31:04 -0800
4Subject: [PATCH 2/2] include sys/types.h for off_t
5
6Fixes
7error: unknown type name 'off_t'
8
9Upstream-Status: Submitted [https://github.com/troglobit/sysklogd/pull/10]
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 src/compat.h | 1 +
13 1 file changed, 1 insertion(+)
14
15diff --git a/src/compat.h b/src/compat.h
16index a867636..1ef1bf0 100644
17--- a/src/compat.h
18+++ b/src/compat.h
19@@ -34,6 +34,7 @@
20 #include <pthread.h>
21 #include <stdlib.h>
22 #include <string.h>
23+#include <sys/types.h>
24
25 /*
26 * The following macro is used to remove const cast-away warnings
27--
282.24.0
29