diff options
author | Vicente Olivert Riera <vincent@gentoo.org> | 2013-04-07 00:14:42 +0000 |
---|---|---|
committer | Vicente Olivert Riera <vincent@gentoo.org> | 2013-04-07 00:14:42 +0000 |
commit | 0eb1e475f9280da37562c793ff7b03c720bc185c (patch) | |
tree | 7a44b8a6a93ce0be4db8467f98079ee9a3697af1 | |
parent | BL2 support per bug #395839. (diff) | |
download | gentoo-2-0eb1e475f9280da37562c793ff7b03c720bc185c.tar.gz gentoo-2-0eb1e475f9280da37562c793ff7b03c720bc185c.tar.bz2 gentoo-2-0eb1e475f9280da37562c793ff7b03c720bc185c.zip |
filter-flags -Wno-pointer-sign, wrt bug #442784
(Portage version: 2.1.11.55/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 5AE9E7B2E9BBCBA8)
-rw-r--r-- | sys-libs/libstdc++-v3/ChangeLog | 8 | ||||
-rw-r--r-- | sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild | 7 |
2 files changed, 11 insertions, 4 deletions
diff --git a/sys-libs/libstdc++-v3/ChangeLog b/sys-libs/libstdc++-v3/ChangeLog index 4ec3fd5dd602..0319b0ff990d 100644 --- a/sys-libs/libstdc++-v3/ChangeLog +++ b/sys-libs/libstdc++-v3/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/libstdc++-v3 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/ChangeLog,v 1.65 2012/07/23 16:01:24 vapier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/ChangeLog,v 1.66 2013/04/07 00:14:42 vincent Exp $ + + 07 Apr 2013; Vicente Olivert Riera <vincent@gentoo.org> + libstdc++-v3-3.3.6.ebuild: + filter-flags -Wno-pointer-sign, wrt bug #442784 23 Jul 2012; Mike Frysinger <vapier@gentoo.org> libstdc++-v3-3.3.6-r1.ebuild: Fix building with newer glibc and siginfo changes #427220 by Martin Jansa. diff --git a/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild b/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild index 6687a307bb99..cef7a6a69346 100644 --- a/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild +++ b/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild,v 1.27 2011/11/05 16:57:59 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild,v 1.28 2013/04/07 00:14:42 vincent Exp $ inherit eutils flag-o-matic libtool multilib @@ -98,6 +98,9 @@ do_filter_flags() { filter-flags -fno-strict-overflow filter-flags -fstrict-overflow + # Bug #442784 + filter-flags -Wno-pointer-sign + # ...sure, why not? strip-unsupported-flags |