mirror of
https://git.freebsd.org/ports.git
synced 2025-05-29 09:26:27 -04:00
26 lines
754 B
Text
26 lines
754 B
Text
From 72618e63433c7243e4d9e79a638f19a09402eecc Mon Sep 17 00:00:00 2001
|
|
From: Andreas Sturmlechner <asturm@gentoo.org>
|
|
Date: Tue, 21 Nov 2023 23:10:07 +0100
|
|
Subject: [PATCH] Fix build with libxml2-2.12 (missing include)
|
|
|
|
See also: https://github.com/tdf/libcmis/issues/51
|
|
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
|
---
|
|
inc/libcmis/xml-utils.hxx | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git inc/libcmis/xml-utils.hxx inc/libcmis/xml-utils.hxx
|
|
index 929385e..9bd99ae 100644
|
|
--- inc/libcmis/xml-utils.hxx
|
|
+++ inc/libcmis/xml-utils.hxx
|
|
@@ -34,6 +34,7 @@
|
|
#include <string>
|
|
|
|
#include <boost/date_time.hpp>
|
|
+#include <libxml/parser.h>
|
|
#include <libxml/tree.h>
|
|
#include <libxml/xpathInternals.h>
|
|
#include <libxml/xmlwriter.h>
|
|
--
|
|
2.43.0
|
|
|