diff options
| author | Jérôme Pouiller <jezz@sysmic.org> | 2015-07-28 11:06:25 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-28 23:23:15 +0200 |
| commit | ad53b303e75691c5e85462cc7f7a2116b547bddf (patch) | |
| tree | ca1418371ab90b0582b7c5d9cb54d461f0c82d0d | |
| parent | 29ec58e06dacc74a05ed9c12a037ae046a6c620b (diff) | |
| download | buildroot-ad53b303e75691c5e85462cc7f7a2116b547bddf.tar.gz buildroot-ad53b303e75691c5e85462cc7f7a2116b547bddf.zip | |
qt5base: fix activation of i.MX visual ID workaround
The workaround implemented in 0001-Force_egl_visual_ID_33.patch has to
be enabled as soon as gpu_vivante/xorg is used. This does not depends
on eglfs option.
[Thomas: minor commit log tweaks.]
Signed-off-by: Jérôme Pouiller <jezz@sysmic.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/qt5/qt5base/qt5base.mk | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk index 6f0f5267a7..753b0696f5 100644 --- a/package/qt5/qt5base/qt5base.mk +++ b/package/qt5/qt5base/qt5base.mk @@ -118,12 +118,13 @@ endif QT5BASE_DEFAULT_QPA = $(call qstrip,$(BR2_PACKAGE_QT5BASE_DEFAULT_QPA)) QT5BASE_CONFIGURE_OPTS += $(if $(QT5BASE_DEFAULT_QPA),-qpa $(QT5BASE_DEFAULT_QPA)) -ifeq ($(BR2_PACKAGE_QT5BASE_EGLFS),y) -QT5BASE_CONFIGURE_OPTS += -eglfs -QT5BASE_DEPENDENCIES += libegl ifeq ($(BR2_PACKAGE_IMX_GPU_VIV),y) QT5BASE_EXTRA_CFLAGS = -DENABLE_MX6_WORKAROUND endif + +ifeq ($(BR2_PACKAGE_QT5BASE_EGLFS),y) +QT5BASE_CONFIGURE_OPTS += -eglfs +QT5BASE_DEPENDENCIES += libegl else QT5BASE_CONFIGURE_OPTS += -no-eglfs endif |

