package/wpebackend-fdo: package needs wayland libegl
Now wpebackend-fdo depends only on HAS_LIBEGL but if libegl is not of wayland type, build breaks due to different EGLNativeWindowType types depending on backends(fb,x11,wl). Modify: 'depend on BR2_PACKAGE_HAS_LIBEGL' to: 'depend on BR2_PACKAGE_HAS_LIBEGL_WAYLAND' in Config.in to avoid building if there is not a wayland egl backend. Modify also comment in Config.in when package is not selectable mentioning the need to have an OpenEGL-capable Wayland backend. Fixes: http://autobuild.buildroot.net/results/4f02b91f6ffffd194e09ed18c917b4f678b1a52d/ Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com> Reviewed-by: Adrian Perez de Castro <aperez@igalia.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
2adc578dfd
commit
5b3c7a3e78
@ -1,5 +1,5 @@
|
||||
comment "wpebackend-fdo needs a toolchain w/ C++, wchar, threads, dynamic library and an OpenEGL-capable backend"
|
||||
depends on !BR2_PACKAGE_HAS_LIBEGL || !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR \
|
||||
comment "wpebackend-fdo needs a toolchain w/ C++, wchar, threads, dynamic library and an OpenEGL-capable Wayland backend"
|
||||
depends on !BR2_PACKAGE_HAS_LIBEGL_WAYLAND || !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR \
|
||||
|| !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
|
||||
config BR2_PACKAGE_WPEBACKEND_FDO
|
||||
@ -9,7 +9,7 @@ config BR2_PACKAGE_WPEBACKEND_FDO
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # wayland, libglib2
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
depends on BR2_PACKAGE_HAS_LIBEGL
|
||||
depends on BR2_PACKAGE_HAS_LIBEGL_WAYLAND
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_LIBWPE
|
||||
select BR2_PACKAGE_WAYLAND
|
||||
|
Loading…
Reference in New Issue
Block a user