Skip Menu |

This queue is for tickets about the Net-DNS CPAN distribution.

Report information
The Basics
Id: 2777
Status: resolved
Priority: 0/
Queue: Net-DNS

People
Owner: Nobody in particular
Requestors: Thomas.Halwax [...] mindlab.at
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.38
Fixed in: (no value)



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