From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D51591382C5 for ; Sat, 7 Apr 2018 20:49:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9F9EE0961; Sat, 7 Apr 2018 20:49:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C7FC8E0961 for ; Sat, 7 Apr 2018 20:49:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C2FB7335C7A for ; Sat, 7 Apr 2018 20:49:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A3ED27F for ; Sat, 7 Apr 2018 20:49:29 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1523134126.1040395f2b3a9951e450b81b1da096a1118d122f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/bitcoin-qt/files/, net-p2p/bitcoin-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/bitcoin-qt/bitcoin-qt-0.16.0-r1.ebuild net-p2p/bitcoin-qt/files/bitcoin-qt-0.16.0-fix_memory_include.patch X-VCS-Directories: net-p2p/bitcoin-qt/files/ net-p2p/bitcoin-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1040395f2b3a9951e450b81b1da096a1118d122f X-VCS-Branch: master Date: Sat, 7 Apr 2018 20:49:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e4025945-b2f8-45f7-91eb-d5e0f8d980f2 X-Archives-Hash: c0265a0f2f596bf59e96c403014f9508 commit: 1040395f2b3a9951e450b81b1da096a1118d122f Author: Luke Dashjr utopios org> AuthorDate: Mon Apr 2 18:35:30 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Apr 7 20:48:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1040395f net-p2p/bitcoin-qt-0.16.0*: Add missing include Closes: https://bugs.gentoo.org/652142 Closes: https://github.com/gentoo/gentoo/pull/7833 net-p2p/bitcoin-qt/bitcoin-qt-0.16.0-r1.ebuild | 2 ++ .../files/bitcoin-qt-0.16.0-fix_memory_include.patch | 13 +++++++++++++ 2 files changed, 15 insertions(+) diff --git a/net-p2p/bitcoin-qt/bitcoin-qt-0.16.0-r1.ebuild b/net-p2p/bitcoin-qt/bitcoin-qt-0.16.0-r1.ebuild index f3fc18a6875..07a5658ba4b 100644 --- a/net-p2p/bitcoin-qt/bitcoin-qt-0.16.0-r1.ebuild +++ b/net-p2p/bitcoin-qt/bitcoin-qt-0.16.0-r1.ebuild @@ -95,6 +95,8 @@ src_prepare() { eapply "${FILESDIR}/${P}-fix_mempoolstats.patch" fi + eapply "${FILESDIR}/${P}-fix_memory_include.patch" + eapply_user if ! use bitcoin_policy_rbf; then diff --git a/net-p2p/bitcoin-qt/files/bitcoin-qt-0.16.0-fix_memory_include.patch b/net-p2p/bitcoin-qt/files/bitcoin-qt-0.16.0-fix_memory_include.patch new file mode 100644 index 00000000000..66b7d361ee5 --- /dev/null +++ b/net-p2p/bitcoin-qt/files/bitcoin-qt-0.16.0-fix_memory_include.patch @@ -0,0 +1,13 @@ +diff --git a/src/qt/walletmodeltransaction.h b/src/qt/walletmodeltransaction.h +index cd531dba4b..816b0c35af 100644 +--- a/src/qt/walletmodeltransaction.h ++++ b/src/qt/walletmodeltransaction.h +@@ -7,6 +7,8 @@ + + #include + ++#include ++ + #include + + class SendCoinsRecipient;