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 D5FDF1396D0 for ; Sun, 27 Aug 2017 09:08:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A8C6E0D0B; Sun, 27 Aug 2017 09:08:18 +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 1B6B4E0D0B for ; Sun, 27 Aug 2017 09:08:17 +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 0E20334197B for ; Sun, 27 Aug 2017 09:08:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 650588433 for ; Sun, 27 Aug 2017 09:08:15 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1503824889.487eeee2642f9af47d342ab57bef98d7d5e44a30.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/gdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/gdb/gdb-8.0.ebuild X-VCS-Directories: sys-devel/gdb/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 487eeee2642f9af47d342ab57bef98d7d5e44a30 X-VCS-Branch: master Date: Sun, 27 Aug 2017 09:08:15 +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: 98c1372f-a6a5-4487-b818-6f28b59f3776 X-Archives-Hash: 17fb1a35ca0026f8c00cb280519d7415 commit: 487eeee2642f9af47d342ab57bef98d7d5e44a30 Author: Fabian Groffen gentoo org> AuthorDate: Sat Aug 26 09:39:05 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Aug 27 09:08:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=487eeee2 sys-devel/gdb: fix building on 32-bits Solaris Package-Manager: Portage-2.3.6, Repoman-2.3.1 sys-devel/gdb/gdb-8.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys-devel/gdb/gdb-8.0.ebuild b/sys-devel/gdb/gdb-8.0.ebuild index ade98824718..0d6594032e0 100644 --- a/sys-devel/gdb/gdb-8.0.ebuild +++ b/sys-devel/gdb/gdb-8.0.ebuild @@ -164,6 +164,11 @@ src_configure() { $(use_with python python "${EPYTHON}") ) fi + if use sparc-solaris || x86-solaris ; then + # disable largefile support + # https://sourceware.org/ml/gdb-patches/2014-12/msg00058.html + myconf+=( --disable-largefile ) + fi econf "${myconf[@]}" }