diff options
author | René Nussbaumer <killerfox@gentoo.org> | 2005-07-20 21:02:12 +0000 |
---|---|---|
committer | René Nussbaumer <killerfox@gentoo.org> | 2005-07-20 21:02:12 +0000 |
commit | c7e6e8be24962683ec2e24c4a1b22e3c5a69d4f7 (patch) | |
tree | b2b708fc91e09d83dc22efc6918216c935523588 /dev-libs/dietlibc | |
parent | Stable on amd64. (diff) | |
download | gentoo-2-c7e6e8be24962683ec2e24c4a1b22e3c5a69d4f7.tar.gz gentoo-2-c7e6e8be24962683ec2e24c4a1b22e3c5a69d4f7.tar.bz2 gentoo-2-c7e6e8be24962683ec2e24c4a1b22e3c5a69d4f7.zip |
Stable on hppa
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-libs/dietlibc')
-rw-r--r-- | dev-libs/dietlibc/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/dietlibc/dietlibc-0.28.ebuild | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/dev-libs/dietlibc/ChangeLog b/dev-libs/dietlibc/ChangeLog index c1a8494dceb2..a57d7188974c 100644 --- a/dev-libs/dietlibc/ChangeLog +++ b/dev-libs/dietlibc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/dietlibc # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/dietlibc/ChangeLog,v 1.46 2005/07/20 11:57:32 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/dietlibc/ChangeLog,v 1.47 2005/07/20 21:02:12 killerfox Exp $ + + 20 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org> dietlibc-0.28.ebuild: + Stable on hppa. Added fix for hppa of not available gcc option. 20 Jul 2005; Markus Rothe <corsair@gentoo.org> dietlibc-0.28.ebuild: Stable on ppc64 diff --git a/dev-libs/dietlibc/dietlibc-0.28.ebuild b/dev-libs/dietlibc/dietlibc-0.28.ebuild index d50067ed11c2..0a262e254321 100644 --- a/dev-libs/dietlibc/dietlibc-0.28.ebuild +++ b/dev-libs/dietlibc/dietlibc-0.28.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/dev-libs/dietlibc/dietlibc-0.28.ebuild,v 1.4 2005/07/20 11:57:32 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/dietlibc/dietlibc-0.28.ebuild,v 1.5 2005/07/20 21:02:12 killerfox Exp $ inherit eutils flag-o-matic @@ -10,7 +10,7 @@ SRC_URI="mirror://kernel/linux/libs/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ppc64 ~sparc x86" +KEYWORDS="~alpha ~amd64 ~arm hppa ~mips ~ppc ppc64 ~sparc x86" IUSE="debug" DEPEND="" @@ -31,7 +31,8 @@ src_unpack() { replace-sparc64-flags #45716 - append-flags -D__dietlibc__ -fno-stack-protector-all -fno-stack-protector + # Fix for not available gcc option on hppa (20 Jul 2005) KillerFox + test_flag -fno-stack-protector && append-flags -D__dietlibc__ -fno-stack-protector-all -fno-stack-protector epatch "${FILESDIR}"/dietlibc-0.28-Makefile.patch } |