]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
Only enable VMG_COMPAT_ARRAY_PUSH_NOLEN for ActiveState's 5.8.[78] on Windows, as...
authorVincent Pit <vince@profvince.com>
Wed, 12 Nov 2008 18:58:03 +0000 (19:58 +0100)
committerVincent Pit <vince@profvince.com>
Wed, 12 Nov 2008 18:58:03 +0000 (19:58 +0100)
Makefile.PL

index cc205cb78a6f7369ed9e82eb3af02b66937d0fe8..76ac727f900ffd5cafadaa2546c7a330d342aaee 100644 (file)
@@ -23,8 +23,8 @@ if (defined $pl && length $pl) {
 }
 
 my $is_as = 0;
-print "Checking if this is Windows ActiveState 5.8.x... ";
-if ($^O eq 'MSWin32' && $^V ge v5.8.7 && $^V lt v5.9.0) {
+print "Checking if this is Windows ActiveState 5.8.[78]... ";
+if ($^O eq 'MSWin32' && $^V ge v5.8.7 && $^V lt v5.8.9) {
  eval {
   require Win32;
   1;