f8539fae13
commit cfcbba4c2b8a2062dec36072a34209229b6c3277 Author: Michal Prívozník <mprivozn@redhat.com> Date: Wed Nov 22 14:58:49 2023 +0100 lib: Replace qsort() with g_qsort_with_data()
37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From 09f06f6286f864fefdf4877b5792999e0d4e89d1 Mon Sep 17 00:00:00 2001
|
|
From: Michal Privoznik <mprivozn@redhat.com>
|
|
Date: Mon, 20 Nov 2023 03:18:12 +0100
|
|
Subject: [PATCH 4/8] virxml: include <libxml/xmlsave.h> for
|
|
xmlIndentTreeOutput declaration
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
After libxml2's commit of v2.12.0~101 we no longer get
|
|
xmlIndentTreeOutput declaration by us including just
|
|
libxml/xpathInternals.h and libxml2's header files leakage.
|
|
|
|
Resolves: https://bugs.gentoo.org/917516
|
|
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
|
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
(cherry picked from commit 7a5f232be2269e74943a029c0e8b1b0124674a6c)
|
|
---
|
|
src/util/virxml.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/util/virxml.c b/src/util/virxml.c
|
|
index 0c1eae8c3c..4f215a0e59 100644
|
|
--- a/src/util/virxml.c
|
|
+++ b/src/util/virxml.c
|
|
@@ -24,6 +24,7 @@
|
|
#include <math.h> /* for isnan() */
|
|
#include <sys/stat.h>
|
|
|
|
+#include <libxml/xmlsave.h>
|
|
#include <libxml/xpathInternals.h>
|
|
|
|
#include "virerror.h"
|
|
--
|
|
2.43.0
|
|
|