diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-07-29 21:42:54 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-29 22:48:53 +0200 |
commit | 361bfbc70b2bc7b9957e7b82c40b21cf01060686 (patch) | |
tree | be5482b79b51dd881964c8122d1fd19b89db34f6 /package/mesa3d | |
parent | 0bbd1dbc156cc81e6f9986c79774c67d537832a8 (diff) | |
download | buildroot-361bfbc70b2bc7b9957e7b82c40b21cf01060686.tar.gz buildroot-361bfbc70b2bc7b9957e7b82c40b21cf01060686.zip |
package/mesa3d: disable libva support
Informations about the circular dependency can be found here:
http://linuxfromscratch.org/blfs/view/systemd/multimedia/libva.html
Fixes
http://autobuild.buildroot.net/results/b51/b516676ca0e695b3dbc3c33622d527b89a227932/
http://autobuild.buildroot.net/results/035/03588be2fbd71bfc68619297dace52a909ffe261/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/mesa3d')
-rw-r--r-- | package/mesa3d/mesa3d.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk index e5afed2739..82b1001539 100644 --- a/package/mesa3d/mesa3d.mk +++ b/package/mesa3d/mesa3d.mk @@ -121,6 +121,10 @@ endif # remove dri.pc and gl.pc in this case (MESA3D_REMOVE_OPENGL_PC) MESA3D_CONF_OPTS += --enable-opengl +# libva and mesa3d have a circular dependency +# we do not need libva support in mesa3d, therefore disable this option +MESA3D_CONF_OPTS += --disable-va + ifeq ($(BR2_PACKAGE_MESA3D_OPENGL_EGL),y) MESA3D_PROVIDES += libegl MESA3D_EGL_PLATFORMS = drm |