diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2005-12-14 23:29:41 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2005-12-14 23:29:41 +0000 |
commit | ba946de33a3ee95294d8f7c6d55b537cece6a4cd (patch) | |
tree | 1cbee661d200de6e7314c72f8b30e607a2180714 /sci-libs | |
parent | Marked ~amd64. (diff) | |
download | historical-ba946de33a3ee95294d8f7c6d55b537cece6a4cd.tar.gz historical-ba946de33a3ee95294d8f7c6d55b537cece6a4cd.tar.bz2 historical-ba946de33a3ee95294d8f7c6d55b537cece6a4cd.zip |
Replace -Os with -O2, closes bug 112741.
Package-Manager: portage-2.0.53
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/cln/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/cln/Manifest | 18 | ||||
-rw-r--r-- | sci-libs/cln/cln-1.1.10.ebuild | 4 |
3 files changed, 21 insertions, 6 deletions
diff --git a/sci-libs/cln/ChangeLog b/sci-libs/cln/ChangeLog index 4666fda4f608..f924bf4c7d01 100644 --- a/sci-libs/cln/ChangeLog +++ b/sci-libs/cln/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/cln # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/ChangeLog,v 1.7 2005/11/16 02:20:04 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/ChangeLog,v 1.8 2005/12/14 23:29:41 cryos Exp $ + + 14 Dec 2005; Marcus D. Hanwell <cryos@gentoo.org> cln-1.1.10.ebuild: + Replace -Os with -O2, closes bug 112741. *cln-1.1.10 (16 Nov 2005) diff --git a/sci-libs/cln/Manifest b/sci-libs/cln/Manifest index bd54c8eba8ab..1dfb4bd601f1 100644 --- a/sci-libs/cln/Manifest +++ b/sci-libs/cln/Manifest @@ -1,8 +1,18 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 232caeb20101bac0d7206ef41df56e48 ChangeLog 2160 +MD5 52cf2e5259866949aa453dc53df097a0 cln-1.1.10.ebuild 1398 MD5 e199db30cd19acf044f9e90945352dc7 cln-1.1.6.ebuild 1281 -MD5 5d9b75b2ebab1b3ac9dcbecfb02a0e3d cln-1.1.10.ebuild 1323 -MD5 8e27db8cf8ca4b50ef054a7a48eae7e3 ChangeLog 2048 -MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 MD5 37fa7c5a44cfcec3e8a84c7ac34b2de9 cln-1.1.9.ebuild 1318 +MD5 45314c142627ed8443c32e407607f861 files/digest-cln-1.1.10 64 MD5 e6723419337999b42ae07ddbe7e91aa6 files/digest-cln-1.1.6 63 MD5 fab69d45ab20bd75057ccbb09d01cf29 files/digest-cln-1.1.9 63 -MD5 45314c142627ed8443c32e407607f861 files/digest-cln-1.1.10 64 +MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.2 (GNU/Linux) + +iD8DBQFDoKrxntT9W3vfTuoRAqdwAJ9cWs34ubEvS9FyEEjQW1zkGmyd0ACeIK+9 +XjLhyVQvv1aA2iFZu9Ndeww= +=lywK +-----END PGP SIGNATURE----- diff --git a/sci-libs/cln/cln-1.1.10.ebuild b/sci-libs/cln/cln-1.1.10.ebuild index 4a7c395093ca..fef93b7d7923 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-2005 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.1 2005/11/16 02:20:04 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/cln-1.1.10.ebuild,v 1.2 2005/12/14 23:29:41 cryos Exp $ inherit flag-o-matic toolchain-funcs multilib @@ -21,6 +21,8 @@ DEPEND="dev-libs/gmp" src_compile() { # at least with gcc 2.95 and 3.1, cln won't like -O3 flag... replace-flags -O[3..9] -O2 + # It also doesn't seem to get on with -Os, bug 112741. + repace-flags -Os -O2 # and with gcc 2.95.3, it doesn't like funroll-loops as well... if [ "$( gcc-fullversion )" == "2.95.3" ]; then |