From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B9B8259CA2 for ; Sat, 13 Feb 2016 21:15:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D18FA21C00E; Sat, 13 Feb 2016 21:15:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7806021C00E for ; Sat, 13 Feb 2016 21:15:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 533BE340BC1 for ; Sat, 13 Feb 2016 21:15:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42FA38E9 for ; Sat, 13 Feb 2016 21:15:07 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1455398097.49a98eeac0e9fe37782543aa185ced60ab85f80d.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/boehm-gc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/boehm-gc/boehm-gc-7.4.0.ebuild dev-libs/boehm-gc/boehm-gc-7.4.2.ebuild X-VCS-Directories: dev-libs/boehm-gc/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 49a98eeac0e9fe37782543aa185ced60ab85f80d X-VCS-Branch: master Date: Sat, 13 Feb 2016 21:15:07 +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: ab73a961-fea9-4294-8e71-2f503c3f44b4 X-Archives-Hash: 0c78ad0cb482721534f518abd0e808c4 commit: 49a98eeac0e9fe37782543aa185ced60ab85f80d Author: Mike Frysinger gentoo org> AuthorDate: Sat Feb 13 21:14:43 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Feb 13 21:14:57 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49a98eea dev-libs/boehm-gc: workaround ia64 build failure #574566 dev-libs/boehm-gc/boehm-gc-7.4.0.ebuild | 8 +++++++- dev-libs/boehm-gc/boehm-gc-7.4.2.ebuild | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/dev-libs/boehm-gc/boehm-gc-7.4.0.ebuild b/dev-libs/boehm-gc/boehm-gc-7.4.0.ebuild index dcfdef9..5f49136 100644 --- a/dev-libs/boehm-gc/boehm-gc-7.4.0.ebuild +++ b/dev-libs/boehm-gc/boehm-gc-7.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -32,6 +32,12 @@ src_configure() { econf "${config[@]}" } +src_compile() { + # Workaround build errors. #574566 + use ia64 && emake src/ia64_save_regs_in_stack.lo + default +} + src_install() { default use static-libs || prune_libtool_files diff --git a/dev-libs/boehm-gc/boehm-gc-7.4.2.ebuild b/dev-libs/boehm-gc/boehm-gc-7.4.2.ebuild index 922121a..7a4be80 100644 --- a/dev-libs/boehm-gc/boehm-gc-7.4.2.ebuild +++ b/dev-libs/boehm-gc/boehm-gc-7.4.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -32,6 +32,12 @@ src_configure() { econf "${config[@]}" } +src_compile() { + # Workaround build errors. #574566 + use ia64 && emake src/ia64_save_regs_in_stack.lo + default +} + src_install() { default use static-libs || prune_libtool_files