Subject: | "use 5.8.0" is non-portable |
When autobox::Core is used with 5.10 you get this warning:
v-string in use/require non-portable at
/usr/local/perl/5.10.0/lib/site_perl/5.10.0/autobox/Core.pm line 17.
That's: use 5.8.0;
That warning was introduced in 5.10 because it doesn't make much sense
to use a 5.6 feature in a version check...
$ perl5.5.5 -wle 'use 5.8.0'
syntax error at -e line 1, near "use 5.8"
Execution of -e aborted due to compilation errors.
So it should be: use 5.008;