summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-video/mpv/files/mpv-0.17.0-glibc-2.23.patch')
-rw-r--r--media-video/mpv/files/mpv-0.17.0-glibc-2.23.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/media-video/mpv/files/mpv-0.17.0-glibc-2.23.patch b/media-video/mpv/files/mpv-0.17.0-glibc-2.23.patch
deleted file mode 100644
index ecd02aa02f15..000000000000
--- a/media-video/mpv/files/mpv-0.17.0-glibc-2.23.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Fixes build failure on glibc-2.23
-
-../video/out/opengl/lcms.c: In function 'get_vid_profile':
-../video/out/opengl/lcms.c:235:27: error: implicit declaration of function 'pow' [-Werror=implicit-function-declaration]
- double binv = pow(src_black[i], 1.0/gamma);
- ^
-diff --git a/video/out/opengl/lcms.c b/video/out/opengl/lcms.c
-index 7db8da6..3eb3d53 100644
---- a/video/out/opengl/lcms.c
-+++ b/video/out/opengl/lcms.c
-@@ -17,2 +17,3 @@
-
-+#include <math.h> /* pow() */
- #include <string.h>