summaryrefslogtreecommitdiff
path: root/src/utils/xml.h
diff options
context:
space:
mode:
authorewew ukek <ewewukek@gmail.com>2024-03-28 07:20:16 +0000
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-03-28 07:20:16 +0000
commitdac3832265fa17de8d3b9d3ea8d930b83efe9c17 (patch)
treebc6651d0dcea3463a1e5fc53a65ebc6d9df93966 /src/utils/xml.h
parentdf37e6a4dacfb969450dc9a3ff65e3f5fc03af20 (diff)
downloadmana-dac3832265fa17de8d3b9d3ea8d930b83efe9c17.tar.gz
mana-dac3832265fa17de8d3b9d3ea8d930b83efe9c17.tar.bz2
mana-dac3832265fa17de8d3b9d3ea8d930b83efe9c17.tar.xz
mana-dac3832265fa17de8d3b9d3ea8d930b83efe9c17.zip
Fixed compile against libxml2 2.12
Quote from Fedora mailing lists: The latest released versions of libxml2 have a couple of important changes in header files that have unintentionally caused some packages to fail to build without modification, including: * several functions now accept or return a const xmlError struct * cyclic dependencies in header files were fixed (by dropping some includes)
Diffstat (limited to 'src/utils/xml.h')
-rw-r--r--src/utils/xml.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/xml.h b/src/utils/xml.h
index df8dd1bd..256a964b 100644
--- a/src/utils/xml.h
+++ b/src/utils/xml.h
@@ -22,6 +22,7 @@
#ifndef XML_H
#define XML_H
+#include <libxml/parser.h>
#include <libxml/tree.h>
#include <string>