diff options
author | Fabian Groffen <grobian@gentoo.org> | 2017-08-26 11:39:05 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2017-08-27 11:08:09 +0200 |
commit | 487eeee2642f9af47d342ab57bef98d7d5e44a30 (patch) | |
tree | dae093c30d748954d6d794c62d68c95fff159178 /sys-devel/gdb | |
parent | dev-python/Babel: use consistent indentation for metadata (diff) | |
download | gentoo-487eeee2642f9af47d342ab57bef98d7d5e44a30.tar.gz gentoo-487eeee2642f9af47d342ab57bef98d7d5e44a30.tar.bz2 gentoo-487eeee2642f9af47d342ab57bef98d7d5e44a30.zip |
sys-devel/gdb: fix building on 32-bits Solaris
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'sys-devel/gdb')
-rw-r--r-- | sys-devel/gdb/gdb-8.0.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys-devel/gdb/gdb-8.0.ebuild b/sys-devel/gdb/gdb-8.0.ebuild index ade988247180..0d6594032e04 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[@]}" } |