diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-12-06 10:57:25 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-12-17 15:55:24 +0100 |
commit | db724c7e56116d93a86cc9fde1cc044b89074c69 (patch) | |
tree | 687f03025cae1861a4fbcebf01d243ac2c279100 /media-gfx/inkscape/files | |
parent | app-text/build-docbook-catalog: Stabilize 2.1 sparc, #829468 (diff) | |
download | gentoo-db724c7e56116d93a86cc9fde1cc044b89074c69.tar.gz gentoo-db724c7e56116d93a86cc9fde1cc044b89074c69.tar.bz2 gentoo-db724c7e56116d93a86cc9fde1cc044b89074c69.zip |
media-gfx/inkscape: Drop 1.0.2-r2
Broken by current stable app-text/poppler.
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-gfx/inkscape/files')
-rw-r--r-- | media-gfx/inkscape/files/glib-2.67.3.patch | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/media-gfx/inkscape/files/glib-2.67.3.patch b/media-gfx/inkscape/files/glib-2.67.3.patch deleted file mode 100644 index b959bcd76fdc..000000000000 --- a/media-gfx/inkscape/files/glib-2.67.3.patch +++ /dev/null @@ -1,65 +0,0 @@ -From eb24388f1730918edd9565d9e5d09340ec0b3b08 Mon Sep 17 00:00:00 2001 -From: Harald van Dijk <harald@gigawatt.nl> -Date: Wed, 17 Feb 2021 09:13:49 +0000 -Subject: [PATCH] Fix build with glib 2.67.3. - -As of glib 2.67.3, <glib.h> can no longer be included in extern "C" -blocks. It was indirectly included by both "types.h" and "color.h". -"types.h" already does not need to be wrapped in an extern "C" block, -"color.h" does but can be modified not to, so with that changed they can -be moved out. ---- - src/3rdparty/autotrace/autotrace.h | 6 +++--- - src/3rdparty/autotrace/color.h | 7 +++++++ - 2 files changed, 10 insertions(+), 3 deletions(-) - -diff --git a/src/3rdparty/autotrace/autotrace.h b/src/3rdparty/autotrace/autotrace.h -index 2ce6f272a9..e56be9a74c 100644 ---- a/src/3rdparty/autotrace/autotrace.h -+++ b/src/3rdparty/autotrace/autotrace.h -@@ -23,6 +23,9 @@ - - #include <stdio.h> - -+#include "types.h" -+#include "color.h" -+ - #ifdef __cplusplus - extern "C" { - #endif /* __cplusplus */ -@@ -35,9 +38,6 @@ extern "C" { - * Typedefs - * ===================================================================== */ - --#include "types.h" --#include "color.h" -- - /* Third degree is the highest we deal with. */ - enum _at_polynomial_degree { - AT_LINEARTYPE = 1, -diff --git a/src/3rdparty/autotrace/color.h b/src/3rdparty/autotrace/color.h -index e50ab30ae0..88651db9f7 100644 ---- a/src/3rdparty/autotrace/color.h -+++ b/src/3rdparty/autotrace/color.h -@@ -24,6 +24,10 @@ - #include <glib.h> - #include <glib-object.h> - -+#ifdef __cplusplus -+extern "C" { -+#endif /* __cplusplus */ -+ - typedef struct _at_color at_color; - struct _at_color { - guint8 r; -@@ -43,4 +47,7 @@ void at_color_free(at_color * color); - GType at_color_get_type(void); - #define AT_TYPE_COLOR (at_color_get_type ()) - -+#ifdef __cplusplus -+} -+#endif /* __cplusplus */ - #endif /* not AT_COLOR_H */ --- -GitLab - |