git: 746009aea64a - main - sysutils/apache-mesos: Fix build with protobuf 3.17.3
Po-Chuan Hsieh
sunpoet at FreeBSD.org
Wed Jul 21 18:15:18 UTC 2021
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=746009aea64a174633d9e775ba66a3f4cadcf5e6
commit 746009aea64a174633d9e775ba66a3f4cadcf5e6
Author: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
AuthorDate: 2021-07-21 17:59:54 +0000
Commit: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
CommitDate: 2021-07-21 18:12:13 +0000
sysutils/apache-mesos: Fix build with protobuf 3.17.3
---
sysutils/apache-mesos/files/patch-protobuf | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/sysutils/apache-mesos/files/patch-protobuf b/sysutils/apache-mesos/files/patch-protobuf
new file mode 100644
index 000000000000..a748c982f8b8
--- /dev/null
+++ b/sysutils/apache-mesos/files/patch-protobuf
@@ -0,0 +1,22 @@
+--- include/mesos/csi/v0.hpp.orig 2020-11-17 13:52:12 UTC
++++ include/mesos/csi/v0.hpp
+@@ -94,7 +94,7 @@ std::ostream& operator<<(std::ostream& stream, const M
+ google::protobuf::util::MessageToJsonString(message, &output);
+
+ CHECK(status.ok())
+- << "Could not convert messages to string: " << status.error_message();
++ << "Could not convert messages to string: " << status.message();
+
+ return stream << output;
+ }
+--- include/mesos/csi/v1.hpp.orig 2020-11-17 13:52:12 UTC
++++ include/mesos/csi/v1.hpp
+@@ -94,7 +94,7 @@ std::ostream& operator<<(std::ostream& stream, const M
+ google::protobuf::util::MessageToJsonString(message, &output);
+
+ CHECK(status.ok())
+- << "Could not convert messages to string: " << status.error_message();
++ << "Could not convert messages to string: " << status.message();
+
+ return stream << output;
+ }
More information about the dev-commits-ports-all
mailing list