summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@digia.com>2014-03-12 16:56:19 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-17 13:31:14 +0100
commit2861a4d109989a626ed32b2f3be54b4d50c5c9c1 (patch)
treea9ce283d3e47d5e4fc154c0c1131811ae33c535d /configure
parentac178eae4eb9f2647d07de2dfffa3c7ed18e2de8 (diff)
Fix no-opengl build with egl
Disable eglfs and similar plugins when opengl is not enabled. (but egl is present) GL-dependent parts of eglconvenience need to be skipped too. Task-number: QTBUG-37457 Change-Id: I44d49495241551bc7b1f565aa0b5ace9f310628e Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Jørgen Lind <jorgen.lind@digia.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 1c1af57451..5e3b71ba2f 100755
--- a/configure
+++ b/configure
@@ -5411,7 +5411,7 @@ if [ "$CFG_EGL" != "no" ]; then
fi
if [ "$CFG_EGLFS" != "no" ]; then
- if [ "$XPLATFORM_QNX" = "no" ]; then
+ if [ "$XPLATFORM_QNX" = "no" ] && [ "$CFG_OPENGL" != "no" ]; then
CFG_EGLFS="$CFG_EGL"
else
CFG_EGLFS="no"