Skip Menu |

This queue is for tickets about the UML-State CPAN distribution.

Report information
The Basics
Id: 2740
Status: new
Priority: 0/
Queue: UML-State

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

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



Subject: kindly remove use 5.008; in Makefile.PL
This module works with perl 5.6.0 If you're not gonna have "use 5.008;" in your module, there is no point in having it in the Makefile.PL
Date: Wed, 4 Jun 2003 05:45:48 -0700 (PDT)
From: Phil Crow <philcrow2000 [...] yahoo.com>
Subject: Re: [cpan #2740] kindly remove use 5.008; in Makefile.PL
To: bug-UML-State [...] rt.cpan.org
RT-Send-Cc:
The test for the module use Test::More which does not ship with Perl 5.6. Feel free to modify your copy of Makefile.PL, but expect the tests to fail if you don't have Test::More installed. Phil Crow --- Guest via RT <bug-UML-State@rt.cpan.org> wrote: Show quoted text
> > This message about UML-State was sent to you by > guest <> via rt.cpan.org > > Full context and any attached attachments can be > found at: > <URL: > https://rt.cpan.org/Ticket/Display.html?id=2740 > > > This module works with perl 5.6.0 > If you're not gonna have "use 5.008;" > in your module, there is no point in having it in > the Makefile.PL >
Show quoted text
__________________________________ Do you Yahoo!? Yahoo! Calendar - Free online calendar with sync to Outlook(TM). http://calendar.yahoo.com
[philcrow2000@yahoo.com - Wed Jun 4 08:45:51 2003]: Show quoted text
> The test for the module use Test::More which does not > ship with Perl 5.6. Feel free to modify your copy of > Makefile.PL, but expect the tests to fail if you don't > have Test::More installed. > > Phil Crow
In that case, modify Makefile.PL and add WriteMakefile( ... PREREQ_PM => { 'Test::More' => 0, }, ... See also perldoc perlnewmod, perldoc ExtUtils::MakeMaker It is not a good idea to go by the corelist like that. Peace