diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-01-17 09:15:57 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-01-17 09:15:57 +0000 |
commit | 1dd33fbba56f86649fe273dad018eb96416db778 (patch) | |
tree | 8e287790423b2ba64a21a50329856d816cb5dc8e /net-p2p | |
parent | Initial port. Ebuild contributed by Matthew Kennedy <mkennedy@gentoo.org>. (diff) | |
download | gentoo-2-1dd33fbba56f86649fe273dad018eb96416db778.tar.gz gentoo-2-1dd33fbba56f86649fe273dad018eb96416db778.tar.bz2 gentoo-2-1dd33fbba56f86649fe273dad018eb96416db778.zip |
-Os seems to create bad exception handling, replace with -O2.
(Portage version: 2529-svn)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/rtorrent/ChangeLog | 5 | ||||
-rw-r--r-- | net-p2p/rtorrent/rtorrent-0.4.2.ebuild | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/net-p2p/rtorrent/ChangeLog b/net-p2p/rtorrent/ChangeLog index aade8dc0ce9f..c091435582c6 100644 --- a/net-p2p/rtorrent/ChangeLog +++ b/net-p2p/rtorrent/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-p2p/rtorrent # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.29 2006/01/09 23:00:00 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.30 2006/01/17 09:15:57 flameeyes Exp $ + + 17 Jan 2006; Diego Pettenò <flameeyes@gentoo.org> rtorrent-0.4.2.ebuild: + -Os seems to create bad exception handling, replace with -O2. *rtorrent-0.4.2 (09 Jan 2006) diff --git a/net-p2p/rtorrent/rtorrent-0.4.2.ebuild b/net-p2p/rtorrent/rtorrent-0.4.2.ebuild index 9820608f8ced..09933cfe82f1 100644 --- a/net-p2p/rtorrent/rtorrent-0.4.2.ebuild +++ b/net-p2p/rtorrent/rtorrent-0.4.2.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-p2p/rtorrent/rtorrent-0.4.2.ebuild,v 1.1 2006/01/09 23:00:00 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.4.2.ebuild,v 1.2 2006/01/17 09:15:57 flameeyes Exp $ inherit eutils toolchain-funcs flag-o-matic @@ -20,6 +20,8 @@ DEPEND=">=net-libs/libtorrent-0.8.0 src_compile() { [[ $(tc-arch) = "x86" ]] && filter-flags -fomit-frame-pointer + replace-flags -Os -O2 + econf \ $(use_enable debug) \ --disable-dependency-tracking \ |