On Fri, 10 May 1996, Martin Konold wrote: > I did a ln -s /usr/X11R6 /usr/X386 > in order to get the motif application netscape running. > This way it will find the > /usr/X11R6/lib/X11/XKeysymDB > for wihich netscape looks at > /usr/X386/lib/X11/XKeysymDB
That's a really gross solution. Here's a very clean way to get netscape to work: 1. Unpack the entire netscape tar.gz in /usr/local/lib/netscape 2. Use this file as /usr/local/bin/netscape: ---cut--- #!/bin/sh XNLSPATH=/usr/local/lib/netscape/nls XKEYSYMDB=/usr/local/lib/netscape/XKeysymDB export XNLSPATH XKEYSYMDB exec /usr/local/lib/netscape/netscape $* ---cut--- chmod 755 it of course. Guy