Darryl Okahata <darrylo(a)sr.hp.com> writes in xemacs-beta(a)xemacs.org:
SL Baur <steve(a)xemacs.org> wrote:
> What does this message mean? And why did I get an XEmacs anyway?
>
> Dumping under the name xemacs
> unexec(): dldump(/usr/local/devel/miho-optimized/src/xemacs): ld.so.1: ./tema
> cs: fatal: /usr/local/devel/miho-optimized/src/xemacs: unknown dynamic entry:
> 1879048176
Dunno. Is XEmacs playing with argv[0]?
Please define `playing with'. We depend upon argv[0] at run-time to
be the full path to the `xemacs' binary and use that information as a
starting basis for finding our run-time directories.
It's a longshot, but you might want to try editing
src/unexsol2-6.c
(I assume you're using Solaris 2.6) and change line 33 from:
if (dldump (0, new_name, RTLD_MEMORY) != 0)
to:
if (dldump (old_name, new_name, RTLD_MEMORY) != 0)
O.K. I will try this and report back.