Skip Menu |

This queue is for tickets about the CGI-Application-MailPage CPAN distribution.

Report information
The Basics
Id: 41697
Status: resolved
Priority: 0/
Queue: CGI-Application-MailPage

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

Bug Information
Severity: (no value)
Broken in: 1.6
Fixed in: (no value)



Subject: Installation fails with Module::Build
It seems that the installation fails if Module::Build is used, but is fine with the compatibility Makefile.PL Regards, Slaven
From: perl-rt [...] misterwhipple.com
The problem is that Module::Build is unable to determine a version number for the distribution. The solution is either to a) add the version number to Build.PL, or b) add the version number to the module (MailPage.pm). I chose the former, adding the dist_version parameter to the new() function call in Build.PL. license => 'perl', dist_version => '1.6', # <--- add this line requires => {
This is fixed by the new 1.7 which will appear on CPAN shortly.