diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-06-16 20:51:14 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-06-16 20:51:14 +0000 |
commit | cd5ea974a95067a866148466c0163c9796ab8fdf (patch) | |
tree | 798f65248eaea1947a360efdb637cc9ae22a3710 /net-libs/wvstreams | |
parent | Mask casa-data as it's an unmasked live ebuild. (diff) | |
download | gentoo-2-cd5ea974a95067a866148466c0163c9796ab8fdf.tar.gz gentoo-2-cd5ea974a95067a866148466c0163c9796ab8fdf.tar.bz2 gentoo-2-cd5ea974a95067a866148466c0163c9796ab8fdf.zip |
Pass -fno-tree-dce -fno-optimize-sibling-calls for gcc 4.7 compat wrt bug 419971
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/wvstreams')
-rw-r--r-- | net-libs/wvstreams/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/wvstreams/wvstreams-4.6.1-r2.ebuild | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/net-libs/wvstreams/ChangeLog b/net-libs/wvstreams/ChangeLog index 16e9921bfbcd..d6abcf342668 100644 --- a/net-libs/wvstreams/ChangeLog +++ b/net-libs/wvstreams/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/wvstreams # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.144 2012/06/06 20:33:49 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.145 2012/06/16 20:51:14 ssuominen Exp $ + + 16 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> + wvstreams-4.6.1-r2.ebuild: + Pass -fno-tree-dce -fno-optimize-sibling-calls to prevent crashing when built + with sys-devel/gcc >= 4.7 wrt #419971 06 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> wvstreams-4.6.1-r1.ebuild: diff --git a/net-libs/wvstreams/wvstreams-4.6.1-r2.ebuild b/net-libs/wvstreams/wvstreams-4.6.1-r2.ebuild index c10e87366a52..1115b07bd5de 100644 --- a/net-libs/wvstreams/wvstreams-4.6.1-r2.ebuild +++ b/net-libs/wvstreams/wvstreams-4.6.1-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1-r2.ebuild,v 1.1 2012/06/06 20:33:49 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1-r2.ebuild,v 1.2 2012/06/16 20:51:14 ssuominen Exp $ EAPI=4 inherit autotools eutils flag-o-matic toolchain-funcs versionator @@ -59,7 +59,10 @@ src_prepare() { } src_configure() { + append-flags -fno-strict-aliasing + append-flags -fno-tree-dce -fno-optimize-sibling-calls #421375 + tc-export CXX econf \ |