Skip Menu |

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

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

People
Owner: Nobody in particular
Requestors: chrisv [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.44
Fixed in: (no value)



Subject: Makefile doesn't work on darwin (MacOSX)
Makefile.PL contains a buggy check for osname which breaks it on darwin (MacOSX) because it also contains 'win'. Better to check on 'Win' with capital 'Win' as that would cover both MSWin32 and WinXP and does not conflict with any other osnames listed on http://perldoc.perl.org/perlport.html#PLATFORMS Please fix Makefile.PL with patch in attachment & release new version as this bug effectively breaks compilation on MacOSX (any version). Many thanks in advance & thanks for maintaining this great module. Best, Chris.
Subject: Net-DNS-ToolKit-0.44_Makefile.patch
7c7 < if ($Config{osname} =~ /Win/) { --- > if ($Config{osname} =~ /win/i) {
Updated in release 0.45 uploaded to CPAN 11-17-11 On Wed Nov 16 20:21:03 2011, CHRISV wrote: Show quoted text
> Makefile.PL contains a buggy check for osname which breaks it on > darwin (MacOSX) because it > also contains 'win'. Better to check on 'Win' with capital 'Win' as > that would cover both MSWin32 > and WinXP and does not conflict with any other osnames listed on > http://perldoc.perl.org/perlport.html#PLATFORMS > > Please fix Makefile.PL with patch in attachment & release new version > as this bug effectively > breaks compilation on MacOSX (any version). > > Many thanks in advance & thanks for maintaining this great module. > > Best, > Chris.