diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-12-03 01:04:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-12-03 01:04:35 +0000 |
commit | 2747c55be99da2a4dad7da7179a3248dbe588379 (patch) | |
tree | a975d4af6e4a7a515bbeaa487e3f06425565f096 /eclass | |
parent | Add some more fixes from upstream, and forward port the long cmdline patch fr... (diff) | |
download | gentoo-2-2747c55be99da2a4dad7da7179a3248dbe588379.tar.gz gentoo-2-2747c55be99da2a4dad7da7179a3248dbe588379.tar.bz2 gentoo-2-2747c55be99da2a4dad7da7179a3248dbe588379.zip |
drop protoize/unprotoize altogether since upstream has deprecated it
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index f8b47e38311f..44b773fd14c1 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.485 2011/12/02 23:39:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.486 2011/12/03 01:04:35 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -930,15 +930,6 @@ toolchain_src_unpack() { "${S}"/libstdc++-v3/python/Makefile.in || die fi - # protoize don't build on FreeBSD, skip it - ## removed in 4.5, bug #270558 --de. - if [[ ${GCCMAJOR}.${GCCMINOR} < 4.5 ]]; then - if ! is_crosscompile && ! use elibc_FreeBSD ; then - # enable protoize / unprotoize - sed -i -e '/^LANGUAGES =/s:$: proto:' "${S}"/gcc/Makefile.in - fi - fi - # No idea when this first started being fixed, but let's go with 4.3.x for now if ! tc_version_is_at_least 4.3 ; then fix_files="" |