diff options
author | Cédric Krier <cedk@gentoo.org> | 2010-02-28 16:11:18 +0000 |
---|---|---|
committer | Cédric Krier <cedk@gentoo.org> | 2010-02-28 16:11:18 +0000 |
commit | 28a5ef0b82cdabb6a3706205f3de7c559ba5b6f7 (patch) | |
tree | 1460e0142aef8a7088b1067ab80930ab091105e1 /net-misc/openvpn | |
parent | Adding init script for samba4 (diff) | |
download | gentoo-2-28a5ef0b82cdabb6a3706205f3de7c559ba5b6f7.tar.gz gentoo-2-28a5ef0b82cdabb6a3706205f3de7c559ba5b6f7.tar.bz2 gentoo-2-28a5ef0b82cdabb6a3706205f3de7c559ba5b6f7.zip |
Filter out -maltivec on ppc for bug #293840
(Portage version: 2.1.7.16/cvs/Linux i686)
Diffstat (limited to 'net-misc/openvpn')
-rw-r--r-- | net-misc/openvpn/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/openvpn/openvpn-2.1.0-r1.ebuild | 13 |
2 files changed, 15 insertions, 5 deletions
diff --git a/net-misc/openvpn/ChangeLog b/net-misc/openvpn/ChangeLog index c35eb7c689c3..e44e377e210d 100644 --- a/net-misc/openvpn/ChangeLog +++ b/net-misc/openvpn/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/openvpn -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/openvpn/ChangeLog,v 1.170 2009/12/29 18:13:05 cedk Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/openvpn/ChangeLog,v 1.171 2010/02/28 16:11:18 cedk Exp $ + + 28 Feb 2010; Cédric Krier <cedk@gentoo.org> openvpn-2.1.0-r1.ebuild: + Filter out -maltivec on ppc for bug #293840 *openvpn-2.1.0-r1 (29 Dec 2009) diff --git a/net-misc/openvpn/openvpn-2.1.0-r1.ebuild b/net-misc/openvpn/openvpn-2.1.0-r1.ebuild index 6dd1b896b155..94820d1c4a3a 100644 --- a/net-misc/openvpn/openvpn-2.1.0-r1.ebuild +++ b/net-misc/openvpn/openvpn-2.1.0-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/openvpn/openvpn-2.1.0-r1.ebuild,v 1.1 2009/12/29 18:13:05 cedk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/openvpn/openvpn-2.1.0-r1.ebuild,v 1.2 2010/02/28 16:11:18 cedk Exp $ -inherit eutils multilib toolchain-funcs autotools +inherit eutils multilib toolchain-funcs autotools flag-o-matic IPV6_VERSION="0.4.10" DESCRIPTION="OpenVPN is a robust and highly flexible tunneling application compatible with many OSes." @@ -56,6 +56,13 @@ src_unpack() { } src_compile() { + # basic.h defines a type 'bool' that conflicts with the altivec + # keyword bool which has to be fixed upstream, see bugs #293840 + # and #297854. + # For now, filter out -maltivec on ppc and append -mno-altivec, as + # -maltivec is enabled implicitly by -mcpu and similar flags. + use ppc && filter-flags -maltivec && append-flags -mno-altivec + local myconf="" if use minimal ; then |