diff options
author | Mark Kettenis <kettenis@gnu.org> | 2000-07-26 12:22:49 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2000-07-26 12:22:49 +0000 |
commit | 8a405fb812b3a8f11ee2ecf6ad5a2098e8faf0cf (patch) | |
tree | 226cb9da025a0419d0c30306e8014f5c0a79a3a7 /storeio | |
parent | 53148e33b3d1b77ad14028cd2325022e36e9c55e (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 'storeio')
-rw-r--r-- | storeio/ChangeLog | 7 | ||||
-rw-r--r-- | storeio/Makefile | 4 |
2 files changed, 9 insertions, 2 deletions
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 |