]> git.vpit.fr Git - perl/modules/indirect.git/blobdiff - Makefile.PL
Remove remaining occurences of $^V
[perl/modules/indirect.git] / Makefile.PL
index 1f7e5c87be2d24bca3da7c72613154131fb18c14..4b3e9fe45dff3b5aa46103e807acd415aad1798e 100644 (file)
@@ -7,12 +7,12 @@ use ExtUtils::MakeMaker;
 my @DEFINES;
 
 # Threads, Windows and 5.8.x don't seem to be best friends
-if ($^O eq 'MSWin32' && $^V lt v5.9.0) {
+if ($^O eq 'MSWin32' and "$]" < 5.009) {
  push @DEFINES, '-DI_MULTIPLICITY=0';
 }
 
 # Fork emulation got "fixed" in 5.10.1
-if ($^O eq 'MSWin32' && $^V lt v5.10.1) {
+if ($^O eq 'MSWin32' and "$]" < 5.010_001) {
  push @DEFINES, '-DI_FORKSAFE=0';
 }