Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/gdb/
Date: Sun, 27 Aug 2017 09:08:18
Message-Id: 1503824889.487eeee2642f9af47d342ab57bef98d7d5e44a30.grobian@gentoo
1 commit: 487eeee2642f9af47d342ab57bef98d7d5e44a30
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 26 09:39:05 2017 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 27 09:08:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=487eeee2
7
8 sys-devel/gdb: fix building on 32-bits Solaris
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 sys-devel/gdb/gdb-8.0.ebuild | 5 +++++
13 1 file changed, 5 insertions(+)
14
15 diff --git a/sys-devel/gdb/gdb-8.0.ebuild b/sys-devel/gdb/gdb-8.0.ebuild
16 index ade98824718..0d6594032e0 100644
17 --- a/sys-devel/gdb/gdb-8.0.ebuild
18 +++ b/sys-devel/gdb/gdb-8.0.ebuild
19 @@ -164,6 +164,11 @@ src_configure() {
20 $(use_with python python "${EPYTHON}")
21 )
22 fi
23 + if use sparc-solaris || x86-solaris ; then
24 + # disable largefile support
25 + # https://sourceware.org/ml/gdb-patches/2014-12/msg00058.html
26 + myconf+=( --disable-largefile )
27 + fi
28
29 econf "${myconf[@]}"
30 }