diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2011-09-21 13:44:51 +0000 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2011-09-21 13:44:51 +0000 |
commit | d1f030ed66ca701e1fcf3bba7168f445092a9694 (patch) | |
tree | fc45bf59c7e22e844175631140e048be72ffd682 /net-proxy/haproxy/haproxy-1.4.15.ebuild | |
parent | media-video/smplayer: Unbundle quazip (bug #383309) (diff) | |
download | gentoo-2-d1f030ed66ca701e1fcf3bba7168f445092a9694.tar.gz gentoo-2-d1f030ed66ca701e1fcf3bba7168f445092a9694.tar.bz2 gentoo-2-d1f030ed66ca701e1fcf3bba7168f445092a9694.zip |
Append -fno-strict-aliasing for now, till the strict-aliasing breakage has been fixed. Remove old version.
(Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
Diffstat (limited to 'net-proxy/haproxy/haproxy-1.4.15.ebuild')
-rw-r--r-- | net-proxy/haproxy/haproxy-1.4.15.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net-proxy/haproxy/haproxy-1.4.15.ebuild b/net-proxy/haproxy/haproxy-1.4.15.ebuild index 641152938d9a..f861c9b1da6d 100644 --- a/net-proxy/haproxy/haproxy-1.4.15.ebuild +++ b/net-proxy/haproxy/haproxy-1.4.15.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/haproxy-1.4.15.ebuild,v 1.4 2011/07/23 11:26:44 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/haproxy-1.4.15.ebuild,v 1.5 2011/09/21 13:44:51 idl0r Exp $ EAPI="3" -inherit eutils versionator toolchain-funcs +inherit eutils versionator toolchain-funcs flag-o-matic DESCRIPTION="A TCP/HTTP reverse proxy for high availability environments" HOMEPAGE="http://haproxy.1wt.eu" @@ -31,6 +31,9 @@ src_compile() { use kernel_linux && args="${args} USE_LINUX_SPLICE=1" use kernel_linux && args="${args} USE_LINUX_TPROXY=1" + # For now, until the strict-aliasing breakage will be fixed + append-cflags -fno-strict-aliasing + emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC=$(tc-getCC) ${args} || die } |