diff options
author | 2005-03-10 23:31:46 +0000 | |
---|---|---|
committer | 2005-03-10 23:31:46 +0000 | |
commit | 1467fad3a0e4bc4f98fc6155015741f5c47db18a (patch) | |
tree | db3c5128de0e13d662d76148f2499fbb18870493 /net-firewall | |
parent | Removing the libexif mask as dependent software has been updated. (diff) | |
download | gentoo-2-1467fad3a0e4bc4f98fc6155015741f5c47db18a.tar.gz gentoo-2-1467fad3a0e4bc4f98fc6155015741f5c47db18a.tar.bz2 gentoo-2-1467fad3a0e4bc4f98fc6155015741f5c47db18a.zip |
Fix problem on VIA C3 processors. See bug #77369.
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-firewall')
-rw-r--r-- | net-firewall/ipsec-tools/ChangeLog | 5 | ||||
-rw-r--r-- | net-firewall/ipsec-tools/ipsec-tools-0.5.ebuild | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/net-firewall/ipsec-tools/ChangeLog b/net-firewall/ipsec-tools/ChangeLog index 6cf3e1ac8c6f..4fa02e194e74 100644 --- a/net-firewall/ipsec-tools/ChangeLog +++ b/net-firewall/ipsec-tools/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-firewall/ipsec-tools # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.19 2005/03/09 03:35:00 latexer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.20 2005/03/10 23:31:46 latexer Exp $ + + 10 Mar 2005; Peter Johanson <latexer@gentoo.org> ipsec-tools-0.5.ebuild: + Fix problem on VIA C3 processors. See bug #77369. *ipsec-tools-0.5 (08 Mar 2005) diff --git a/net-firewall/ipsec-tools/ipsec-tools-0.5.ebuild b/net-firewall/ipsec-tools/ipsec-tools-0.5.ebuild index 317d947e5a5e..4a6bf3c7e2b2 100644 --- a/net-firewall/ipsec-tools/ipsec-tools-0.5.ebuild +++ b/net-firewall/ipsec-tools/ipsec-tools-0.5.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.5.ebuild,v 1.1 2005/03/09 03:35:00 latexer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.5.ebuild,v 1.2 2005/03/10 23:31:46 latexer Exp $ -inherit eutils +inherit eutils flag-o-matic MY_P=${P/_/-} @@ -28,6 +28,10 @@ src_unpack() { } src_compile() { + # Filter the c3 flag for now. Probably a GCC problem, but we'll + # avoid it here for now. See bug #61025 + filter-flags -march=c3 + econf \ --enable-hybrid \ --enable-dpd \ |