diff options
-rw-r--r-- | pflocal/ChangeLog | 7 | ||||
-rw-r--r-- | pflocal/Makefile | 4 | ||||
-rw-r--r-- | storeio/ChangeLog | 7 | ||||
-rw-r--r-- | storeio/Makefile | 4 | ||||
-rw-r--r-- | term/ChangeLog | 7 | ||||
-rw-r--r-- | term/Makefile | 4 |
6 files changed, 27 insertions, 6 deletions
diff --git a/pflocal/ChangeLog b/pflocal/ChangeLog index c7c36fc0..92f51914 100644 --- a/pflocal/ChangeLog +++ b/pflocal/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-09-13 Roland McGrath <roland@baalperazim.frob.com> * io.c: Reverted changes related to io_map_segment. diff --git a/pflocal/Makefile b/pflocal/Makefile index d5768b32..a7e664fa 100644 --- a/pflocal/Makefile +++ b/pflocal/Makefile @@ -1,6 +1,6 @@ # Makefile for pflocal # -# Copyright (C) 1995, 1996 Free Software Foundation, Inc. +# Copyright (C) 1995, 1996, 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 @@ -26,7 +26,7 @@ LCLHDRS = connq.h sock.h mig-decls.h mig-mutate.h sserver.h MIGSTUBS = ioServer.o socketServer.o OBJS = $(SRCS:.c=.o) $(MIGSTUBS) -HURDLIBS = pipe trivfs fshelp ports threads ihash shouldbeinlibc +HURDLIBS = pipe trivfs fshelp threads ports ihash shouldbeinlibc MIGSFLAGS = -imacros $(srcdir)/mig-mutate.h diff --git a/storeio/ChangeLog b/storeio/ChangeLog index ef3f500d..8619d5f9 100644 --- a/storeio/ChangeLog +++ b/storeio/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-03-19 Roland McGrath <roland@baalperazim.frob.com> * io.c: Comments. diff --git a/storeio/Makefile b/storeio/Makefile index a3e6227b..f027ebd4 100644 --- a/storeio/Makefile +++ b/storeio/Makefile @@ -1,6 +1,6 @@ # Makefile for storeio # -# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. +# Copyright (C) 1995, 1996, 1997, 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 @@ -24,6 +24,6 @@ SRCS = dev.c storeio.c open.c pager.c io.c LCLHDRS = dev.h open.h OBJS = $(SRCS:.c=.o) -HURDLIBS = trivfs pager ports fshelp iohelp store threads ihash shouldbeinlibc +HURDLIBS = trivfs pager fshelp iohelp store threads ports ihash shouldbeinlibc include ../Makeconf diff --git a/term/ChangeLog b/term/ChangeLog index 2d8ad3b8..86244457 100644 --- a/term/ChangeLog +++ b/term/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-03-17 Thomas Bushnell, BSG <tb@mit.edu> * main.c (main): Don't use MAKE_SEND in Hurd RPC. diff --git a/term/Makefile b/term/Makefile index 8adbced3..63a75d82 100644 --- a/term/Makefile +++ b/term/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc. +# Copyright (C) 1995, 1996, 1997, 1999, 2000 Free Software Foundation, Inc. # Written by Michael I. Bushnell, p/BSG. # # This file is part of the GNU Hurd. @@ -26,7 +26,7 @@ SRCS = devio.c munge.c users.c main.c ptyio.c LCLHDRS = term.h DIST_FILES = ourmsg.defs -HURDLIBS=trivfs fshelp iohelp ports ihash shouldbeinlibc threads +HURDLIBS = trivfs fshelp iohelp threads ports ihash shouldbeinlibc OBJS = $(subst .c,.o,$(SRCS)) termServer.o device_replyServer.o tioctlServer.o ourmsgUser.o include ../Makeconf |