diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-10-12 19:46:52 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-10-13 15:40:06 +0200 |
commit | 1f988edb41af627fb7c30fae4c958bf81645a36e (patch) | |
tree | 66fe76a2ff6ebaed9f331ec42bb74f298115d7c2 /media-gfx/gnofract4d/files | |
parent | mail-client/thunderbird-bin: remove unused file (diff) | |
download | gentoo-1f988edb41af627fb7c30fae4c958bf81645a36e.tar.gz gentoo-1f988edb41af627fb7c30fae4c958bf81645a36e.tar.bz2 gentoo-1f988edb41af627fb7c30fae4c958bf81645a36e.zip |
media-gfx/gnofract4d: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'media-gfx/gnofract4d/files')
-rw-r--r-- | media-gfx/gnofract4d/files/gnofract4d-4.3_p20221125-clang16.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/media-gfx/gnofract4d/files/gnofract4d-4.3_p20221125-clang16.patch b/media-gfx/gnofract4d/files/gnofract4d-4.3_p20221125-clang16.patch deleted file mode 100644 index 3ca2ae35911a..000000000000 --- a/media-gfx/gnofract4d/files/gnofract4d-4.3_p20221125-clang16.patch +++ /dev/null @@ -1,44 +0,0 @@ -https://github.com/fract4d/gnofract4d/pull/254 - -From dd92a4bf2c6e68352203c511f465846e5c96407b Mon Sep 17 00:00:00 2001 -From: Florian Weimer <fweimer@redhat.com> -Date: Fri, 14 Apr 2023 09:33:28 +0200 -Subject: [PATCH] Declare image_lookup, gradient in fract_stdlib.h -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -This avoids test failures in generated code with C compilers -that do not support implicit function declartions: - -> raise fracttypes.TranslationError( - "Error reported by C compiler:%s" % output) -E fract4d_compiler.fracttypes.TranslationError: Error reported by C co -mpiler:/tmp/fract4d_4tueiy9c/gnofract4d-cache/fract4d_9ebc1853081db2ea5eb7cce846 -42cd4e.c: In function ‘pf_calc’: -E /tmp/fract4d_4tueiy9c/gnofract4d-cache/fract4d_9ebc1853081db2ea5eb7c -ce84642cd4e.c:282:1: error: implicit declaration of function ‘image_lookup’ -E 282 | image_lookup(t__a_cf1image,z_re,z_im, &t__cf10, &t__cf11, &t -__cf12); -E | ^~~~~~~~~~~~ - - -> raise fracttypes.TranslationError( - "Error reported by C compiler:%s" % output) -E fract4d_compiler.fracttypes.TranslationError: Error reported by C compiler:/tmp/fract4d_4tueiy9c/gnofract4d-cache/fract4d_2ccc81a001cdf717973d45d4cbd12778.c: In function ‘pf_calc’: -E /tmp/fract4d_4tueiy9c/gnofract4d-cache/fract4d_2ccc81a001cdf717973d45d4cbd12778.c:323:1: error: implicit declaration of function ‘gradient’ -E 323 | gradient(t__a__gradient,t__cf09, &t__cf010, &t__cf011, &t__cf012); -E | ^~~~~~~~ ---- a/fract4d/c/fract_stdlib.h -+++ b/fract4d/c/fract_stdlib.h -@@ -52,6 +52,9 @@ extern "C" - double read_float_array_2D(void *array, int x, int y); - int write_float_array_2D(void *array, int x, int y, double val); - -+ void image_lookup(void *im, double x, double y, double *pr, double *pg, double *pb); -+ void gradient(void *grad_object, double index, double *r, double *g, double *b); -+ - #ifdef __cplusplus - } - #endif - |