this is a tiny patch to make lufs-0.9.5 work with the
old glibc-2.1.3. It doesn't use any autoconf tests,
it's just the bare stuff to make it work with glibc-2.1.3.
Oops - glibc-2.1.3 also doesn't have the memrchr functions.
I put a copy of memrchr.c from coreutils-5.0 (GPL'ed like
lufs, so I can append that file) into the lufsd subdirectory
and edited two lines in lufsd/Makefile, so that it compiles
and links memrchr.c:
lufs-0.9.5-glibc-2.1.3.patch.bz2
Logged In: YES
user_id=621012
Oops - glibc-2.1.3 also doesn't have the memrchr functions.
I put a copy of memrchr.c from coreutils-5.0 (GPL'ed like
lufs, so I can append that file) into the lufsd subdirectory
and edited two lines in lufsd/Makefile, so that it compiles
and links memrchr.c:
lufsd_SOURCES = daemon.c message.c fsctl.c filesystem.c
dircache.c options.c memrchr.c
am_lufsd_OBJECTS = daemon.$(OBJEXT) message.$(OBJEXT)
fsctl.$(OBJEXT) \ filesystem.$(OBJEXT) dircache.$(OBJEXT) options.$(OBJEXT)
memrchr.$(OBJEXT)
memrchr.c from coreutils-5.0