Subject: | Net::DNS does not work with Active Perl Perl 5.8 (due to $^O) |
Active Perl 5.8 Build 806
Net::DNS 0.38
resolver.pm checks the $^O value; in AP 5.8 this is not Win32 but MSWin32:
<cut here>
if (($^O eq 'Win32') or ($^O eq 'MSWin32')) {
eval 'use Win32::Registry';
die $@ if $@;
$os = 'microsoft';
} else {
$os = 'unix';
}
</cut here>
this works!
Bye
Thomas