> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> [EMAIL PROTECTED] wrote:
>> Dear Dominique Quatravaux,
>>
>> Error evaling version line 'BEGIN { q# Hide from _packages_inside()
>> #; package Module::Build::ModuleInfo::_version;
>> no strict;
>>
>> local $VERSION;
>> $VERSION=undef;
>> $vsub = sub {
>> our $VERSION = '0.12';;
>> $VERSION
>> };
>> }' in
> /mnt/i386/usr/local/src/CPAN/build/Pod-Snippets-0.12-ipLExD/lib/Pod/Snippets.pm:
> Can't modify subroutine entry in scalar assignment at (eval 8) line 8,
> at EOF
>
> Whiskey Tango Foxtrot?
>
This is a very strange syntax error meaning: you are using "our", which
is invalid syntax in perl5.5. You can probably workaround the problem by
using "use vars qw($VERSION); $VERSION = ..." instead of "our $VERSION". Or,
if you don't want or can support older perls, put something like
require 5.008;
into your Build.PL or Makefile.PL. Specific instructions may be found
in
http://cpantest.grango.org/cgi-bin/pages.cgi?act=wiki-page&pagename=CPANAuthorNotes
Regards,
Slaven