----- Original Message ----- 
From: "Glenn Linderman"
.
.
>
> OK, so then I installed them all using the
> Perl Makefile.PL
> nmake
> nmake install
> nmake test
>

And I take it those installs went fine.

> Perl lib version (v5.8.8) doesn't match executable version (v5.8.3) at
> C:/Perl/lib/Config.pm line 46.

So that's emanating from (in Config.pm):

46: $^V eq v5.8.8
47:     or die "Perl lib version (v5.8.8) doesn't match executable version
(" .
48:     sprintf("v%vd",$^V) . ")";

Try changing that to also print out the value of $] (which should, according
to the error message be "5.008003") and to also print out the value of $^X
(which should give you a full path to the perl 5.8.3 executable):

$^V eq v5.8.8  or die "\$]: $]\n\$^X: $^X\nPerl lib version (v5.8.8) doesn't
match executable version (" . sprintf("v%vd",$^V) . ")";

Then do 'nmake clean', 'perl makefile.pl', and 'nmake' - and hopefully
you'll find it out precisely where this 5.8.3 executable thinks it is
located.

Cheers,
Rob

Reply via email to