Tom Pfau <[EMAIL PROTECTED]> writes:
> I'm trying to get crinoid running.  I can get simple scripts to work fine
> but I have one that starts with 'use DBI' and it dumps the following errors:
>
> 1: ERROR: (while running): In string, @INC now must be written as \@INC at
> /perl_root/lib/VMS_AXP/5_6_0/DynaLoader.pm line 98, near "DynaLoader.pm
> loaded (@INC"

This looks like Perl complaining about an array in a string, something
like "and we're including files from @INC".  A look at Dynaloader.PM
confirms, and it could be a buglet in Dynaloader; the string should either
have \@INC if it's just a string, or something like join(' ',@INC) if
it's trying to insert values from @INC.

But you should never reach this code in Dynaloader unless you've defined
the logical PERL_DL_DEBUG.  Was PERL_DL_DEBUG set to debug some
other problem, perhaps?
--
 Drexel University       \V                    --Chuck Lane
======]---------->--------*------------<-------[===========
     (215) 895-1545     _/ \  Particle Physics
FAX: (215) 895-5934     /\ /~~~~~~~~~~~        [EMAIL PROTECTED]

Reply via email to