diff options
author | Sam James <sam@gentoo.org> | 2024-01-16 03:17:49 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-01-16 03:17:58 +0000 |
commit | 6da5517c4dfabbad40a15a3672cb041eea71a3f5 (patch) | |
tree | 4ade86cd0774873d420d65221d79173a1ba80e6c /media-gfx/eom/files/eom-1.26.1-libxml2-2.12.patch | |
parent | net-libs/gupnp-av: fix build w/ libxml2-2.12 (diff) | |
download | gentoo-6da5517c4dfabbad40a15a3672cb041eea71a3f5.tar.gz gentoo-6da5517c4dfabbad40a15a3672cb041eea71a3f5.tar.bz2 gentoo-6da5517c4dfabbad40a15a3672cb041eea71a3f5.zip |
media-gfx/eom: fix build w/ libxml2-2.12
Closes: https://bugs.gentoo.org/917514
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/eom/files/eom-1.26.1-libxml2-2.12.patch')
-rw-r--r-- | media-gfx/eom/files/eom-1.26.1-libxml2-2.12.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/media-gfx/eom/files/eom-1.26.1-libxml2-2.12.patch b/media-gfx/eom/files/eom-1.26.1-libxml2-2.12.patch new file mode 100644 index 000000000000..7bf2c65154ca --- /dev/null +++ b/media-gfx/eom/files/eom-1.26.1-libxml2-2.12.patch @@ -0,0 +1,38 @@ +https://bugs.gentoo.org/917514 +https://github.com/mate-desktop/eom/commit/ace46747000807d975b58101353302f34c75ef49 +https://github.com/mate-desktop/eom/commit/d00fc0b68e9419ccdefbf2831ad2537bed8f35f4 + +From ace46747000807d975b58101353302f34c75ef49 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Tomasz=20K=C5=82oczko?= + <31284574+kloczek@users.noreply.github.com> +Date: Sat, 25 Nov 2023 20:25:29 +0000 +Subject: [PATCH] fix building with new libxml 2.12.0 +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Added include <libxml/xmlsave.h> to allow build with libxml 2.12.0. + +Signed-off-by: Tomasz Kłoczko <kloczek@github.com> + +* fix building with libxml 2.12.0 + +Co-authored-by: Colomban Wendling <hypra@ban.netlib.re> + +--------- + +Signed-off-by: Tomasz Kłoczko <kloczek@github.com> +Co-authored-by: raveit65 <mate@raveit.de> +Co-authored-by: Colomban Wendling <hypra@ban.netlib.re> +--- a/cut-n-paste/toolbar-editor/egg-toolbars-model.c ++++ b/cut-n-paste/toolbar-editor/egg-toolbars-model.c +@@ -27,6 +27,8 @@ + + #include <unistd.h> + #include <string.h> ++#include <libxml/globals.h> ++#include <libxml/parser.h> + #include <libxml/tree.h> + #include <gdk/gdk.h> + + |