kumquat-buildroot/package/gensio/0001-Fix-an-issue-compiling-with-pthreads-disabled.patch
Fabrice Fontaine 0e1a39ff26 package/gensio: fix build without threads
Fixes:
 - http://autobuild.buildroot.org/results/b5847ac9e818571b746e2a81cf830b6caf50a7d7

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2020-01-26 09:09:04 +01:00

28 lines
943 B
Diff

From 2e1a982ed0eef1188ad15995e177e7d40746685f Mon Sep 17 00:00:00 2001
From: Corey Minyard <cminyard@mvista.com>
Date: Tue, 7 Jan 2020 11:34:33 -0600
Subject: [PATCH] Fix an issue compiling with pthreads disabled
Define PTHREAD_MUTEX_INITIALIZER in this case.
Signed-off-by: Corey Minyard <cminyard@mvista.com>
[Retrieved from:
https://github.com/cminyard/gensio/commit/2e1a982ed0eef1188ad15995e177e7d40746685f]
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
lib/gensio_selector.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/gensio_selector.c b/lib/gensio_selector.c
index c050df0..66ada01 100644
--- a/lib/gensio_selector.c
+++ b/lib/gensio_selector.c
@@ -30,6 +30,7 @@
#define pthread_mutex_unlock(l) do { } while (0)
#define pthread_mutex_init(l, n) do { } while (0)
#define pthread_mutex_destroy(l, n) do { } while (0)
+#define PTHREAD_MUTEX_INITIALIZER 0
#endif
#include <gensio/gensio_selector.h>