gentoo-ebuilds/media-sound/rhythmbox/files/rhythmbox-3.4.7-libxml-entities.patch
Pacho Ramos e50e5e28a5
media-sound/rhythmbox: Multiple bugfixes
Cherry picks from upstream master to fix implicit declarations,
libxml2 and python 3.12 compat issues.

Closes: https://bugs.gentoo.org/898926
Closes: https://bugs.gentoo.org/929668
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
2024-05-18 10:47:26 +02:00

36 lines
1 KiB
Diff

From: =?utf-8?q?J=C3=BCrg_Billeter?= <j@bitron.ch>
Date: Tue, 28 Nov 2023 20:12:07 +0100
Subject: Add missing <libxml/entities.h> include
(cherry picked from commit 4a906b33535c794f45d3bbc816f3b56a729529b4)
Origin: upstream, after 3.4.7
---
rhythmdb/rhythmdb-query.c | 1 +
sources/rb-static-playlist-source.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/rhythmdb/rhythmdb-query.c b/rhythmdb/rhythmdb-query.c
index 0d1c24c..0009dde 100644
--- a/rhythmdb/rhythmdb-query.c
+++ b/rhythmdb/rhythmdb-query.c
@@ -30,6 +30,7 @@
#include <string.h>
+#include <libxml/entities.h>
#include <glib.h>
#include <glib-object.h>
#include <gobject/gvaluecollector.h>
diff --git a/sources/rb-static-playlist-source.c b/sources/rb-static-playlist-source.c
index 4c60f70..9d8606a 100644
--- a/sources/rb-static-playlist-source.c
+++ b/sources/rb-static-playlist-source.c
@@ -46,6 +46,7 @@
#include <string.h>
+#include <libxml/entities.h>
#include <libxml/tree.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>