commit: 07d085fc169d0f605e7f16ebbe9c4f3521ac2691 Author: Peter Levine <plevine457 <AT> gmail <DOT> com> AuthorDate: Wed Jun 28 06:34:24 2017 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sun Jul 30 09:08:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07d085fc
net-analyzer/sinfo: Fix building with GCC-6 Bug: https://bugs.gentoo.org/show_bug.cgi?id=594990 Package-Manager: Portage-2.3.6, Repoman-2.3.2 Closes: https://github.com/gentoo/gentoo/pull/5001 net-analyzer/sinfo/files/sinfo-0.0.48-gcc6.patch | 24 ++++++++++++++++++++++++ net-analyzer/sinfo/sinfo-0.0.48.ebuild | 3 ++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/net-analyzer/sinfo/files/sinfo-0.0.48-gcc6.patch b/net-analyzer/sinfo/files/sinfo-0.0.48-gcc6.patch new file mode 100644 index 00000000000..0b8f4a347fe --- /dev/null +++ b/net-analyzer/sinfo/files/sinfo-0.0.48-gcc6.patch @@ -0,0 +1,24 @@ +Bug: https://bugs.gentoo.org/594990 + +--- a/libmessageio/tcpmessageserverconnection.cc ++++ b/libmessageio/tcpmessageserverconnection.cc +@@ -91,7 +91,7 @@ + } + + +-void TCPMessageServerConnection::queueAndSendMessageSlot(Message & message) ++void TCPMessageServerConnection::queueAndSendMessageSlot(const Message & message) + { + + if (sendQueue.size()<maxSendQueueSize) +--- a/libmessageio/tcpmessageserverconnection.h ++++ b/libmessageio/tcpmessageserverconnection.h +@@ -32,7 +32,7 @@ + void handleReadMessageSize(const boost::system::error_code& err, size_t length); + void handleReadMessage(const boost::system::error_code& err, size_t length); + +- void queueAndSendMessageSlot(Message & message); ++ void queueAndSendMessageSlot(const Message & message); + std::list<Message> sendQueue; + bool sendQueueCurrentlySending; + void startNewTransmission(); diff --git a/net-analyzer/sinfo/sinfo-0.0.48.ebuild b/net-analyzer/sinfo/sinfo-0.0.48.ebuild index bbee5392b74..ef6d765d62a 100644 --- a/net-analyzer/sinfo/sinfo-0.0.48.ebuild +++ b/net-analyzer/sinfo/sinfo-0.0.48.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -26,6 +26,7 @@ DEPEND=" src_prepare() { cp "${FILESDIR}"/${P}-acinclude.m4 acinclude.m4 || die epatch "${FILESDIR}"/${PN}-0.0.47-tinfo.patch + epatch "${FILESDIR}"/${P}-gcc6.patch eautoreconf }
