summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libdiskfs/ChangeLog7
-rw-r--r--libdiskfs/Makefile4
-rw-r--r--nfs/ChangeLog7
-rw-r--r--nfs/Makefile6
4 files changed, 18 insertions, 6 deletions
diff --git a/libdiskfs/ChangeLog b/libdiskfs/ChangeLog
index 2ea6d4dd..22bfb192 100644
--- a/libdiskfs/ChangeLog
+++ b/libdiskfs/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.
+
2000-07-18 Thomas Bushnell, BSG <tb@mit.edu>
* io-seek.c (diskfs_S_io_seek): Don't use CHANGE_NODE_FIELD
diff --git a/libdiskfs/Makefile b/libdiskfs/Makefile
index 612aaea2..9180c74d 100644
--- a/libdiskfs/Makefile
+++ b/libdiskfs/Makefile
@@ -1,5 +1,5 @@
#
-# Copyright (C) 1994, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+# Copyright (C) 1994,95,96,97,98,99,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
@@ -60,7 +60,7 @@ MIGSTUBS = fsServer.o ioServer.o fsysServer.o exec_startupServer.o \
startup_notifyServer.o
OBJS = $(sort $(SRCS:.c=.o) $(MIGSTUBS))
-HURDLIBS=fshelp iohelp store ports threads shouldbeinlibc
+HURDLIBS = fshelp iohelp store threads ports shouldbeinlibc
fsys-MIGSFLAGS = -imacros $(srcdir)/fsmutations.h -DREPLY_PORTS
fs-MIGSFLAGS = -imacros $(srcdir)/fsmutations.h
diff --git a/nfs/ChangeLog b/nfs/ChangeLog
index 9905bb06..7dfb32d5 100644
--- a/nfs/ChangeLog
+++ b/nfs/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-10 Roland McGrath <roland@baalperazim.frob.com>
* nfs.h: Add #include <sys/mman.h> for munmap decl.
diff --git a/nfs/Makefile b/nfs/Makefile
index 05fbd90c..12ce9800 100644
--- a/nfs/Makefile
+++ b/nfs/Makefile
@@ -1,5 +1,5 @@
#
-# Copyright (C) 1995, 1996, 1997 Free Software Foundation
+# Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation
# Written by Michael I. Bushnell.
#
# This file is part of the GNU Hurd.
@@ -25,8 +25,6 @@ target = nfs
LCLHDRS = nfs.h mount.h nfs-spec.h
SRCS = ops.c rpc.c mount.c nfs.c cache.c consts.c main.c name-cache.c
OBJS = $(subst .c,.o,$(SRCS))
-HURDLIBS=ports netfs fshelp threads iohelp
+HURDLIBS = netfs fshelp iohelp threads ports
include ../Makeconf
-
-