File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed
meta-oe/recipes-extended/redis/redis Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change 1
- Define _GNU_SOURCE to get PTHREAD_MUTEX_INITIALIZER
1
+ From 18dc1457db8f66237e016b85a04dc50833c33c50 Mon Sep 17 00:00:00 2001
2
+ From: Khem Raj <
[email protected] >
3
+ Date: Sat, 21 Dec 2019 12:09:51 -0800
4
+ Subject: [PATCH] Define _GNU_SOURCE to get PTHREAD_MUTEX_INITIALIZER
2
5
3
6
Fixes
4
7
| zmalloc.c:87:37: error: 'PTHREAD_MUTEX_DEFAULT' undeclared here (not in a function)
7
10
8
11
Upstream-Status: Pending
9
12
Signed-off-by: Khem Raj <
[email protected] >
13
+
14
+ ---
15
+ src/zmalloc.c | 1 +
16
+ 1 file changed, 1 insertion(+)
17
+
18
+ diff --git a/src/zmalloc.c b/src/zmalloc.c
19
+ index ba03685..322304f 100644
10
20
--- a/src/zmalloc.c
11
21
+++ b/src/zmalloc.c
12
- @@ -28 ,6 +28 ,7 @@
13
- * POSSIBILITY OF SUCH DAMAGE.
14
- */
22
+ @@ -32 ,6 +32 ,7 @@
23
+ #include "config.h"
24
+ #include "solarisfixes.h"
15
25
16
26
+ #define _GNU_SOURCE
17
27
#include <stdio.h>
You can’t perform that action at this time.
0 commit comments