summaryrefslogtreecommitdiffstats
path: root/bsp/meta-synopsys/recipes-graphics/wayland/weston/1001-os-compatibility-define-CLOCK_BOOTTIME-when-not-avai.patch
diff options
context:
space:
mode:
authorToshikazuOhiwa <toshikazu_ohiwa@mail.toyota.co.jp>2020-03-30 09:24:26 +0900
committerToshikazuOhiwa <toshikazu_ohiwa@mail.toyota.co.jp>2020-03-30 09:24:26 +0900
commit5b80bfd7bffd4c20d80b7c70a7130529e9a755dd (patch)
treeb4bb18dcd1487dbf1ea8127e5671b7bb2eded033 /bsp/meta-synopsys/recipes-graphics/wayland/weston/1001-os-compatibility-define-CLOCK_BOOTTIME-when-not-avai.patch
parent706ad73eb02caf8532deaf5d38995bd258725cb8 (diff)
agl-basesystem
Diffstat (limited to 'bsp/meta-synopsys/recipes-graphics/wayland/weston/1001-os-compatibility-define-CLOCK_BOOTTIME-when-not-avai.patch')
-rw-r--r--bsp/meta-synopsys/recipes-graphics/wayland/weston/1001-os-compatibility-define-CLOCK_BOOTTIME-when-not-avai.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/bsp/meta-synopsys/recipes-graphics/wayland/weston/1001-os-compatibility-define-CLOCK_BOOTTIME-when-not-avai.patch b/bsp/meta-synopsys/recipes-graphics/wayland/weston/1001-os-compatibility-define-CLOCK_BOOTTIME-when-not-avai.patch
new file mode 100644
index 00000000..a7f2a34a
--- /dev/null
+++ b/bsp/meta-synopsys/recipes-graphics/wayland/weston/1001-os-compatibility-define-CLOCK_BOOTTIME-when-not-avai.patch
@@ -0,0 +1,41 @@
+From 66b71951f8ce66f02040f8814e1d89db34c34a87 Mon Sep 17 00:00:00 2001
+From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+Date: Sun, 22 Feb 2015 12:36:00 +0100
+Subject: [PATCH] os-compatibility: define CLOCK_BOOTTIME when not available
+
+CLOCK_BOOTTIME is supposed to be provided by the C library headers,
+but uClibc 0.9.33.2 does not provide it. Instead of depending on an
+uClibc patch, let's make Weston define it to the right value when not
+already defined by the C library.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+---
+ shared/os-compatibility.h | 5 +++++
+ 1 file changed, 5 insertions(+)
+
+diff --git a/shared/os-compatibility.h b/shared/os-compatibility.h
+index 172bb7e..e369899 100644
+--- a/shared/os-compatibility.h
++++ b/shared/os-compatibility.h
+@@ -26,6 +26,7 @@
+ #include "config.h"
+
+ #include <sys/types.h>
++#include <time.h>
+
+ #ifdef HAVE_EXECINFO_H
+ #include <execinfo.h>
+@@ -37,6 +38,10 @@ backtrace(void **buffer, int size)
+ }
+ #endif
+
++#ifndef CLOCK_BOOTTIME
++#define CLOCK_BOOTTIME 7
++#endif
++
+ int
+ os_socketpair_cloexec(int domain, int type, int protocol, int *sv);
+
+--
+2.1.0
+