diff options
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/cln/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/cln/cln-1.1.10.ebuild | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/sci-libs/cln/ChangeLog b/sci-libs/cln/ChangeLog index 3df5029851a7..e142c8e2c8cb 100644 --- a/sci-libs/cln/ChangeLog +++ b/sci-libs/cln/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/cln # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/ChangeLog,v 1.10 2006/03/20 15:31:57 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/ChangeLog,v 1.11 2006/04/15 14:28:50 cryos Exp $ + + 15 Apr 2006; Marcus D. Hanwell <cryos@gentoo.org> cln-1.1.10.ebuild: + Added a filter for -ftracer, closes bug 121773. 20 Mar 2006; Markus Dittrich <markusle@gentoo.org> cln-1.1.6.ebuild: Replace -Os flag by -O2 since it breaks things. This fixes diff --git a/sci-libs/cln/cln-1.1.10.ebuild b/sci-libs/cln/cln-1.1.10.ebuild index be1fa80a98ba..b751f9744b3f 100644 --- a/sci-libs/cln/cln-1.1.10.ebuild +++ b/sci-libs/cln/cln-1.1.10.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/sci-libs/cln/cln-1.1.10.ebuild,v 1.3 2006/02/13 19:18:46 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/cln-1.1.10.ebuild,v 1.4 2006/04/15 14:28:50 cryos Exp $ inherit flag-o-matic toolchain-funcs multilib @@ -24,6 +24,9 @@ src_compile() { # It also doesn't seem to get on with -Os, bug 112741. replace-flags -Os -O2 + # Fragile build, -ftracer causes compilation issues, bug 121773. + filter-flags -ftracer + # and with gcc 2.95.3, it doesn't like funroll-loops as well... if [ "$( gcc-fullversion )" == "2.95.3" ]; then filter-flags -funroll-loops |