653c3d39a6
Removed patch 0001 which was applied upstream: https://github.com/glfw/glfw/commit/2747e47393cbca2d09db56223e735bd94b21e2eb Removed patch 0002 which is not needed anymore due to the removal of the dependency to wayland-protocols: https://github.com/glfw/glfw/commit/e8cf53cf708d025a30895dd5671b208f32af2e73 Configure option GLFW_USE_WAYLAND was replaced by GLFW_BUILD_WAYLAND and the option GLFW_BUILD_X11 was added: https://github.com/glfw/glfw/commit/56a4cb0a3a2c7a44a2fd8ab3335adf915e19d30c Signed-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)
|