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) {