From d72611ba7d9ef92f3373a7e7e020fe6f2f4ff4d1 Mon Sep 17 00:00:00 2001 From: Lee Chee Yang Date: Wed, 1 Nov 2023 14:37:14 +0800 Subject: metee: fix compilation error with musl Signed-off-by: Lee Chee Yang Signed-off-by: Anuj Mittal --- ...0001-Include-poll.h-instead-of-sys-poll.h.patch | 29 ++++++++++++++++++++++ recipes-bsp/metee/metee_3.1.6.bb | 4 ++- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 recipes-bsp/metee/files/0001-Include-poll.h-instead-of-sys-poll.h.patch diff --git a/recipes-bsp/metee/files/0001-Include-poll.h-instead-of-sys-poll.h.patch b/recipes-bsp/metee/files/0001-Include-poll.h-instead-of-sys-poll.h.patch new file mode 100644 index 00000000..cc898e75 --- /dev/null +++ b/recipes-bsp/metee/files/0001-Include-poll.h-instead-of-sys-poll.h.patch @@ -0,0 +1,29 @@ +From a98ff2597628d7225c1871719db2411a1e4b7c0a Mon Sep 17 00:00:00 2001 +From: cheeyanglee +Date: Wed, 1 Nov 2023 09:59:32 +0800 +Subject: [PATCH] metee_linux.c: Include poll.h instead of sys/poll.h + +fix compilation error with musl C library: + + error: #warning redirecting incorrect #include to + +Upstream-Status: Submitted [ https://github.com/intel/metee/pull/6 ] + +Signed-off-by: Lee Chee Yang +--- + src/linux/metee_linux.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/linux/metee_linux.c b/src/linux/metee_linux.c +index 463fe6c..8507ea4 100644 +--- a/src/linux/metee_linux.c ++++ b/src/linux/metee_linux.c +@@ -12,7 +12,7 @@ + #include + #include + #include +-#include ++#include + #include + + #include "metee.h" diff --git a/recipes-bsp/metee/metee_3.1.6.bb b/recipes-bsp/metee/metee_3.1.6.bb index 1ac55bd6..9a4e267c 100644 --- a/recipes-bsp/metee/metee_3.1.6.bb +++ b/recipes-bsp/metee/metee_3.1.6.bb @@ -10,7 +10,9 @@ COMPATIBLE_HOST = '(i.86|x86_64).*-linux' inherit cmake -SRC_URI = "git://github.com/intel/metee.git;branch=master;protocol=https" +SRC_URI = "git://github.com/intel/metee.git;branch=master;protocol=https \ + file://0001-Include-poll.h-instead-of-sys-poll.h.patch \ +" SRCREV = "0173c7b6eef327f398c16e51e5ab770390b91472" S = "${WORKDIR}/git" -- cgit v1.2.3-54-g00ecf