summaryrefslogtreecommitdiffstats
path: root/package/qt5/qt5base/qt5base-0007-Fix-no-opengl-build-with-egl.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2014-06-01 09:58:54 +0200
committerPeter Korsgaard <peter@korsgaard.com>2014-06-01 09:58:54 +0200
commit27a5414804f7b8ab41101aad219ebef02d364bde (patch)
treec9535dfed260314855b3ba1fe2c75652fdf60a1a /package/qt5/qt5base/qt5base-0007-Fix-no-opengl-build-with-egl.patch
parentf6162290fb6800fecffb86eed42069aa0f813f87 (diff)
parentfc90fa9417d8b99b5d1c77aaa9e4c9ac4c8c7c58 (diff)
downloadbuildroot-27a5414804f7b8ab41101aad219ebef02d364bde.tar.gz
buildroot-27a5414804f7b8ab41101aad219ebef02d364bde.zip
Merge branch 'next'
Conflicts: package/gdb/Config.in.host Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/qt5/qt5base/qt5base-0007-Fix-no-opengl-build-with-egl.patch')
-rw-r--r--package/qt5/qt5base/qt5base-0007-Fix-no-opengl-build-with-egl.patch65
1 files changed, 0 insertions, 65 deletions
diff --git a/package/qt5/qt5base/qt5base-0007-Fix-no-opengl-build-with-egl.patch b/package/qt5/qt5base/qt5base-0007-Fix-no-opengl-build-with-egl.patch
deleted file mode 100644
index c0f03d5850..0000000000
--- a/package/qt5/qt5base/qt5base-0007-Fix-no-opengl-build-with-egl.patch
+++ /dev/null
@@ -1,65 +0,0 @@
-From cd14b80dd87ff9ae632bf0479a1d824c72316362 Mon Sep 17 00:00:00 2001
-From: Laszlo Agocs <laszlo.agocs@digia.com>
-Date: Wed, 12 Mar 2014 16:56:19 +0100
-Subject: [PATCH] Fix no-opengl build with egl
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-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>
-Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com>
-
-Conflicts:
- src/platformsupport/eglconvenience/eglconvenience.pri
----
- configure | 2 +-
- src/platformsupport/eglconvenience/eglconvenience.pri | 7 +++++--
- 2 files changed, 6 insertions(+), 3 deletions(-)
-
-diff --git a/configure b/configure
-index aaa59bd..0c310ff 100755
---- a/configure
-+++ b/configure
-@@ -5337,7 +5337,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"
-diff --git a/src/platformsupport/eglconvenience/eglconvenience.pri b/src/platformsupport/eglconvenience/eglconvenience.pri
-index 506f4ab..462c60c 100644
---- a/src/platformsupport/eglconvenience/eglconvenience.pri
-+++ b/src/platformsupport/eglconvenience/eglconvenience.pri
-@@ -1,13 +1,16 @@
- contains(QT_CONFIG,egl) {
- HEADERS += \
- $$PWD/qeglconvenience_p.h \
-- $$PWD/qeglplatformcontext_p.h \
- $$PWD/qeglpbuffer_p.h
- SOURCES += \
- $$PWD/qeglconvenience.cpp \
-- $$PWD/qeglplatformcontext.cpp \
- $$PWD/qeglpbuffer.cpp
-
-+ contains(QT_CONFIG,opengl) {
-+ HEADERS += $$PWD/qeglplatformcontext_p.h
-+ SOURCES += $$PWD/qeglplatformcontext.cpp
-+ }
-+
- contains(QT_CONFIG,xlib) {
- HEADERS += \
- $$PWD/qxlibeglintegration_p.h
---
-1.9.1
-
OpenPOWER on IntegriCloud