I am re-building an application that calls Perl.
I had 5.6.2 and everything was OK.
Now I moved to 5.8.2 ON HPUX 64 bit and I get the message:
Unsatisfied symbol boot_DynaLoader
I link with DynaLoader.a and my code looks like this:
EXTERN_C void boot_DynaLoader _((CV* cv));
static void
xs_init()
{
dXSUB_SYS;
{
/* DynaLoader is a special case */
newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, "perlRam.c");
}
}