diff options
Diffstat (limited to 'recipes-bsp/metee/files/0001-Include-poll.h-instead-of-sys-poll.h.patch')
| -rw-r--r-- | recipes-bsp/metee/files/0001-Include-poll.h-instead-of-sys-poll.h.patch | 29 |
1 files changed, 0 insertions, 29 deletions
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 deleted file mode 100644 index cc898e75..00000000 --- a/recipes-bsp/metee/files/0001-Include-poll.h-instead-of-sys-poll.h.patch +++ /dev/null | |||
| @@ -1,29 +0,0 @@ | |||
| 1 | From a98ff2597628d7225c1871719db2411a1e4b7c0a Mon Sep 17 00:00:00 2001 | ||
| 2 | From: cheeyanglee <chee.yang.lee@intel.com> | ||
| 3 | Date: Wed, 1 Nov 2023 09:59:32 +0800 | ||
| 4 | Subject: [PATCH] metee_linux.c: Include poll.h instead of sys/poll.h | ||
| 5 | |||
| 6 | fix compilation error with musl C library: | ||
| 7 | |||
| 8 | error: #warning redirecting incorrect #include <sys/poll.h> to <poll.h> | ||
| 9 | |||
| 10 | Upstream-Status: Submitted [ https://github.com/intel/metee/pull/6 ] | ||
| 11 | |||
| 12 | Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com> | ||
| 13 | --- | ||
| 14 | src/linux/metee_linux.c | 2 +- | ||
| 15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 16 | |||
| 17 | diff --git a/src/linux/metee_linux.c b/src/linux/metee_linux.c | ||
| 18 | index 463fe6c..8507ea4 100644 | ||
| 19 | --- a/src/linux/metee_linux.c | ||
| 20 | +++ b/src/linux/metee_linux.c | ||
| 21 | @@ -12,7 +12,7 @@ | ||
| 22 | #include <stdlib.h> | ||
| 23 | #include <string.h> | ||
| 24 | #include <sys/ioctl.h> | ||
| 25 | -#include <sys/poll.h> | ||
| 26 | +#include <poll.h> | ||
| 27 | #include <unistd.h> | ||
| 28 | |||
| 29 | #include "metee.h" | ||
