diff options
author | 2013-12-30 03:24:04 +0000 | |
---|---|---|
committer | 2013-12-30 03:24:04 +0000 | |
commit | 420e27147a0cf5ef5d5b850a931e47a74ebc6605 (patch) | |
tree | 0938abff984cf09165f40060e9821cc33ca13a3a /eclass | |
parent | Remove old. (diff) | |
download | gentoo-2-420e27147a0cf5ef5d5b850a931e47a74ebc6605.tar.gz gentoo-2-420e27147a0cf5ef5d5b850a931e47a74ebc6605.tar.bz2 gentoo-2-420e27147a0cf5ef5d5b850a931e47a74ebc6605.zip |
For 4.8+ C++ is always enabled. We should eventually drop the cxx USE flag,
but who knows what that would break.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/toolchain.eclass | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 3895237f898c..79a1c95f542f 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1102 2013/12/29 21:39:51 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1103 2013/12/30 03:24:04 dirtyepic Exp $ + + 30 Dec 2013; Ryan Hill <dirtyepic@gentoo.org> toolchain.eclass: + For 4.8+ C++ is always enabled. We should eventually drop the cxx USE flag, + but who knows what that would break. 29 Dec 2013; Andreas K. Huettel <dilfridge@gentoo.org> perl-app.eclass: Do not use subslots on dev-lang/perl in perl apps (as opposed to modules) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 5411efb23e9d..bf01616cc92a 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.615 2013/12/28 09:12:39 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.616 2013/12/30 03:24:04 dirtyepic Exp $ # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1932,6 +1932,7 @@ is_ada() { is_cxx() { gcc-lang-supported 'c++' || return 1 + tc_version_is_at_least 4.8 && return 0 use cxx } |