Subject: | Patch: no need for IO::CaptureOutput with Net::DNS |
If Net::DNS is available there is no need for IO::CaptureOutput. This
will require installing one module less. Net::DNS is more supported.
I've reported error for IO::CaptureOutput and there is no new version
for it, although ISHIGAKI already wrote patch. My patch to Net::DNS was
approved next day.
-------
Alexandr Ciornii, http://chorny.net
Subject: | Makefile.PL.patch |
--- Makefile.PL.dist Fri Jul 28 04:52:03 2006
+++ Makefile.PL Thu Oct 12 23:35:26 2006
@@ -25,7 +25,8 @@
'PREREQ_PM' => {
'Mail::Address' => 0,
($need_net_dns ? ('Net::DNS' => 0) : ()),
- (($^O =~ /\AMSWin32|Cygwin\z/) ? ('IO::CaptureOutput' => 0) : ()),
+ ((!$need_net_dns and $^O =~ /\AMSWin32|Cygwin\z/) ?
+ ('IO::CaptureOutput' => 0) : ()),
},
'dist' => { 'COMPRESS'=>'gzip -9f', 'SUFFIX' => 'gz',