stas 2002/09/04 09:01:18 Modified: lib DocSet.pm lib/DocSet 5005compat.pm Log: sync with DocSet: - in DocSet::5005compat added a workaround for a bug in ExtUtils::MakeMaker v < 6.00, which tries to parse any word which include VERSION in it, which causes problems when you do 'r' in CPAN.pm. Thanks to Mark Veltzer for reporting the problem. Revision Changes Path 1.8 +1 -1 modperl-docs/lib/DocSet.pm Index: DocSet.pm =================================================================== RCS file: /home/cvs/modperl-docs/lib/DocSet.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- DocSet.pm 19 Aug 2002 06:56:44 -0000 1.7 +++ DocSet.pm 4 Sep 2002 16:01:18 -0000 1.8 @@ -1,6 +1,6 @@ package DocSet; -$VERSION = '0.14'; +$VERSION = '0.15'; =head1 NAME 1.3 +5 -0 modperl-docs/lib/DocSet/5005compat.pm Index: 5005compat.pm =================================================================== RCS file: /home/cvs/modperl-docs/lib/DocSet/5005compat.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- 5005compat.pm 24 Jan 2002 18:11:24 -0000 1.2 +++ 5005compat.pm 4 Sep 2002 16:01:18 -0000 1.3 @@ -19,6 +19,11 @@ eval { require File::Spec::Functions; } or die "this is only Perl $], you need to install File-Spec from CPAN"; + # ExtUtils::MakeMaker v < 6.00 stupidly tries to parse any VERSION + # it sees, so it fails latter on in the import() function. so we + # have to workaround it. even the following comment will do + # $DocSet::5005compat::VERSION = 0.01; + my $min_version = 0.82; unless ($File::Spec::VERSION >= $min_version) { die "you need to install File-Spec-$min_version or higher from CPAN";
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]