summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/systemd/systemd/0011-src-basic-missing.h-check-for-missing-__compar_fn_t-.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/systemd/systemd/0011-src-basic-missing.h-check-for-missing-__compar_fn_t-.patch')
-rw-r--r--meta/recipes-core/systemd/systemd/0011-src-basic-missing.h-check-for-missing-__compar_fn_t-.patch48
1 files changed, 48 insertions, 0 deletions
diff --git a/meta/recipes-core/systemd/systemd/0011-src-basic-missing.h-check-for-missing-__compar_fn_t-.patch b/meta/recipes-core/systemd/systemd/0011-src-basic-missing.h-check-for-missing-__compar_fn_t-.patch
new file mode 100644
index 0000000000..1a22ffd9e9
--- /dev/null
+++ b/meta/recipes-core/systemd/systemd/0011-src-basic-missing.h-check-for-missing-__compar_fn_t-.patch
@@ -0,0 +1,48 @@
1From 045f205fd21e5e380edf813de04fcfbf5a487219 Mon Sep 17 00:00:00 2001
2From: Chen Qi <Qi.Chen@windriver.com>
3Date: Mon, 2 Jul 2018 13:28:25 +0800
4Subject: [PATCH 11/19] src/basic/missing.h: check for missing __compar_fn_t
5 typedef
6
7include missing.h for missing __compar_fn_t
8
9Upstream-Status: Inappropriate [musl specific]
10
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
13---
14 src/basic/missing.h | 5 +++++
15 src/basic/strbuf.c | 1 +
16 2 files changed, 6 insertions(+)
17
18diff --git a/src/basic/missing.h b/src/basic/missing.h
19index 6dc750eba..cd1cc109f 100644
20--- a/src/basic/missing.h
21+++ b/src/basic/missing.h
22@@ -1179,6 +1179,11 @@ struct input_mask {
23 #define RENAME_NOREPLACE (1 << 0)
24 #endif
25
26+#ifndef __COMPAR_FN_T
27+#define __COMPAR_FN_T
28+typedef int (*__compar_fn_t)(const void *, const void *);
29+#endif
30+
31 #ifndef KCMP_FILE
32 #define KCMP_FILE 0
33 #endif
34diff --git a/src/basic/strbuf.c b/src/basic/strbuf.c
35index e2ed776a0..4d3ebec4c 100644
36--- a/src/basic/strbuf.c
37+++ b/src/basic/strbuf.c
38@@ -7,6 +7,7 @@
39 #include "alloc-util.h"
40 #include "strbuf.h"
41 #include "util.h"
42+#include "missing.h"
43
44 /*
45 * Strbuf stores given strings in a single continuous allocated memory
46--
472.11.0
48