diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-04-06 20:20:19 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-04-06 20:20:19 +0000 |
commit | 8ab53674b5d02b78254d92c58bcf7ebd807adeb0 (patch) | |
tree | 27757e646f227135ad4c087f6709435f1af10396 /dev-util | |
parent | added patch to fix compilation on ppc, fixes bug #86533 (diff) | |
download | historical-8ab53674b5d02b78254d92c58bcf7ebd807adeb0.tar.gz historical-8ab53674b5d02b78254d92c58bcf7ebd807adeb0.tar.bz2 historical-8ab53674b5d02b78254d92c58bcf7ebd807adeb0.zip |
make sure ppc compiles this with -O2 rather than -O3 which causes breakage. This should fix bug #85670 by Martin <monsorno@gmx.de>, which should somewhat solve bug #27716, but I leave that to Spanky and Alastair
Package-Manager: portage-1.585-cvs
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/guile/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/guile/Manifest | 8 | ||||
-rw-r--r-- | dev-util/guile/guile-1.6.4-r1.ebuild | 6 | ||||
-rw-r--r-- | dev-util/guile/guile-1.6.6.ebuild | 6 | ||||
-rw-r--r-- | dev-util/guile/guile-1.6.7.ebuild | 6 |
5 files changed, 26 insertions, 8 deletions
diff --git a/dev-util/guile/ChangeLog b/dev-util/guile/ChangeLog index ab418f9aabe4..fbdea7868e28 100644 --- a/dev-util/guile/ChangeLog +++ b/dev-util/guile/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/guile # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/guile/ChangeLog,v 1.38 2005/04/06 20:09:36 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/guile/ChangeLog,v 1.39 2005/04/06 20:20:19 seemant Exp $ + + 06 Apr 2005; Seemant Kulleen <seemant@gentoo.org> guile-1.6.4-r1.ebuild, + guile-1.6.6.ebuild, guile-1.6.7.ebuild: + make sure ppc compiles this with -O2 rather than -O3 which causes breakage. + This should fix bug #85670 by Martin <monsorno@gmx.de>, which should + somewhat solve bug #27716, but I leave that to Spanky and Alastair 06 Apr 2005; Seemant Kulleen <seemant@gentoo.org> -guile-1.6.4.ebuild, -guile-1.6.4-r2.ebuild: diff --git a/dev-util/guile/Manifest b/dev-util/guile/Manifest index d217a9cda4b7..4c1443d12ca0 100644 --- a/dev-util/guile/Manifest +++ b/dev-util/guile/Manifest @@ -1,10 +1,10 @@ -MD5 4191af0c559fe03a5d2e271f0011029b ChangeLog 4999 +MD5 0d73e1ebf7b75ed213ff29aaa3f02798 ChangeLog 5335 MD5 f4a3bb08da3e9162271dee410addc833 guile-1.4-r3.ebuild 786 MD5 6c96ba5979bf0f56d6d04c90de9e0208 guile-1.4.1.ebuild 818 -MD5 1a3926044f9c3c9407170caa1d716d58 guile-1.6.4-r1.ebuild 1857 -MD5 ef193af30b2a86d4b299dea03777fb93 guile-1.6.6.ebuild 2004 -MD5 9ef79a0b395436d3880e97559eb83812 guile-1.6.7.ebuild 2118 MD5 327369d7f77a3211382c3d8f3cc2eba5 metadata.xml 313 +MD5 1149394d53f3736b6447cf1a422f4b60 guile-1.6.4-r1.ebuild 1919 +MD5 b7c199bc5b1fec131777109fabcf9fdb guile-1.6.6.ebuild 2066 +MD5 db1f5c0a5a43cf6f7a8f7766a5a4aa48 guile-1.6.7.ebuild 2180 MD5 983ca0d7ff0dc5899a453df89e714538 files/digest-guile-1.4-r3 62 MD5 c6e6b728591d901172031cc9a0997d31 files/digest-guile-1.4.1 64 MD5 c8ef00401b82bbfae1fa78785341e8dc files/digest-guile-1.6.4-r1 64 diff --git a/dev-util/guile/guile-1.6.4-r1.ebuild b/dev-util/guile/guile-1.6.4-r1.ebuild index 67dd6e8ae15f..0a9f10c6dee9 100644 --- a/dev-util/guile/guile-1.6.4-r1.ebuild +++ b/dev-util/guile/guile-1.6.4-r1.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-util/guile/guile-1.6.4-r1.ebuild,v 1.20 2005/01/28 11:03:43 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/guile/guile-1.6.4-r1.ebuild,v 1.21 2005/04/06 20:20:19 seemant Exp $ inherit flag-o-matic eutils libtool @@ -39,6 +39,10 @@ src_compile() { append-flags -no-cpp-precomp -Dmacosx fi + if [ "${ARCH}" = "ppc" ]; then + replace-flags -O3 -O2 + fi + econf \ --with-threads \ --with-modules || die diff --git a/dev-util/guile/guile-1.6.6.ebuild b/dev-util/guile/guile-1.6.6.ebuild index 039083e537e9..31e44935a322 100644 --- a/dev-util/guile/guile-1.6.6.ebuild +++ b/dev-util/guile/guile-1.6.6.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-util/guile/guile-1.6.6.ebuild,v 1.2 2005/01/28 11:03:43 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/guile/guile-1.6.6.ebuild,v 1.3 2005/04/06 20:20:19 seemant Exp $ inherit flag-o-matic eutils libtool @@ -32,6 +32,10 @@ src_compile() { epatch ${FILESDIR}/guile-amd64.patch fi + if [ "${ARCH}" = "ppc" ]; then + replace-flags -O3 -O2 + fi + if use ppc-macos ; then elibtoolize epatch ${FILESDIR}/guile-macos-posix.patch diff --git a/dev-util/guile/guile-1.6.7.ebuild b/dev-util/guile/guile-1.6.7.ebuild index 5f1cf5b4cbc0..1642b948d520 100644 --- a/dev-util/guile/guile-1.6.7.ebuild +++ b/dev-util/guile/guile-1.6.7.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-util/guile/guile-1.6.7.ebuild,v 1.1 2005/01/28 11:03:43 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/guile/guile-1.6.7.ebuild,v 1.2 2005/04/06 20:20:19 seemant Exp $ inherit flag-o-matic eutils libtool @@ -34,6 +34,10 @@ src_unpack() { epatch ${FILESDIR}/guile-amd64.patch fi + if [ "${ARCH}" = "ppc" ]; then + replace-flags -O3 -O2 + fi + if use ppc-macos ; then elibtoolize epatch ${FILESDIR}/guile-macos-posix.patch |