From: Vincent Pit Date: Wed, 27 Jul 2011 15:50:25 +0000 (+0200) Subject: Remove remaining occurences of $^V X-Git-Tag: v0.25~3 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=fd559a2c26feca7160eadc82519b7377740d1959 Remove remaining occurences of $^V --- diff --git a/Makefile.PL b/Makefile.PL index 1f7e5c8..4b3e9fe 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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'; }