From: Vincent Pit Date: Sat, 24 Aug 2013 17:42:57 +0000 (-0300) Subject: Replace uses of "$^V" by "$]" X-Git-Tag: rt92118~6 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fre-engine-Plugin.git;a=commitdiff_plain;h=44719418257750872159c9c8a2942518c8460fe5 Replace uses of "$^V" by "$]" --- diff --git a/Makefile.PL b/Makefile.PL index 9114d74..dc624de 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,7 +7,7 @@ use ExtUtils::MakeMaker; my @DEFINES; # Fork emulation got "fixed" in 5.10.1 -if ($^O eq 'MSWin32' && $^V lt v5.10.1) { +if ($^O eq 'MSWin32' && "$]" < 5.010_001) { push @DEFINES, '-DREP_FORKSAFE=0'; }