diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-01-03 21:15:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-01-03 21:15:43 +0000 |
commit | 733f25e6d34d8ced182ffd6366d7914d56e71d98 (patch) | |
tree | 18b3f08bbfa7cf6c37e254df3824bb24be4c5d35 /linuxthreads | |
parent | 686b7223d5e87538d8bc7eaf9581f4ad11d666f1 (diff) | |
download | glibc-733f25e6d34d8ced182ffd6366d7914d56e71d98.tar.gz glibc-733f25e6d34d8ced182ffd6366d7914d56e71d98.tar.xz glibc-733f25e6d34d8ced182ffd6366d7914d56e71d98.zip |
Update.
2003-01-03 Jakub Jelinek <jakub@redhat.com> * sysdeps/generic/ldsodefs.h (_dl_allocate_tls, _dl_deallocate_tls): Add rtld_hidden_proto. * sysdeps/generic/dl-tls.c (_dl_deallocate_tls): Add rtld_hidden_def. (_dl_allocate_tls): Likewise. Remove INTDEF.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 4 | ||||
-rw-r--r-- | linuxthreads/Makefile | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index ad38286577..175f7437e1 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,7 @@ +2003-01-03 Jakub Jelinek <jakub@redhat.com> + + * Makefile ($(objpfx)libpthread.so): Depend on ld.so. + 2003-01-02 Ulrich Drepper <drepper@redhat.com> * tst-cancel-wrappers.sh: Exclude sigwait.c as well, it does not have diff --git a/linuxthreads/Makefile b/linuxthreads/Makefile index b9edd40031..ff26e06eea 100644 --- a/linuxthreads/Makefile +++ b/linuxthreads/Makefile @@ -185,7 +185,9 @@ endif # Depend on libc.so so a DT_NEEDED is generated in the shared objects. # This ensures they will load libc.so for needed symbols if loaded by # a statically-linked program that hasn't already loaded it. -$(objpfx)libpthread.so: $(libc-link.so) $(common-objpfx)libc_nonshared.a +# Depend on ld.so too to get proper versions of ld.so symbols. +$(objpfx)libpthread.so: $(libc-link.so) $(common-objpfx)libc_nonshared.a \ + $(if $(filter yes,$(elf)), $(elfobjdir)/ld.so) # Make sure we link with the thread library. ifeq ($(build-shared),yes) |