Date: Thu, 2 Feb 2017 11:33:13 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433141 - head/security/certificate-transparency/files Message-ID: <201702021133.v12BXDUg048921@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Thu Feb 2 11:33:13 2017 New Revision: 433141 URL: https://svnweb.freebsd.org/changeset/ports/433141 Log: Fix build with devel/protobuf Obtained from: https://github.com/google/certificate-transparency/commit/6776cc2c4cca665c088019d40f9587189a5d687d Notified by: jbeich Added: head/security/certificate-transparency/files/patch-cpp-log-logged_entry.h (contents, props changed) Added: head/security/certificate-transparency/files/patch-cpp-log-logged_entry.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/certificate-transparency/files/patch-cpp-log-logged_entry.h Thu Feb 2 11:33:13 2017 (r433141) @@ -0,0 +1,15 @@ +Obtained from: https://github.com/google/certificate-transparency/commit/6776cc2c4cca665c088019d40f9587189a5d687d + +--- cpp/log/logged_entry.h.orig ++++ cpp/log/logged_entry.h +@@ -25,9 +25,7 @@ class LoggedEntry : private ct::LoggedEntryPB { + using LoggedEntryPB::merkle_leaf_hash; + using LoggedEntryPB::set_merkle_leaf_hash; + using LoggedEntryPB::set_sequence_number; +- void CopyFrom(const ::google::protobuf::Message& from) { +- LoggedEntryPB::CopyFrom(from); +- } ++ using LoggedEntryPB::CopyFrom; + void CopyFrom(const LoggedEntry& from) { + LoggedEntryPB::CopyFrom(from); + }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702021133.v12BXDUg048921>