From c65d5a7e57af013f951b281e9ac38b519d73c7c7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tomasz=20K=C5=82oczko?= Date: Wed, 22 Nov 2023 12:59:42 +0000 Subject: [PATCH] fix building with libxml 2.12.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add missing header files requires on build with libxml 2.12.0. Fixes #848 Signed-off-by: Tomasz Kłoczko --- snapper/Logger.cc | 1 + snapper/XmlFile.cc | 1 + 2 files changed, 2 insertions(+) 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" -- 2.47.3