diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-04-19 19:32:49 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-04-19 19:33:09 -0700 |
commit | 4249de5dfd23a1ba0ec24efea124ce21a45b97e7 (patch) | |
tree | 52107092cee8dae6993eff0ca0884e583d1ddfbf /net-libs/webkit-gtk/files/2.34.3-opengl-without-X-fixes.patch | |
parent | x11-apps/xauth: Version bump to 1.1.2 (diff) | |
download | gentoo-4249de5dfd23a1ba0ec24efea124ce21a45b97e7.tar.gz gentoo-4249de5dfd23a1ba0ec24efea124ce21a45b97e7.tar.bz2 gentoo-4249de5dfd23a1ba0ec24efea124ce21a45b97e7.zip |
net-libs/webkit-gtk: Drop old versions
Bug: https://bugs.gentoo.org/833568
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'net-libs/webkit-gtk/files/2.34.3-opengl-without-X-fixes.patch')
-rw-r--r-- | net-libs/webkit-gtk/files/2.34.3-opengl-without-X-fixes.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/net-libs/webkit-gtk/files/2.34.3-opengl-without-X-fixes.patch b/net-libs/webkit-gtk/files/2.34.3-opengl-without-X-fixes.patch deleted file mode 100644 index 5608500376ff..000000000000 --- a/net-libs/webkit-gtk/files/2.34.3-opengl-without-X-fixes.patch +++ /dev/null @@ -1,46 +0,0 @@ -https://bugs.webkit.org/show_bug.cgi?id=208907 - -From c67efa2bbe2094b40b4e104bb26497c2aff5ce68 Mon Sep 17 00:00:00 2001 -From: Mart Raudsepp <leio@gentoo.org> -Date: Sat, 9 May 2020 23:11:52 +0300 -Subject: [PATCH] Clean up OpenGLShims.h conditionals in a few places to fix - some build configurations - ---- - Source/WebCore/platform/graphics/GLContext.cpp | 3 +++ - Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp | 5 ++++- - 2 files changed, 7 insertions(+), 1 deletions(-) - -diff --git a/Source/WebCore/platform/graphics/GLContext.cpp b/Source/WebCore/platform/graphics/GLContext.cpp -index b217988b990..1ba0eb8a482 100644 ---- a/Source/WebCore/platform/graphics/GLContext.cpp -+++ b/Source/WebCore/platform/graphics/GLContext.cpp -@@ -28,6 +28,9 @@ - - #if USE(GLX) - #include "GLContextGLX.h" -+#endif -+ -+#if !USE(OPENGL_ES) && !USE(LIBEPOXY) && !USE(ANGLE) - #include "OpenGLShims.h" - #endif - -diff --git a/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp b/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp -index 3515be452b2..82cce70f14b 100644 ---- a/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp -+++ b/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp -@@ -64,7 +64,10 @@ - - #if USE(GLX) - #include <GL/glx.h> --#include <WebCore/OpenGLShims.h> -+#endif -+ -+#if !USE(OPENGL_ES) && !USE(LIBEPOXY) && !USE(ANGLE) -+#include "WebCore/OpenGLShims.h" - #endif - - #if USE(GSTREAMER) --- -2.20.1 - |