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-libs | |
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-libs')
-rw-r--r-- | net-libs/libtorrent/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/libtorrent/libtorrent-0.8.2.ebuild | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/net-libs/libtorrent/ChangeLog b/net-libs/libtorrent/ChangeLog index f41a85c98207..cf0f0f54b706 100644 --- a/net-libs/libtorrent/ChangeLog +++ b/net-libs/libtorrent/ChangeLog @@ -1,6 +1,10 @@ # 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.39 2006/01/09 22:59:57 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.40 2006/01/17 09:14:46 flameeyes Exp $ + + 17 Jan 2006; Diego Pettenò <flameeyes@gentoo.org> + libtorrent-0.8.2.ebuild: + -Os seems to create bad exception handling, replace with -O2. *libtorrent-0.8.2 (09 Jan 2006) diff --git a/net-libs/libtorrent/libtorrent-0.8.2.ebuild b/net-libs/libtorrent/libtorrent-0.8.2.ebuild index 0920a9f3aed4..75764b22adec 100644 --- a/net-libs/libtorrent/libtorrent-0.8.2.ebuild +++ b/net-libs/libtorrent/libtorrent-0.8.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-libs/libtorrent/libtorrent-0.8.2.ebuild,v 1.1 2006/01/09 22:59:57 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.8.2.ebuild,v 1.2 2006/01/17 09:14:46 flameeyes Exp $ inherit eutils toolchain-funcs flag-o-matic @@ -20,6 +20,7 @@ DEPEND="${RDEPEND} src_compile() { [[ $(tc-arch) = "x86" ]] && filter-flags -fomit-frame-pointer + replace-flags -Os -O2 econf \ $(use_enable debug) \ |