diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2006-11-20 09:39:24 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2006-11-20 09:39:24 +0000 |
commit | 8c5d8691cedf5135bbbe5dd15b663dc0f001e669 (patch) | |
tree | 2e9624b5e59e36edeb87c6f3680d014620d935ad /net-libs | |
parent | Fixed installation with use flag emacs activated. see #155682. (diff) | |
download | gentoo-2-8c5d8691cedf5135bbbe5dd15b663dc0f001e669.tar.gz gentoo-2-8c5d8691cedf5135bbbe5dd15b663dc0f001e669.tar.bz2 gentoo-2-8c5d8691cedf5135bbbe5dd15b663dc0f001e669.zip |
filtered -fforce-addr on x86, as reported by parafin-spobs@yandex.ru in bug #155679
(Portage version: 2.1.1-r2)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libtorrent/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/libtorrent/libtorrent-0.10.4.ebuild | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/net-libs/libtorrent/ChangeLog b/net-libs/libtorrent/ChangeLog index 533cb0d8cec0..14782653a316 100644 --- a/net-libs/libtorrent/ChangeLog +++ b/net-libs/libtorrent/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/libtorrent # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.72 2006/10/27 16:12:48 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.73 2006/11/20 09:39:24 opfer Exp $ + + 20 Nov 2006; Christian Faulhammer <opfer@gentoo.org> + libtorrent-0.10.4.ebuild: + -m filtered -fforce-addr on x86, as reported by parafin-spobs@yandex.ru in + bug #155679 commit *libtorrent-0.10.4 (27 Oct 2006) diff --git a/net-libs/libtorrent/libtorrent-0.10.4.ebuild b/net-libs/libtorrent/libtorrent-0.10.4.ebuild index cd9ebfe2d4e1..beb482552bdc 100644 --- a/net-libs/libtorrent/libtorrent-0.10.4.ebuild +++ b/net-libs/libtorrent/libtorrent-0.10.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.10.4.ebuild,v 1.1 2006/10/27 16:12:48 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.10.4.ebuild,v 1.2 2006/11/20 09:39:24 opfer Exp $ inherit eutils toolchain-funcs flag-o-matic libtool @@ -22,7 +22,7 @@ src_compile() { replace-flags -Os -O2 if [[ $(tc-arch) = "x86" ]]; then - filter-flags -fomit-frame-pointer + filter-flags -fomit-frame-pointer -fforce-addr # See bug #151221. It seems only to hit on GCC 4.1 and x86 architecture # it could be safer to fallback to -O1, but with the high use of STL in |