summaryrefslogtreecommitdiff
path: root/media-libs/mlt/files/mlt-6.4.1-qtopengl-1.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-08-13 11:58:40 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-08-13 11:58:40 +0100
commit1c2a088c035cc01a91ede7c841c2d40eac97931b (patch)
treeea3b40c9fc6a0184e8f22f31947e7e769607f7d2 /media-libs/mlt/files/mlt-6.4.1-qtopengl-1.patch
parentbae0bf3db1fff7b94e55d0d7808f8bacde181fb9 (diff)
media-libs/mlt : version bump
Diffstat (limited to 'media-libs/mlt/files/mlt-6.4.1-qtopengl-1.patch')
-rw-r--r--media-libs/mlt/files/mlt-6.4.1-qtopengl-1.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/media-libs/mlt/files/mlt-6.4.1-qtopengl-1.patch b/media-libs/mlt/files/mlt-6.4.1-qtopengl-1.patch
deleted file mode 100644
index c00e8d05..00000000
--- a/media-libs/mlt/files/mlt-6.4.1-qtopengl-1.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From d2a04ae77a6b2c82a2e12b9fb631beb8f825946d Mon Sep 17 00:00:00 2001
-From: Alberto Villa <avilla@FreeBSD.org>
-Date: Sat, 24 Dec 2016 05:07:54 +0100
-Subject: [PATCH] Move Qt OpenGL include(s) to Qt 4 specific code
-
-Only Qt 4 code references those files (QMutex and QWaitCondition are
-not OpenGL files, but still they're only useful in Qt 4 code).
----
- src/modules/qt/consumer_qglsl.cpp | 7 ++++---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/src/modules/qt/consumer_qglsl.cpp b/src/modules/qt/consumer_qglsl.cpp
-index 74840602..ca0cf383 100644
---- a/src/modules/qt/consumer_qglsl.cpp
-+++ b/src/modules/qt/consumer_qglsl.cpp
-@@ -20,13 +20,14 @@
- #include "common.h"
- #include <framework/mlt.h>
- #include <QApplication>
--#include <QGLWidget>
--#include <QMutex>
--#include <QWaitCondition>
- #include <QtGlobal>
-
- #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
-
-+#include <QGLWidget>
-+#include <QMutex>
-+#include <QWaitCondition>
-+
- class GLWidget : public QGLWidget
- {
- private: