summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-05-10 17:46:12 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2021-05-21 16:52:15 +0200
commit6a7589ee44ca47f32dbd441b925e48d05d2a38a1 (patch)
treef58225ccf39d0a2aae8597bceec3bcad25dda7a5 /media-video
parentdev-cpp/eigen: remove unused patch (diff)
downloadgentoo-6a7589ee44ca47f32dbd441b925e48d05d2a38a1.tar.gz
gentoo-6a7589ee44ca47f32dbd441b925e48d05d2a38a1.tar.bz2
gentoo-6a7589ee44ca47f32dbd441b925e48d05d2a38a1.zip
media-video/obs-studio: remove unused patch
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/20757 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-video')
-rw-r--r--media-video/obs-studio/files/obs-studio-25.0.8-gcc-10-build.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/media-video/obs-studio/files/obs-studio-25.0.8-gcc-10-build.patch b/media-video/obs-studio/files/obs-studio-25.0.8-gcc-10-build.patch
deleted file mode 100644
index 352ea2c937c7..000000000000
--- a/media-video/obs-studio/files/obs-studio-25.0.8-gcc-10-build.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From c7f84f8fc4e90ef779a204ac268f5ee1a962e324 Mon Sep 17 00:00:00 2001
-From: Jimi Huotari <chiitoo@gentoo.org>
-Date: Sun, 9 Feb 2020 05:23:55 +0200
-Subject: [PATCH] deps/glad: Fix build with GCC-10
-
-GCC-10 defaults to '-fno-common' [1], which triggers issues with
-defining global variables multiple times. To fix the build, use
-'extern' to turn the first definition of 'gladGetProcAddressPtr'
-into a declaration.
-
-1. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85678
-
-Closes https://github.com/obsproject/obs-studio/issues/2828
----
- deps/glad/src/glad_glx.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/deps/glad/src/glad_glx.c b/deps/glad/src/glad_glx.c
-index 7c55b9fc01..58086f1039 100644
---- a/deps/glad/src/glad_glx.c
-+++ b/deps/glad/src/glad_glx.c
-@@ -35,7 +35,7 @@ static void* libGL;
-
- #ifndef __APPLE__
- typedef void* (APIENTRYP PFNGLXGETPROCADDRESSPROC_PRIVATE)(const char*);
--PFNGLXGETPROCADDRESSPROC_PRIVATE gladGetProcAddressPtr;
-+extern PFNGLXGETPROCADDRESSPROC_PRIVATE gladGetProcAddressPtr;
- #endif
-
- static