diff options
Diffstat (limited to 'hostmux')
-rw-r--r-- | hostmux/ChangeLog | 7 | ||||
-rw-r--r-- | hostmux/Makefile | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/hostmux/ChangeLog b/hostmux/ChangeLog index 0bcbf513..0db0544d 100644 --- a/hostmux/ChangeLog +++ b/hostmux/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-07-11 Roland McGrath <roland@baalperazim.frob.com> * mux.c: Add #include <sys/mman.h>. diff --git a/hostmux/Makefile b/hostmux/Makefile index 2c62d38e..8e100995 100644 --- a/hostmux/Makefile +++ b/hostmux/Makefile @@ -1,6 +1,6 @@ # Makefile for hostmux # -# Copyright (C) 1997, 1999 Free Software Foundation, Inc. +# Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -25,6 +25,6 @@ SRCS = hostmux.c mux.c leaf.c node.c stubs.c LCLHDRS = hostmux.h OBJS = $(SRCS:.c=.o) -HURDLIBS = netfs fshelp iohelp ports threads ihash shouldbeinlibc +HURDLIBS = netfs fshelp iohelp threads ports ihash shouldbeinlibc include ../Makeconf |