diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-04-17 18:04:22 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-04-17 22:59:40 +0200 |
commit | 3cc6f24ed76c9e18336c3e54acde67009b9e98b0 (patch) | |
tree | 884882aad463d5e9f77e9b4549175467fb43a2dc /package/opengl/libgl | |
parent | 6ef1e8735eb4afdb35d68959100cb5abd63c023e (diff) | |
download | buildroot-3cc6f24ed76c9e18336c3e54acde67009b9e98b0.tar.gz buildroot-3cc6f24ed76c9e18336c3e54acde67009b9e98b0.zip |
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" <yann.morin.1998@free.fr>
Cc: Bernd Kuhls <berndkuhls@hotmail.com>
Cc: Paul Cercueil <paul@crapouillou.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/opengl/libgl')
-rw-r--r-- | package/opengl/libgl/Config.in | 6 | ||||
-rw-r--r-- | package/opengl/libgl/libgl.mk | 7 |
2 files changed, 13 insertions, 0 deletions
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)) |