summaryrefslogtreecommitdiff
path: root/user/abiword/libxml2-2.12.patch
blob: 2c3642248981381293d2f23d0efcef6a24ba4154 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From 2a06be6a10a0718f8a3d8e00c317f5042c99a467 Mon Sep 17 00:00:00 2001
From: Jan Tojnar <jtojnar@gmail.com>
Date: Mon, 11 Dec 2023 01:55:53 +0100
Subject: [PATCH] Fix build with libxml2 2.12
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

libxml 2.12.0 restructured headers so that xmlFree is no longer in the scope.
Let’s add the correct include.
---
 src/af/util/xp/ut_stringbuf.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/af/util/xp/ut_stringbuf.cpp b/src/af/util/xp/ut_stringbuf.cpp
index f1e8d9078..88488ad67 100644
--- a/src/af/util/xp/ut_stringbuf.cpp
+++ b/src/af/util/xp/ut_stringbuf.cpp
@@ -26,6 +26,7 @@
 #include <algorithm>
 
 #include <libxml/uri.h>
+#include <libxml/xmlmemory.h>
 
 #include <glib.h>
 
-- 
GitLab