Date: Wed, 21 Jul 2021 18:15:16 GMT From: Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 746009aea64a - main - sysutils/apache-mesos: Fix build with protobuf 3.17.3 Message-ID: <202107211815.16LIFGWc045461@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=746009aea64a174633d9e775ba66a3f4cadcf5e6 commit 746009aea64a174633d9e775ba66a3f4cadcf5e6 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2021-07-21 17:59:54 +0000 Commit: Po-Chuan Hsieh <sunpoet@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; + }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107211815.16LIFGWc045461>