mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Removed patch 0001 which was applied upstream:2747e47393Removed patch 0002 which is not needed anymore due to the removal of the dependency to wayland-protocols:e8cf53cf70Configure option GLFW_USE_WAYLAND was replaced by GLFW_BUILD_WAYLAND and the option GLFW_BUILD_X11 was added:56a4cb0a3aSigned-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
20 lines
844 B
Plaintext
20 lines
844 B
Plaintext
config BR2_PACKAGE_LIBGLFW
|
|
bool "libglfw"
|
|
depends on BR2_PACKAGE_XORG7 || BR2_PACKAGE_WAYLAND
|
|
depends on BR2_PACKAGE_HAS_LIBGL || BR2_PACKAGE_HAS_LIBGLES
|
|
select BR2_PACKAGE_LIBXKBCOMMON if BR2_PACKAGE_WAYLAND
|
|
select BR2_PACKAGE_XLIB_LIBXCURSOR if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBXEXT if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBXI if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBXINERAMA if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBXRANDR if BR2_PACKAGE_XORG7
|
|
help
|
|
GLFW is an Open Source, multi-platform library for creating
|
|
windows with OpenGL contexts and receiving input and events.
|
|
|
|
http://www.glfw.org
|
|
|
|
comment "libglfw depends on X.org or Wayland and an OpenGL or GLES backend"
|
|
depends on !(BR2_PACKAGE_XORG7 || BR2_PACKAGE_WAYLAND)
|
|
depends on !(BR2_PACKAGE_HAS_LIBGL || BR2_PACKAGE_HAS_LIBGLES)
|