Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/glibc/files/eblits: common.eblit
Date: Wed, 30 Oct 2013 17:04:40
Message-Id: 20131030170434.1E8E320047@flycatcher.gentoo.org
1 vapier 13/10/30 17:04:34
2
3 Modified: common.eblit
4 Log:
5 Add ifunc checks for arm/hppa/ppc/s390.
6
7 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
8
9 Revision Changes Path
10 1.31 sys-libs/glibc/files/eblits/common.eblit
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit?rev=1.31&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit?rev=1.31&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit?r1=1.30&r2=1.31
15
16 Index: common.eblit
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v
19 retrieving revision 1.30
20 retrieving revision 1.31
21 diff -u -r1.30 -r1.31
22 --- common.eblit 29 Jun 2013 03:22:32 -0000 1.30
23 +++ common.eblit 30 Oct 2013 17:04:33 -0000 1.31
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v 1.30 2013/06/29 03:22:32 heroxbd Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/common.eblit,v 1.31 2013/10/30 17:04:33 vapier Exp $
29
30 alt_prefix() {
31 is_crosscompile && echo /usr/${CTARGET}
32 @@ -249,9 +249,13 @@
33 local bver nver
34 bver=$($(tc-getLD ${CTARGET}) -v | sed -n -r '1{s:[^0-9]*::;s:^([0-9.]*).*:\1:;p}')
35 case $(tc-arch ${CTARGET}) in
36 - amd64|x86) nver="2.20" ;;
37 - sparc) nver="2.21" ;;
38 - *) return 1 ;;
39 + amd64|x86) nver="2.20" ;;
40 + arm) nver="2.22" ;;
41 + hppa) nver="2.23" ;;
42 + ppc|ppc64) nver="2.20" ;;
43 + s390) nver="2.23" ;;
44 + sparc) nver="2.21" ;;
45 + *) return 1 ;;
46 esac
47 version_is_at_least ${nver} ${bver}
48 }