]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/commitdiff
Replace uses of "$^V" by "$]"
authorVincent Pit <vince@profvince.com>
Sat, 24 Aug 2013 17:42:57 +0000 (14:42 -0300)
committerVincent Pit <vince@profvince.com>
Sat, 24 Aug 2013 17:42:57 +0000 (14:42 -0300)
Makefile.PL

index 9114d74d8d8860d8636c05a11a090b32d39e6725..dc624de411e5e0c04d359fa724d7cd2aefb968ad 100644 (file)
@@ -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';
 }