in reply to Re^15: ActiveState Perl 10.x and Crypt::SSLeay not installed errors on Windows 2003
in thread ActiveState Perl 10.x and Crypt::SSLeay not installed errors on Windows 2003
When I run the code that's inside that unless block it sets $arch to MSWin32-x86-multi-thread-5.10 yet I get the same as you when I run the one liner you presented. And $arch .= sprintf "-%vd", substr($^V, 0, 2) if $] >= 5.008; definitely appends -118.53 to $arch.39: unless ($arch) { 40: $arch = $Config{archname}; 41: if ($] >= 5.008) { 42: my $vstring = sprintf "%vd", $^V; 43: $vstring =~ s/\.\d+$//; 44: $arch .= "-$vstring"; 45: } 46: }
|
|---|