Updated to fedora-glibc-20060802T1808

This commit is contained in:
Jakub Jelinek 2006-08-02 18:18:00 +00:00
parent 5d550e87dd
commit eb090791c6
3 changed files with 14 additions and 4 deletions

View File

@ -83,7 +83,7 @@ _dl_addr (const void *address, Dl_info *info,
for (Elf_Symndx bucket = 0; bucket < match->l_nbuckets; ++bucket)
{
Elf32_Word symndx = match->l_gnu_buckets[bucket];
if (bucket != 0)
if (symndx != 0)
{
const Elf32_Word *hasharr = &match->l_gnu_chain_zero[symndx];

View File

@ -3,5 +3,5 @@ glibc-branch := fedora
glibc-base := HEAD
DIST_BRANCH := devel
COLLECTION := dist-fc4
fedora-sync-date := 2006-08-02 16:50 UTC
fedora-sync-tag := fedora-glibc-20060802T1650
fedora-sync-date := 2006-08-02 18:08 UTC
fedora-sync-tag := fedora-glibc-20060802T1808

View File

@ -1,4 +1,4 @@
%define glibcrelease 16
%define glibcrelease 17
%define auxarches i586 i686 athlon sparcv9 alphaev6
%define xenarches i686 athlon
%ifarch %{xenarches}
@ -787,6 +787,9 @@ BuildFlags="-march=%{_target_cpu} -DUSE_CFA_VAL_EXPRESSION"
%ifarch i686
BuildFlags="-march=i686 -mtune=pentium4 -DUSE_CFA_VAL_EXPRESSION"
%endif
%ifarch i386
BuildFlags="$BuildFlags -mno-tls-direct-seg-refs"
%endif
%ifarch x86_64
BuildFlags="-DUSE_CFA_VAL_EXPRESSION"
%endif
@ -1027,6 +1030,8 @@ for i in $RPM_BUILD_ROOT%{_prefix}/bin/{xtrace,memusage}; do
cp -a $i $i.tmp
sed -e 's~=/%{_lib}/libpcprofile.so~=%{_prefix}/%{_lib}/libpcprofile.so~' \
-e 's~=/%{_lib}/libmemusage.so~=%{_prefix}/%{_lib}/libmemusage.so~' \
-e 's~=/\$LIB/libpcprofile.so~=%{_prefix}/$LIB/libpcprofile.so~' \
-e 's~=/\$LIB/libmemusage.so~=%{_prefix}/$LIB/libmemusage.so~' \
$i.tmp > $i
chmod 755 $i; rm -f $i.tmp
done
@ -1433,6 +1438,11 @@ rm -f *.filelist*
%endif
%changelog
* Wed Aug 2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-17
- typo fix for the dladdr patch
- build i?86 glibc with -mno-tls-direct-seg-refs (#200469)
- fix memusage and xtrace scripts (#200736)
* Wed Aug 2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-16
- fix dladdr on binaries/libraries with only DT_GNU_HASH and no
DT_HASH (#200635)