]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
Make Perl version numbers more readable
authorVincent Pit <vince@profvince.com>
Sat, 24 Aug 2013 18:04:04 +0000 (15:04 -0300)
committerVincent Pit <vince@profvince.com>
Sat, 24 Aug 2013 18:31:29 +0000 (15:31 -0300)
Makefile.PL
lib/autovivification.pm
t/40-scope.t
t/51-threads-teardown.t
t/lib/autovivification/TestThreads.pm

index c8d5838a7f8a47a06d1804e14031e26893b91f3c..ff784d688155079b69a286aa52a731b977387d47 100644 (file)
@@ -1,4 +1,4 @@
-use 5.008003;
+use 5.008_003;
 
 use strict;
 use warnings;
@@ -34,7 +34,7 @@ if ($^O eq 'MSWin32' && "$]" < 5.009) {
 }
 
 # Fork emulation got "fixed" in 5.10.1
-if ($^O eq 'MSWin32' && "$]" < 5.010001) {
+if ($^O eq 'MSWin32' && "$]" < 5.010_001) {
  push @DEFINES, '-DA_FORKSAFE=0';
 }
 
index 2a41072af5e422d3bbb607a277ac01e0d43e2025..8d68dc774cb90d384276fdbc89748d3852654005 100644 (file)
@@ -1,6 +1,6 @@
 package autovivification;
 
-use 5.008003;
+use 5.008_003;
 
 use strict;
 use warnings;
@@ -211,7 +211,7 @@ L<perl> 5.8.3.
 A C compiler.
 This module may happen to build with a C++ compiler as well, but don't rely on it, as no guarantee is made in this regard.
 
-L<XSLoader> (standard since perl 5.006).
+L<XSLoader> (standard since perl 5.6.0).
 
 =head1 SEE ALSO
 
index 6b8361a33114e07d7f11717ef8efc6cd47981ab7..c3c57b5ff5ed62fa1b65494f42a0e54f96b9160c 100644 (file)
@@ -38,7 +38,7 @@ our $blurp;
  is        $@,     '',      'second require test doesn\'t croak prematurely';
  my $expect;
  $expect = { r1_main => { }, r1_eval => { } };
- $expect->{r2_eval} = { } if "$]" <  5.009005;
+ $expect->{r2_eval} = { } if "$]" <  5.009_005;
  is_deeply $blurp, $expect, 'second require test didn\'t vivify';
 }
 
index 862717d7dffd7e44278eb7ad96d3e8ee1757f4dc..164a047d09923d502a1db630c693a41e25db7099 100644 (file)
@@ -21,7 +21,7 @@ sub run_perl {
 
 SKIP:
 {
- skip 'Fails on 5.8.2 and lower' => 1 if "$]" <= 5.008002;
+ skip 'Fails on 5.8.2 and lower' => 1 if "$]" <= 5.008_002;
 
  my $status = run_perl <<' RUN';
   my $code = 1 + 2 + 4;
index e77cf3dbdb247d972ded1b50fb65e369b690c6dc..25f2ae699378f693253723fe364b81c04d2a85c5 100644 (file)
@@ -19,7 +19,7 @@ sub import {
  skip_all 'This perl wasn\'t built to support threads'
                                                     unless $Config{useithreads};
  skip_all 'perl 5.13.4 required to test thread safety'
-                                              unless $force or "$]" >= 5.013004;
+                                             unless $force or "$]" >= 5.013_004;
 
  load_or_skip_all('threads', $force ? '0' : '1.67', [ ]);