diff options
author | Matt Turner <mattst88@gentoo.org> | 2011-07-15 16:27:59 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2011-07-15 16:27:59 +0000 |
commit | 850e67c713fe0894228a3cf330521fccd1d64ac9 (patch) | |
tree | 9722c781578ad33d1900b59f314b9ec3674e52fa /dev-libs/boost/boost-1.41.0-r3.ebuild | |
parent | ppc64 stable wrt #363937 (diff) | |
download | gentoo-2-850e67c713fe0894228a3cf330521fccd1d64ac9.tar.gz gentoo-2-850e67c713fe0894228a3cf330521fccd1d64ac9.tar.bz2 gentoo-2-850e67c713fe0894228a3cf330521fccd1d64ac9.zip |
Disable long-double support on MIPS only for o32 ABI (no longer disable long-double on n32 and n64 ABIs)
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/boost/boost-1.41.0-r3.ebuild')
-rw-r--r-- | dev-libs/boost/boost-1.41.0-r3.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-libs/boost/boost-1.41.0-r3.ebuild b/dev-libs/boost/boost-1.41.0-r3.ebuild index c5e60f9b45f7..9935dc930aff 100644 --- a/dev-libs/boost/boost-1.41.0-r3.ebuild +++ b/dev-libs/boost/boost-1.41.0-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.41.0-r3.ebuild,v 1.13 2011/04/05 05:23:28 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.41.0-r3.ebuild,v 1.14 2011/07/15 16:27:59 mattst88 Exp $ EAPI="2" @@ -173,7 +173,7 @@ __EOF__ use python || OPTIONS="${OPTIONS} --without-python" # https://svn.boost.org/trac/boost/attachment/ticket/2597/add-disable-long-double.patch - if use sparc || use mips || use hppa || use arm || use x86-fbsd || use sh; then + if use sparc || { use mips && [[ ${ABI} = "o32" ]]; } || use hppa || use arm || use x86-fbsd || use sh; then OPTIONS="${OPTIONS} --disable-long-double" fi |