diff options
-rw-r--r-- | ftpfs/ChangeLog | 7 | ||||
-rw-r--r-- | ftpfs/Makefile | 4 | ||||
-rw-r--r-- | hostmux/ChangeLog | 7 | ||||
-rw-r--r-- | hostmux/Makefile | 4 | ||||
-rw-r--r-- | isofs/ChangeLog | 7 | ||||
-rw-r--r-- | isofs/Makefile | 4 |
6 files changed, 27 insertions, 6 deletions
diff --git a/ftpfs/ChangeLog b/ftpfs/ChangeLog index 99527918..9c69c5a9 100644 --- a/ftpfs/ChangeLog +++ b/ftpfs/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> * netfs.c: Add #include <sys/mman.h> for munmap decl. diff --git a/ftpfs/Makefile b/ftpfs/Makefile index 944bdd0a..0b6c9e2b 100644 --- a/ftpfs/Makefile +++ b/ftpfs/Makefile @@ -1,6 +1,6 @@ # Makefile for ftpfs # -# Copyright (C) 1997 Free Software Foundation, Inc. +# Copyright (C) 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 @@ -25,6 +25,6 @@ SRCS = ftpfs.c fs.c host.c netfs.c dir.c conn.c ccache.c node.c ncache.c LCLHDRS = ftpfs.h ccache.h OBJS = $(SRCS:.c=.o) -HURDLIBS = netfs fshelp iohelp ports threads ihash ftpconn shouldbeinlibc +HURDLIBS = netfs fshelp iohelp threads ports ihash ftpconn shouldbeinlibc include ../Makeconf 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 diff --git a/isofs/ChangeLog b/isofs/ChangeLog index 26dbdf60..93411a23 100644 --- a/isofs/ChangeLog +++ b/isofs/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-11-20 Roland McGrath <roland@baalperazim.frob.com> * lookup.c (dirscanblock): Add const to type of NAME parameter. diff --git a/isofs/Makefile b/isofs/Makefile index 2b57d81a..05c1a61f 100644 --- a/isofs/Makefile +++ b/isofs/Makefile @@ -1,5 +1,5 @@ -# Copyright (C) 1997 Free Software Foundation +# Copyright (C) 1997, 2000 Free Software Foundation # # 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 @@ LCLHDRS = iso9660.h isofs.h rr.h DIST_FILES = EXTENSIONS OBJS = $(SRCS:.c=.o) -HURDLIBS = diskfs iohelp fshelp store pager ports threads ihash shouldbeinlibc +HURDLIBS = diskfs iohelp fshelp store pager threads ports ihash shouldbeinlibc include ../Makeconf |