diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-01-08 16:16:12 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-01-08 23:09:32 +0100 |
commit | 33af4c3909c6892809d97ad0a165e00a116717df (patch) | |
tree | a6d37adc0f5fee8ced0a401b3cd85b67310ceebe /media-gfx | |
parent | app-backup/duplicity: remove unused patch (diff) | |
download | gentoo-33af4c3909c6892809d97ad0a165e00a116717df.tar.gz gentoo-33af4c3909c6892809d97ad0a165e00a116717df.tar.bz2 gentoo-33af4c3909c6892809d97ad0a165e00a116717df.zip |
media-gfx/blender: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/29018
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/blender/files/blender-3.2.2-musl-glibc-prereq.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/media-gfx/blender/files/blender-3.2.2-musl-glibc-prereq.patch b/media-gfx/blender/files/blender-3.2.2-musl-glibc-prereq.patch deleted file mode 100644 index a572f25788de..000000000000 --- a/media-gfx/blender/files/blender-3.2.2-musl-glibc-prereq.patch +++ /dev/null @@ -1,27 +0,0 @@ -Fix build error in libc_compat when using musl libc - -Checking for the existence of and using __GLIBC_PREREQ can't be done in the -same conditional. - -Please refer: https://github.com/blender/blender/commit/7be7280c5710f7831789cdde140d010722be9068 ---- a/intern/libc_compat/libc_compat.c -+++ b/intern/libc_compat/libc_compat.c -@@ -13,7 +13,8 @@ - # include <features.h> - # include <math.h> - --# if defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 31) -+# if defined(__GLIBC_PREREQ) -+# if __GLIBC_PREREQ(2, 31) - - double __exp_finite(double x); - double __exp2_finite(double x); -@@ -112,5 +113,6 @@ float __powf_finite(float x, float y) - return powf(x, y); - } - --# endif /* __GLIBC_PREREQ */ --#endif /* __linux__ */ -+# endif /* __GLIBC_PREREQ(2, 31) */ -+# endif /* __GLIBC_PREREQ */ -+#endif /* __linux__ */ |