summaryrefslogtreecommitdiff
path: root/hostmux
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2000-07-26 12:03:46 +0000
committerMark Kettenis <kettenis@gnu.org>2000-07-26 12:03:46 +0000
commita2c8e58253361ae22778369676e64fee70fa4fc9 (patch)
treee45c4d68eadcaa868ac7d833acf8667ece6d318d /hostmux
parent4e7c9a7dcb5664a834b5c8f44844f603308489c0 (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.
Diffstat (limited to 'hostmux')
-rw-r--r--hostmux/ChangeLog7
-rw-r--r--hostmux/Makefile4
2 files changed, 9 insertions, 2 deletions
diff --git a/hostmux/ChangeLog b/hostmux/ChangeLog
index 0bcbf5136..0db0544d8 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 2c62d38e0..8e1009955 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