[ Usenet FAQs | Web FAQs | Documents | RFC Index ]
    Search the FAQ Archives

Part1 - Part2 - Part3 - Part4 - Part5 - Single Page

Top Document: comp.unix.aix Frequently Asked Questions (Part 2 of 5)
Previous Document: 1.514: How do I set my DISPLAY when I login to another machine?
Next Document: 1.600: My named dies frequently, why?


1.515: Why doesn't Netscape work?



The problem is that Netscape has statically linked libc into 
Mozilla.  When the AIX 3 libc code (setlocale()) tries to
load an AIX 4 locale, the two are incompatible and a core
dump ensues.  AIX 4 locales have to be loaded by AIX 4 libc.
Using LANG=C causes a lot of locale code to be bypassed, allowing
the application to avoid loading a non-C locale, and to continue
execution.

>From: Colin <apollo@randomc.com>
Here is a shell script that works around Netscape's problems by
setting the LANG and CLASSPATH environment variables.

#!/bin/sh
LANG=C
CLASSPATH=/path/to/java_30
export LANG CLASSPATH
if [ $# -eq 0 ]; then
   /path/to/netscape http://your.home.page &
else
   /path/to/netscape $* &
fi



Top Document: comp.unix.aix Frequently Asked Questions (Part 2 of 5)
Previous Document: 1.514: How do I set my DISPLAY when I login to another machine?
Next Document: 1.600: My named dies frequently, why?

Part1 - Part2 - Part3 - Part4 - Part5 - Single Page


[ Usenet FAQs | Web FAQs | Documents | RFC Index ]

Send corrections/additions to the FAQ Maintainer:
bofh@mail.teleweb.pt (Jose Pina Coelho)

Last Update October 22 2009 @ 05:22 AM

Some parts © 2009 Advameg, Inc.