Nils Bokermann <bokerman(a)uni-bielefeld.de> writes:
#12 0xb074c in unexec (
new_name=0xefffed60 "/opt/packages/xemacs-21.2.20/src/xemacs",
old_name=0xefffed38 "/opt/packages/xemacs-21.2.20/src/temacs",
data_start=2565776, bss_start=0, entry_address=0) at unexsol2-6.c:33
Please include less subtle info about your platform next time :-)
I think wmperry had a similar problem recently. on some Solaris 2.6
versions the dldump library doesn't work that well...
I think the work around would be to change .../src/s/sol2.h from
#undef UNEXEC
#if OS_RELEASE < 56
#define UNEXEC "unexsol2.o"
#else
#define UNEXEC "unexsol2-6.o"
#endif
to
#undef UNEXEC
#if OS_RELEASE < 56
#define UNEXEC "unexsol2.o"
#else
#define UNEXEC "unexsol2.o"
#endif
Could you report back if this works for you too?
It is very nice from sun to provide a dumping library with the OS, but
it would be even nicer if it worked :-)
Jan