diff options
author | Aron Griffis <agriffis@gentoo.org> | 2005-02-08 19:45:02 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2005-02-08 19:45:02 +0000 |
commit | 77a3c3981a8145ed8a9b34c2fcedafa73c349e85 (patch) | |
tree | 0656bdd9172b51019bba3283c90ac54c9bfeed6b /dev-util/strace | |
parent | swapping KV_FULL for OKV, like it should be (diff) | |
download | gentoo-2-77a3c3981a8145ed8a9b34c2fcedafa73c349e85.tar.gz gentoo-2-77a3c3981a8145ed8a9b34c2fcedafa73c349e85.tar.bz2 gentoo-2-77a3c3981a8145ed8a9b34c2fcedafa73c349e85.zip |
more ia64 fixes for building against linux26-headers-2.6.8.1-r2
(Portage version: 2.0.51-r13)
Diffstat (limited to 'dev-util/strace')
-rw-r--r-- | dev-util/strace/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/strace/strace-4.5.8.ebuild | 9 |
2 files changed, 11 insertions, 3 deletions
diff --git a/dev-util/strace/ChangeLog b/dev-util/strace/ChangeLog index cdd907ecf90b..36bc8f877b5f 100644 --- a/dev-util/strace/ChangeLog +++ b/dev-util/strace/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/strace # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/ChangeLog,v 1.53 2005/02/08 19:20:19 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/ChangeLog,v 1.54 2005/02/08 19:45:02 agriffis Exp $ + + 08 Feb 2005; Aron Griffis <agriffis@gentoo.org> strace-4.5.8.ebuild: + more ia64 fixes for building against linux26-headers-2.6.8.1-r2 08 Feb 2005; Aron Griffis <agriffis@gentoo.org> +files/strace-4.5.8-ia64.patch, strace-4.5.8.ebuild: diff --git a/dev-util/strace/strace-4.5.8.ebuild b/dev-util/strace/strace-4.5.8.ebuild index 418cd3fb2bb6..4c873a9e02da 100644 --- a/dev-util/strace/strace-4.5.8.ebuild +++ b/dev-util/strace/strace-4.5.8.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/strace/strace-4.5.8.ebuild,v 1.4 2005/02/08 19:20:19 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.5.8.ebuild,v 1.5 2005/02/08 19:45:02 agriffis Exp $ inherit flag-o-matic @@ -24,8 +24,13 @@ src_unpack() { # (08 Feb 2005 agriffis) epatch ${FILESDIR}/strace-4.5.8-ia64.patch + # This is ugly but linux26-headers-2.6.8.1-r2 (and other versions) has some + # issues with definition of s64 and friends. This seems to solve + # compilation in this case (08 Feb 2005 agriffis) + use ia64 && append-flags -D_ASM_IA64_PAL_H + # Compile fails with -O3 on sparc but works on x86 - [ "${ARCH}" == "sparc" ] && replace-flags -O[3-9] -O2 + use sparc && replace-flags -O[3-9] -O2 filter-lfs-flags use static && append-ldflags -static |