diff options
author | Mark Kettenis <kettenis@gnu.org> | 2000-07-26 00:39:59 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2000-07-26 00:39:59 +0000 |
commit | 4f7b9235b8453e58d093a0641557f816cb8fa388 (patch) | |
tree | c9d77de32654cdc6ea7da4802bc4dc6905514a43 | |
parent | fb56061d26c17b771d27d357a657d90c3dc3fbf9 (diff) |
* Makefile (HURDLIBS): Reorder libs such that the threads lib
comes before the ports lib. This makes sure the functions in
libthreads properly override the stubs in libports with the new
dynamic linker semantics in glibc 2.2.
-rw-r--r-- | auth/ChangeLog | 7 | ||||
-rw-r--r-- | auth/Makefile | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/auth/ChangeLog b/auth/ChangeLog index ea7f0fb4..dbf923a8 100644 --- a/auth/ChangeLog +++ b/auth/ChangeLog @@ -1,3 +1,10 @@ +2000-07-26 Mark Kettenis <kettenis@gnu.org> + + * Makefile (HURDLIBS): Reorder libs such that the threads lib + comes before the ports lib. This makes sure the functions in + libthreads properly override the stubs in libports with the new + dynamic linker semantics in glibc 2.2. + 1999-05-13 Roland McGrath <roland@baalperazim.frob.com> * auth.c (S_auth_server_authenticate, S_auth_user_authenticate): If diff --git a/auth/Makefile b/auth/Makefile index da41cdd0..da7f8e23 100644 --- a/auth/Makefile +++ b/auth/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991, 93, 94, 95, 96 Free Software Foundation, Inc. +# Copyright (C) 1991, 93, 94, 95, 96, 2000 Free Software Foundation, Inc. # This file is part of the GNU Hurd. # # The GNU Hurd is free software; you can redistribute it and/or modify @@ -22,7 +22,7 @@ SRCS = auth.c OBJS = auth.o authServer.o auth_replyUser.o LCLHDRS = authmutations.h auth_mig.h target = auth -HURDLIBS=ports threads ihash shouldbeinlibc +HURDLIBS = threads ports ihash shouldbeinlibc MIGSFLAGS = -imacros $(srcdir)/authmutations.h |