summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-07-28 05:46:16 +0000
committerMike Frysinger <vapier@gentoo.org>2014-07-28 05:46:16 +0000
commitd57d70df54962eab0f0ee072b4e6d95e6aa97ff1 (patch)
tree6fac5a846bbd493e95fb56055078c553664cfc07 /sys-libs
parentVersion bump. (diff)
downloadgentoo-2-d57d70df54962eab0f0ee072b4e6d95e6aa97ff1.tar.gz
gentoo-2-d57d70df54962eab0f0ee072b4e6d95e6aa97ff1.tar.bz2
gentoo-2-d57d70df54962eab0f0ee072b4e6d95e6aa97ff1.zip
Drop arch nptl logic as it only applies to really old versions of glibc now (linuxthreads) #518048 by Chase Rayfield.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/glibc/ChangeLog6
-rw-r--r--sys-libs/glibc/files/eblits/common.eblit13
2 files changed, 8 insertions, 11 deletions
diff --git a/sys-libs/glibc/ChangeLog b/sys-libs/glibc/ChangeLog
index 9d31562a1976..8a03d560cd84 100644
--- a/sys-libs/glibc/ChangeLog
+++ b/sys-libs/glibc/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/glibc
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.997 2014/06/14 23:33:58 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.998 2014/07/28 05:46:16 vapier Exp $
+
+ 28 Jul 2014; Mike Frysinger <vapier@gentoo.org> files/eblits/common.eblit:
+ Drop arch nptl logic as it only applies to really old versions of glibc now
+ (linuxthreads) #518048 by Chase Rayfield.
*glibc-2.19-r1 (14 Jun 2014)
diff --git a/sys-libs/glibc/files/eblits/common.eblit b/sys-libs/glibc/files/eblits/common.eblit
index c2ce4aafb81c..aa6149a14604 100644
--- a/sys-libs/glibc/files/eblits/common.eblit
+++ b/sys-libs/glibc/files/eblits/common.eblit
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v 1.35 2014/06/14 08:07:10 rhill Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v 1.36 2014/07/28 05:46:16 vapier Exp $
alt_prefix() {
is_crosscompile && echo /usr/${CTARGET}
@@ -206,15 +206,8 @@ want_nptl() {
want_tls || return 1
use nptl || return 1
- # Only list the arches that cannot do NPTL
- case $(tc-arch) in
- m68k) return 1;;
- sparc)
- # >= v9 is needed for nptl.
- [[ ${PROFILE_ARCH} == "sparc" ]] && return 1
- ;;
- esac
-
+ # Older versions of glibc had incomplete arch support for nptl.
+ # But if you're building those now, you can handle USE=nptl yourself.
return 0
}