On Thu, Apr 17, 2008 at 11:34 AM, Sharan Basappa
<[EMAIL PROTECTED]> wrote:
> On Thu, Apr 17, 2008 at 8:41 PM, Gunnar Hjalmarsson <[EMAIL PROTECTED]> wrote:
> > Sharan Basappa wrote:
> >
> > > I am installing Text-Balanced module locally.
> > > perl Makefile.PL .. step does not complete.
> > >
> > > It bails out with the foll. error:
> > > Warning: prerequisite version 0 not found.
> > >
> >
> > <snip>
> >
> >
> >
> > > This looks like a dependency issue. Can someone tell me what module
> > > should I be installing before I can
> > > install Text-Balanced?
> > >
> >
> > The Makefile.PL file can...
> > http://search.cpan.org/src/DCONWAY/Text-Balanced-v2.0.0/Makefile.PL
> >
> I did not get you clearly. Are you saying that the Makefile can take
> care of dependancy modules?
> If so, what do the errors mean.
> BTW, I continued despite the errors I mentioned above.
> But when I run make test, the summary report shows:
> 2 tests skipped.
> Failed 9/11 test scripts, 18.18% okay. 560/560 subtests failed, 0.00% okay.
> make: *** [test_dynamic] Error 255
>
> This tells me that all did not go well with installation.
>
> Regards
>
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> http://learn.perl.org/
>
>
>
He is trying to let you know that Makefile.PL contains the names of
the modules this one is dependent on. Specifically the hash ref
stored in PREREQ_PM.
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Text::Balanced',
AUTHOR => 'Damian Conway <[EMAIL PROTECTED]>',
VERSION_FROM => 'lib/Text/Balanced.pm',
ABSTRACT_FROM => 'lib/Text/Balanced.pm',
INSTALLDIRS => ($] >= 5.007003 ? 'perl' : 'site'),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'version' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Text-Balanced-*' },
);
--
Chas. Owens
wonkden.net
The most important skill a programmer can have is the ability to read.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/