diff options
author | Tomasz Kłoczko <31284574+kloczek@users.noreply.github.com> | 2023-11-25 20:25:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-25 21:25:29 +0100 |
commit | d00fc0b68e9419ccdefbf2831ad2537bed8f35f4 (patch) | |
tree | 1144d7b11cb46e6ece21c279f52b21df37b47dfd | |
parent | 768f2bbd2a11d2d4c88a512dff9df6342bdc40b7 (diff) | |
download | eom-d00fc0b68e9419ccdefbf2831ad2537bed8f35f4.tar.bz2 eom-d00fc0b68e9419ccdefbf2831ad2537bed8f35f4.tar.xz |
fix building with new libxml 2.12.0
Added include <libxml/xmlsave.h> to allow build with libxml 2.12.0.
Signed-off-by: Tomasz Kłoczko <kloczek@github.com>
* fix building with libxml 2.12.0
Co-authored-by: Colomban Wendling <hypra@ban.netlib.re>
---------
Signed-off-by: Tomasz Kłoczko <kloczek@github.com>
Co-authored-by: raveit65 <mate@raveit.de>
Co-authored-by: Colomban Wendling <hypra@ban.netlib.re>
-rw-r--r-- | cut-n-paste/toolbar-editor/egg-toolbars-model.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cut-n-paste/toolbar-editor/egg-toolbars-model.c b/cut-n-paste/toolbar-editor/egg-toolbars-model.c index 7d1b4d4..cdd340e 100644 --- a/cut-n-paste/toolbar-editor/egg-toolbars-model.c +++ b/cut-n-paste/toolbar-editor/egg-toolbars-model.c @@ -27,6 +27,8 @@ #include <unistd.h> #include <string.h> +#include <libxml/globals.h> +#include <libxml/parser.h> #include <libxml/tree.h> #include <gdk/gdk.h> |