1config BR2_PACKAGE_LIBGLEW 2 bool "libglew" 3 depends on BR2_PACKAGE_XORG7 4 depends on BR2_PACKAGE_HAS_LIBGL 5 select BR2_PACKAGE_XLIB_LIBX11 6 select BR2_PACKAGE_XLIB_LIBXEXT 7 select BR2_PACKAGE_XLIB_LIBXI 8 select BR2_PACKAGE_XLIB_LIBXMU 9 help 10 The OpenGL Extension Wrangler Library (GLEW) is a 11 cross-platform C/C++ extension loading library. GLEW provides 12 efficient run-time mechanisms for determining which OpenGL 13 extensions are supported on the target platform. OpenGL core 14 and extension functionality is exposed in a single header 15 file. 16 17 https://github.com/nigels-com/glew 18 19comment "libglew depends on X.org and needs an OpenGL backend" 20 depends on !BR2_PACKAGE_XORG7 || !BR2_PACKAGE_HAS_LIBGL 21