[617118d] | 1 | Submitted By: Ryan Oliver <ryan.oliver@pha.com.au>
|
---|
| 2 | Date: 2005-05-03
|
---|
| 3 | Initial Package Version: 2.3.4
|
---|
| 4 | Origin: Dan Kegel's crosstool ( http://kegel.com/crosstool/ )
|
---|
| 5 | Upstream Status: Fixed in glibc cvs ( see below for revs )
|
---|
| 6 | Description:
|
---|
| 7 |
|
---|
| 8 | Fixes
|
---|
| 9 | ../sysdeps/wordsize-64/wcstol_l.c:11: error: '____wcstoll_l_internal' aliased to undefined symbol '____wcstol_l_internal'
|
---|
| 10 | ../sysdeps/wordsize-64/wcstol_l.c:12: error: '__wcstoll_l' aliased to undefined symbol '__wcstol_l'
|
---|
| 11 | ../sysdeps/wordsize-64/wcstol_l.c:13: error: 'wcstoll_l' aliased to undefined symbol '__wcstol_l'
|
---|
| 12 | make[2]: *** [/home/dkegel/queue/jobdir.produser_cpsm10/crosstool-0.32/build/x86_64-unknown-linux-gnu/gcc-4.0.0-20050410-glibc-2.3.4/build-glibc/wcsmbs/wcstoul_l.o] Error 1
|
---|
| 13 |
|
---|
| 14 | https://www.redhat.com/archives/fedora-cvs-commits/2005-March/msg00408.html
|
---|
| 15 | %changelog
|
---|
| 16 | +* Fri Mar 25 2005 Jakub Jelinek <jakub redhat com> 2.3.4-18
|
---|
| 17 | +- fix build on 64-bit arches with new GCC
|
---|
| 18 |
|
---|
| 19 | Revision 1.4.2.1, Fri Mar 25 11:59:01 2005 UTC (3 weeks, 4 days ago) by jakub
|
---|
| 20 | Branch: fedora-branch
|
---|
| 21 | CVS Tags: fedora-glibc-2_3_4-18
|
---|
| 22 | Changes since 1.4: +2 -0 lines
|
---|
| 23 | Diff to previous 1.4 (colored)
|
---|
| 24 |
|
---|
| 25 | * sysdeps/wordsize-64/strtol_l.c: Don't add aliases if UNSIGNED.
|
---|
| 26 | * sysdeps/wordsize-64/wcstol_l.c: Likewise.
|
---|
| 27 |
|
---|
| 28 |
|
---|
| 29 | http://sourceware.org/cgi-bin/cvsweb.cgi/libc/sysdeps/wordsize-64/strtol_l.c.diff?r1=1.4&r2=1.4.2.1&cvsroot=glibc
|
---|
| 30 | http://sourceware.org/cgi-bin/cvsweb.cgi/libc/sysdeps/wordsize-64/wcstol_l.c.diff?r1=1.4&r2=1.4.2.1&cvsroot=glibc
|
---|
| 31 |
|
---|
| 32 | ===================================================================
|
---|
| 33 | RCS file: /cvs/glibc/libc/sysdeps/wordsize-64/strtol_l.c,v
|
---|
| 34 | retrieving revision 1.4
|
---|
| 35 | retrieving revision 1.4.2.1
|
---|
| 36 | diff -u -r1.4 -r1.4.2.1
|
---|
| 37 | --- libc/sysdeps/wordsize-64/strtol_l.c 2003/03/03 09:45:12 1.4
|
---|
| 38 | +++ libc/sysdeps/wordsize-64/strtol_l.c 2005/03/25 11:59:01 1.4.2.1
|
---|
| 39 | @@ -8,7 +8,9 @@
|
---|
| 40 | #undef ____strtoll_l_internal
|
---|
| 41 | #undef __strtoll_l
|
---|
| 42 | #undef strtoll_l
|
---|
| 43 | +#if !UNSIGNED
|
---|
| 44 | strong_alias (____strtol_l_internal, ____strtoll_l_internal)
|
---|
| 45 | libc_hidden_ver (____strtol_l_internal, ____strtoll_l_internal)
|
---|
| 46 | weak_alias (__strtol_l, __strtoll_l)
|
---|
| 47 | weak_alias (__strtol_l, strtoll_l)
|
---|
| 48 | +#endif
|
---|
| 49 | ===================================================================
|
---|
| 50 | RCS file: /cvs/glibc/libc/sysdeps/wordsize-64/wcstol_l.c,v
|
---|
| 51 | retrieving revision 1.4
|
---|
| 52 | retrieving revision 1.4.2.1
|
---|
| 53 | diff -u -r1.4 -r1.4.2.1
|
---|
| 54 | --- libc/sysdeps/wordsize-64/wcstol_l.c 2002/08/08 11:44:51 1.4
|
---|
| 55 | +++ libc/sysdeps/wordsize-64/wcstol_l.c 2005/03/25 11:59:01 1.4.2.1
|
---|
| 56 | @@ -8,6 +8,8 @@
|
---|
| 57 | #undef ____wcstoll_l_internal
|
---|
| 58 | #undef __wcstoll_l
|
---|
| 59 | #undef wcstoll_l
|
---|
| 60 | +#if !UNSIGNED
|
---|
| 61 | strong_alias (____wcstol_l_internal, ____wcstoll_l_internal)
|
---|
| 62 | weak_alias (__wcstol_l, __wcstoll_l)
|
---|
| 63 | weak_alias (__wcstol_l, wcstoll_l)
|
---|
| 64 | +#endif
|
---|