wpewebkit: remove gbm PACKAGECONFIG for ccimx6 and ccmp1 platforms

Similar to what happens in cog with the drm PACKAGECONFIG, this creates a
dependency with libgbm, a library which isn't available on these platforms.

https://onedigi.atlassian.net/browse/DEL-9011

Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
This commit is contained in:
Gabriel Valcazar 2024-09-12 15:50:21 +02:00
parent 7259027109
commit 5922cfe9cb
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# Copyright (C) 2020-2022, Digi International Inc.
# Copyright (C) 2020-2024, Digi International Inc.
# We can't build the WebKit with fb images, so force wayland as a required
# distro feature.
@ -8,3 +8,8 @@ REQUIRED_DISTRO_FEATURES = "wayland"
# Limit number of parallel threads make can run to avoid a ninja build issue
PARALLEL_MAKE = "-j ${@oe.utils.cpu_count(at_most=16)}"
# gbm PACKAGECONFIG pulls in libgbm dependency, which isn't available
# on the i.MX6 and ccmp1
PACKAGECONFIG:remove:ccimx6 = "gbm"
PACKAGECONFIG:remove:ccmp1 = "gbm"