Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

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

Report information
The Basics
Id: 11493
Status: resolved
Priority: 0/
Queue: Email-Send

People
Owner: Nobody in particular
Requestors: simonw [...] digitalcraftsmen.net
Cc:
AdminCc:

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



Subject: Missing prereq for Email::Send::IO
Makefile.PL is missing a prereq for IO::All. Causes strange failure case when trying to load Email::Send::IO dynamically, in that the eval require for Email::Send::IO dies (line 113 of Send.pm) and it then loads IO.pm, resulting in an unexpected "Undefined subroutine &IO::send called" error. Following patch fixes it: --- Email-Send-1.46.orig/Makefile.PL 2005-01-08 17:16:51.000000000 +0000 +++ Email-Send-1.46/Makefile.PL 2005-02-13 23:55:41.000000000 +0000 @@ -9,6 +9,7 @@ 'Email::Simple' => '1.92', 'Return::Value' => '1.28', 'Test::More' => '0.47', + 'IO::All' => '0.33', }, VERSION_FROM => 'lib/Email/Send.pm', );