From 600b552f162fa6b59a937be541d8a377807bcceb Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Wed, 13 Dec 2023 08:18:12 +0100 Subject: 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 reorganized headers, resulting in xmlParseFile and xmlIndentTreeOutput no longer being in scope. Let’s add the proper includes containing the symbols. --- cut-n-paste/toolbar-editor/egg-toolbars-model.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cut-n-paste/toolbar-editor/egg-toolbars-model.c b/cut-n-paste/toolbar-editor/egg-toolbars-model.c index ebf72b74..cede0c70 100644 --- a/cut-n-paste/toolbar-editor/egg-toolbars-model.c +++ b/cut-n-paste/toolbar-editor/egg-toolbars-model.c @@ -27,7 +27,9 @@ #include #include +#include #include +#include #include static void egg_toolbars_model_finalize (GObject *object); -- cgit v1.2.1