From: Tomasz Kłoczko Date: Wed, 22 Nov 2023 12:59:42 +0000 (+0000) Subject: fix building with libxml 2.12.0 X-Git-Tag: v0.10.7~5^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F849%2Fhead;p=thirdparty%2Fsnapper.git fix building with libxml 2.12.0 Add missing header files requires on build with libxml 2.12.0. Fixes #848 Signed-off-by: Tomasz Kłoczko --- diff --git a/snapper/Logger.cc b/snapper/Logger.cc index a21d7303..873d70a6 100644 --- a/snapper/Logger.cc +++ b/snapper/Logger.cc @@ -26,6 +26,7 @@ #include #include #include +#include #include #include diff --git a/snapper/XmlFile.cc b/snapper/XmlFile.cc index f0cace8f..75eda3f9 100644 --- a/snapper/XmlFile.cc +++ b/snapper/XmlFile.cc @@ -23,6 +23,7 @@ #include #include +#include #include "snapper/Exception.h" #include "snapper/XmlFile.h"