----- Original Message ----- From: "Sean McMahon" <[EMAIL PROTECTED]>
Subroutine Cwd::fastcwd redefined at /usr/local/lib/perl5/5.8.6/sun4-solaris-thread/XSLoader.pm line 92.
You probably should investigate that warning - though I think it has nothing to do with the script not running.
Had problems bootstrapping Inline module 'connect_2a79' Can't load '/usr/opt/src/nwis-4.7/ownereditor/_Inline/lib/auto/connect_2a79/connect_2a79.so' for module connect_2a79: ld.so.1: perl: fatal: libnw.so.4: open failed: No such file or directory at /usr/local/lib/perl5/5.8.6/sun4-solaris-thread/DynaLoader.pm line 230. at /usr/local/lib/perl5/site_perl/5.8.6/Inline.pm line 500
Looks like libnw.so.4, which is needed by connect_2a79.so cannot be loaded (because it can't be found). Therefore connect_s2a79.so won't load.
One solution would be to compile against a static build of libnw - which would mean that the Inline-built so (connect_2a79.so in this particular instance) is self-sufficient and doesn't need to load any libnw.so. To do that, you'll probably have to first rebuild libnw as a static build - which is a bit of messing around.
Of course, you shouldn't have to go to all that trouble - there will be a way of making libnw.so.4 locatable to the system, but I don't know what it is. I don't think it's an Inline issue - in fact, I don't think it's even a perl issue. Someone who has good knowledge of Solaris should have a good idea of how to fix that problem.
Does libnw.so.4 exist ? Is it in a location where it gets found by default ? Cheers, Rob