summaryrefslogtreecommitdiff
path: root/dev-cpp/libcmis/files/libcmis-0.5.2-boost-1.68.patch
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-09-16 23:47:41 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-09-17 00:29:12 +0200
commitc7befb2acb16f58e52e9914826ef4a6c7ca35cad (patch)
treec3266bc398bebd863ab950d8b0cdba191887dfcf /dev-cpp/libcmis/files/libcmis-0.5.2-boost-1.68.patch
parente9a9e7bd951e649791752ca4cd6ac9daa036b871 (diff)
downloadgentoo-c7befb2acb16f58e52e9914826ef4a6c7ca35cad.tar.gz
gentoo-c7befb2acb16f58e52e9914826ef4a6c7ca35cad.tar.bz2
gentoo-c7befb2acb16f58e52e9914826ef4a6c7ca35cad.zip
dev-cpp/libcmis: Add new 0.5.2_pre20180118 snapshot
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Diffstat (limited to 'dev-cpp/libcmis/files/libcmis-0.5.2-boost-1.68.patch')
-rw-r--r--dev-cpp/libcmis/files/libcmis-0.5.2-boost-1.68.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-cpp/libcmis/files/libcmis-0.5.2-boost-1.68.patch b/dev-cpp/libcmis/files/libcmis-0.5.2-boost-1.68.patch
new file mode 100644
index 000000000000..767464242f78
--- /dev/null
+++ b/dev-cpp/libcmis/files/libcmis-0.5.2-boost-1.68.patch
@@ -0,0 +1,25 @@
+From 3ef3569c4ae1c5319aff0664d52cbd8a8d42c909 Mon Sep 17 00:00:00 2001
+From: rezso <rezso@rezso.net>
+Date: Tue, 4 Sep 2018 01:18:10 +0200
+Subject: tdf#119344 fix libcmis build with boost 1.68
+
+Change-Id: I80d6ea8ecd001dc02b941c1eb8974c9244316045
+Reviewed-on: https://gerrit.libreoffice.org/59958
+Tested-by: Jenkins
+Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
+
+--- a/src/libcmis/xml-utils.cxx
++++ b/src/libcmis/xml-utils.cxx
+@@ -31,7 +31,12 @@
+ #include <sstream>
+ #include <stdlib.h>
+
++#include <boost/version.hpp>
++#if (BOOST_VERSION >= 106800)
++#include <boost/uuid/detail/sha1.hpp>
++#else
+ #include <boost/uuid/sha1.hpp>
++#endif
+ #include <curl/curl.h>
+
+ #include "xml-utils.hxx"