diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-03-18 21:34:58 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-03-18 21:34:58 +0000 |
commit | 639c324856be406e80c000720151c34ec6904d87 (patch) | |
tree | 66c902de399c96cd4adfa578f888e0fdfa3b0441 /linuxthreads | |
parent | 2bd7e9c3878b2a828999bd7c133419351d4007d7 (diff) | |
download | glibc-639c324856be406e80c000720151c34ec6904d87.tar.gz |
Update.
2001-03-18 Ulrich Drepper <drepper@redhat.com>
* Makerules (build-shlib): Remove unnecessary slashes introduced in
last change.
* configure.in: Test for -Bgroup option of linker.
* config.make.in: Define have-Bgroup.
* conform/data/unistd.h-data: Require gethostname.
* posix/unistd.h: Make gethostname prototype available for
__USE_XOPEN2K.
* crypt/Makefile: When generating DSO link with libc_nonshared.a.
* debug/Makefile: Likewise.
* dlfcn/Makefile: Likewise.
* hesiod/Makefile: Likewise.
* iconvdata/extra-module.mk: Likewise.
* locale/Makefile: Likewise.
* login/Makefile: Likewise.
* math/Makefile: Likewise.
* nis/Makefile: Likewise.
* nss/Makefile: Likewise.
* resolv/Makefile: Likewise.
* rt/Makefile: Likewise.
* posix/unistd.h (gethostname): Change type of second parameter
back to size_t as per upcoming XPG6.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 4 | ||||
-rw-r--r-- | linuxthreads/Makefile | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 5fe8ced1de..f4e37b4649 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,7 @@ +2001-03-18 Ulrich Drepper <drepper@redhat.com> + + * Makefile: When generating DSO link with libc_nonshared.a. + 2001-02-26 Jakub Jelinek <jakub@redhat.com> * signals.c (pthread_sighandler): Use CALL_SIGHANDLER. diff --git a/linuxthreads/Makefile b/linuxthreads/Makefile index a3bd5d16ae..d88af80f5a 100644 --- a/linuxthreads/Makefile +++ b/linuxthreads/Makefile @@ -76,7 +76,8 @@ CFLAGS-unload.c += -DPREFIX=\"$(objpfx)\" # 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: $(common-objpfx)libc.so +$(objpfx)libpthread.so: $(common-objpfx)libc.so \ + $(common-objpfx)libc_nonshared.a # Make sure we link with the thread library. ifeq ($(build-shared),yes) |