From: Yann E. MORIN Date: Thu, 17 Apr 2014 16:04:22 +0000 (+0200) Subject: package/libgl: introduce as a new virtual package for full-openGL providers X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3cc6f24ed76c9e18336c3e54acde67009b9e98b0;p=buildroot.git package/libgl: introduce as a new virtual package for full-openGL providers Currently, only mesa3d is such a full-openGL provider. But it is easy to see a few more cropping up at the door: - NVidia's binary blob - ATI's fglrx binary blob Having this virtual full-openGL package will help when those are getting in. Signed-off-by: "Yann E. MORIN" Cc: Bernd Kuhls Cc: Paul Cercueil Signed-off-by: Thomas Petazzoni --- diff --git a/package/opengl/Config.in b/package/opengl/Config.in index ed81835375..20ee28b06e 100644 --- a/package/opengl/Config.in +++ b/package/opengl/Config.in @@ -1,3 +1,4 @@ +source "package/opengl/libgl/Config.in" source "package/opengl/libegl/Config.in" source "package/opengl/libgles/Config.in" source "package/opengl/libopenvg/Config.in" diff --git a/package/opengl/libgl/Config.in b/package/opengl/libgl/Config.in new file mode 100644 index 0000000000..8b99e5bdd3 --- /dev/null +++ b/package/opengl/libgl/Config.in @@ -0,0 +1,6 @@ +config BR2_PACKAGE_HAS_LIBGL + bool + +config BR2_PACKAGE_PROVIDES_LIBGL + depends on BR2_PACKAGE_HAS_LIBGL + string diff --git a/package/opengl/libgl/libgl.mk b/package/opengl/libgl/libgl.mk new file mode 100644 index 0000000000..7abc13d637 --- /dev/null +++ b/package/opengl/libgl/libgl.mk @@ -0,0 +1,7 @@ +################################################################################ +# +# libgl +# +################################################################################ + +$(eval $(virtual-package))