in reply to installing correct Par::Packer on ActivePerl 5.12.2

Hi!

i've found a solution for my environment:

MinGW and PAR-Packer were installed ussing ppm

pp complained about versions, so...

  1. Open config.pm file at %perlroot%/lib
  2. Find code
    $^V eq 5.12.2 or die "Perl lib version (5.12.2) doesn't match executable version + (" . sprintf("v%vd",$^V) . ")";
  3. Replace with
    $^V eq 5.12.2 or $^V eq 5.12.0 or die "Perl lib version (5.12.2) doesn't match executable version + (" . sprintf("v%vd",$^V) . ")";

pp works after that.

HTH

Rodrigo