[OT] Re: Staroffice and Glibc 2.1

Keith Owens (kaos@ocs.com.au)
Sun, 18 Apr 1999 10:56:11 +1000


On Sat, 17 Apr 1999 17:39:32 -0400,
Dave Cinege <dcinege@psychosis.com> wrote:
>There was some dicussion about linux 2.2, libc2.1 and how staroffice needed
>libc 2.0.7 awhile ago. I never remember a good solution to this coming out.

Similar problem with Tripwire 2.0, it breaks on glibc-2.1 whenever
lstat hits a non-existent file. No idea if it is a glibc or tripwire
problem, no source for tripwire 2 :(.

A general workaround for programs that need glibc 2.0. Install the
glibc-2.0.7 files, including ld-linux.so.2 and ld-2.0.7.so in
/lib-2.0.7. Create a script called use-2.0.7

#!/bin/sh
# use-2.0.7
LD_LIBRARY_PATH=/lib-2.0.7/ /lib-2.0.7/ld-linux.so.2 "$@"

Invove all programs that need glibc-2.0.7 as

use-2.0.7 /path/to/binary options

You have to specify the full path to the offending binaries.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/