xcb: Skip EGL integration with -no-opengl

When EGL is autodetected but -no-opengl is specified the backend
must be skipped, just like the GLX one.

Task-number: QTBUG-44998
Change-Id: I1ccbaf540f3777a1fc39aaf12bded4febf20faa0
Reviewed-by: Gunnar Sletta <gunnar@sletta.org>
This commit is contained in:
Laszlo Agocs 2015-05-06 21:53:55 +02:00
parent dad54e794f
commit 62f24f04bf

View File

@ -1,6 +1,6 @@
TEMPLATE = subdirs
contains(QT_CONFIG, egl):contains(QT_CONFIG, egl_x11) {
contains(QT_CONFIG, egl): contains(QT_CONFIG, egl_x11): contains(QT_CONFIG, opengl) {
SUBDIRS += xcb_egl
}