Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Email-Valid CPAN distribution.

Report information
The Basics
Id: 22062
Status: resolved
Priority: 0/
Queue: Email-Valid

People
Owner: Nobody in particular
Requestors: alexchorny [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 0.15
Fixed in: (no value)



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',
resolved in 0.178; sorry for the delay -- rjbs