-use 5.008003;
+use 5.008_003;
use strict;
use warnings;
}
# 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';
}
package autovivification;
-use 5.008003;
+use 5.008_003;
use strict;
use warnings;
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
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';
}
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;
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', [ ]);