summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/directfb
Commit message (Collapse)AuthorAgeFilesLines
* meta-openembedded/all: adapt to UNPACKDIR changesAlexander Kanavin2025-06-252-2/+2
| | | | | | | | | | | | | Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb: remove sysfsutils DEPENDSRoss Burton2025-06-121-1/+1
| | | | | | | This was removed upstream in 1.6.0. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: drop ld-is-gold supportYi Zhao2025-02-231-3/+0
| | | | | | | | | | The gold linker support has been dropped in oe-core[1]. Remove related special cases and patches in recipes. [1] https://git.openembedded.org/openembedded-core/commit/?id=a4addb9ab63011e7c604fc5daff95559e7d214e7 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Drop unnecessary SRC_URI md5sum from the recipes in meta-oe.J. S.2024-11-052-2/+0
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb: Fix C++17 build warningRicardo Simoes2024-08-262-0/+45
| | | | | | | | | | | | | | | | | | | DirectFB explicitly supports usage of C++. With C++17 and later the below warning is given: lib/direct/util.h:223:19: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister] 223 | register int ret = 0; | ^~~ To address that, this commit brings in the patch proposed by PR which removes the usage of the register keyword: https://github.com/deniskropp/DirectFB/pull/25 Signed-off-by: Ricardo Simoes <ricardo.simoes@pt.bosch.com> Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb: Add zlib PACKAGECONFIGRicardo Simoes2024-08-261-3/+3
| | | | | | | | | zlib was always enabled in DEPENDS and EXTRA_OEMAKE. Now it is a PACKAGECONFIG which is enabled by default. Signed-off-by: Ricardo Simoes <ricardo.simoes@pt.bosch.com> Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb: Add freetype PACKAGECONFIGRicardo Simoes2024-08-261-3/+3
| | | | | | | | | freetype was always enabled in DEPENDS and EXTRA_OEMAKE. Now it is a PACKAGECONFIG which is enabled by default. Signed-off-by: Ricardo Simoes <ricardo.simoes@pt.bosch.com> Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb: Order PACKAGECONFIG alphabeticallyRicardo Simoes2024-08-261-5/+5
| | | | | | Signed-off-by: Ricardo Simoes <ricardo.simoes@pt.bosch.com> Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb: Fix build with musl+GCC14Khem Raj2024-05-232-0/+37
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb: Fix build with musl >= 1.2.5Khem Raj2024-03-252-0/+33
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb-examples: Fix pthread_t assignment typeKhem Raj2022-09-052-0/+40
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Update LICENSE variable to use SPDX license identifiersKhem Raj2022-03-041-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Convert to new override syntaxMartin Jansa2021-08-031-7/+7
| | | | | | | | | | This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* directfb: Fix build on riscv32Khem Raj2020-11-152-0/+55
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb: Disable dtor-typedef warning with clang11Khem Raj2020-08-171-0/+2
| | | | | | | | | Fixes build src/core/Renderer.cpp:2021:21: error: destructor cannot be declared using a typedef 'DirectFB::Renderer::Throttle' (aka 'DirectFB::Throttle') of the class name [-Wdtor-typedef] Renderer::Throttle::~Throttle() ^ Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb: Fix build for 32bit arches with 64bit time_tKhem Raj2019-12-012-1/+141
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb: fix tslib version check in configure.inBen Guan2018-08-192-0/+39
| | | | | | | | | | | | | | | | | | The patch makes sure that the old as well as the new tslib pkg-config metadata file naming style is handled correctly. tslib 0.0 to 1.0 created only a tslib-<VERSION>.pc pkg-config metadata file. With tslib 1.1 the tslib-<VERSION>.pc phase out was started. Additionally, the pkg-config metadata file tslib.pc was added. Since tslib 1.6 the tslib-<VERSION>.pc metadata file is deprecated. Now, there is only a tslib.pc. Signed-off-by: Ben Guan <ben.guan@cn.bosch.com> Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* directfb: add more PACKAGECONFIGsTrevor Woerner2018-03-211-2/+2
| | | | | | | | Allow the following features to be enabled by the user during configuration: mesa, x11. Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* directfb: Disable vdpau x11 spportKhem Raj2016-12-261-0/+2
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* directfb: add PACKAGECONFIG for inputdriversMartin Jansa2016-09-051-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * move tslib dependency to PACKAGECONFIG and don't add it explicitly through LDFLAGS, because it breaks the build now when tslib was removed from oe-core: configure:4543: checking whether the C compiler works configure:4565: x86_64-oe-linux-gcc -m64 -march=core2 -mtune=core2 -msse3 -mfpmath=sse --sysroot=/OE/build/shr-core/tmp-glibc/sysroots/qemux86-64 -O2 -pipe -g -feliminate-unused-debug-types -fdebug-prefix-map=/OE/build/shr-core/tmp-glibc/work/core2-64-oe-linux/directfb/1.7.7-r0=/usr/src/debug/directfb/1.7.7-r0 -fdebug-prefix-map=/OE/build/shr-core/tmp-glibc/sysroots/x86_64-linux= -fdebug-prefix-map=/OE/build/shr-core/tmp-glibc/sysroots/qemux86-64= -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -lts -lm conftest.c >&5 /OE/build/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/libexec/x86_64-oe-linux/gcc/x86_64-oe-linux/6.2.0/ld: cannot find -lts collect2: error: ld returned 1 exit status configure:4569: $? = 1 configure:4607: result: no configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define DIRECTFB_VERSION "1.7.7" | #define DIRECTFB_VERSION_VENDOR "" | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:4612: error: in `/OE/build/shr-core/tmp-glibc/work/core2-64-oe-linux/directfb/1.7.7-r0/build': configure:4614: error: C compiler cannot create executables See `config.log' for more details Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* directfb: move recipe to meta-oeMaxin B. John2016-07-2912-0/+547
directfb.org has been down for about a year now. Since there are active users for this recipe, it makes sense to move this from oe-core to meta-oe. Signed-off-by: Maxin B. John <maxin.john@intel.com>