diff options
| -rw-r--r-- | meta-oe/recipes-graphics/directfb/directfb.inc | 1 | ||||
| -rw-r--r-- | meta-oe/recipes-graphics/directfb/directfb/0001-include-libgen.h-for-basename.patch | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/directfb/directfb.inc b/meta-oe/recipes-graphics/directfb/directfb.inc index 07b98648fd..4d38632e25 100644 --- a/meta-oe/recipes-graphics/directfb/directfb.inc +++ b/meta-oe/recipes-graphics/directfb/directfb.inc | |||
| @@ -23,6 +23,7 @@ SRC_URI = "http://downloads.yoctoproject.org/mirror/sources/DirectFB-${PV}.tar.g | |||
| 23 | file://fix-tslib-version-check.patch \ | 23 | file://fix-tslib-version-check.patch \ |
| 24 | file://0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch \ | 24 | file://0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch \ |
| 25 | file://0001-os-linux-Fix-build-when-__NR_futex-is-not-available.patch \ | 25 | file://0001-os-linux-Fix-build-when-__NR_futex-is-not-available.patch \ |
| 26 | file://0001-include-libgen.h-for-basename.patch \ | ||
| 26 | " | 27 | " |
| 27 | 28 | ||
| 28 | S = "${WORKDIR}/DirectFB-${PV}" | 29 | S = "${WORKDIR}/DirectFB-${PV}" |
diff --git a/meta-oe/recipes-graphics/directfb/directfb/0001-include-libgen.h-for-basename.patch b/meta-oe/recipes-graphics/directfb/directfb/0001-include-libgen.h-for-basename.patch new file mode 100644 index 0000000000..abdba18fec --- /dev/null +++ b/meta-oe/recipes-graphics/directfb/directfb/0001-include-libgen.h-for-basename.patch | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | From c8cf3ffd4fa14cdc6d607a09d51e898dec922348 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Mon, 25 Mar 2024 18:17:44 -0700 | ||
| 4 | Subject: [PATCH] include libgen.h for basename | ||
| 5 | |||
| 6 | basename prototype has been removed from string.h from latest musl [1] | ||
| 7 | compilers e.g. clang-18 flags the absense of prototype as error. therefore | ||
| 8 | include libgen.h for providing it. | ||
| 9 | |||
| 10 | [1] https://git.musl-libc.org/cgit/musl/commit/?id=725e17ed6dff4d0cd22487bb64470881e86a92e7 | ||
| 11 | |||
| 12 | Upstream-Status: Inappropriate [Upstream is dead] | ||
| 13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 14 | --- | ||
| 15 | systems/fbdev/fbdev.c | 1 + | ||
| 16 | 1 file changed, 1 insertion(+) | ||
| 17 | |||
| 18 | diff --git a/systems/fbdev/fbdev.c b/systems/fbdev/fbdev.c | ||
| 19 | index 5297358..4e6f178 100644 | ||
| 20 | --- a/systems/fbdev/fbdev.c | ||
| 21 | +++ b/systems/fbdev/fbdev.c | ||
| 22 | @@ -42,6 +42,7 @@ | ||
| 23 | #include <errno.h> | ||
| 24 | #include <string.h> | ||
| 25 | #include <strings.h> | ||
| 26 | +#include <libgen.h> | ||
| 27 | #if defined(HAVE_SYSIO) | ||
| 28 | # include <sys/io.h> | ||
| 29 | #endif | ||
| 30 | -- | ||
| 31 | 2.44.0 | ||
| 32 | |||
