Skip test for changing TZ if running in a pseudo-fork (on Win32)
[p5sagit/p5-mst-13.2.git] / utils / perlivp.PL
index 544efa3..a862cee 100644 (file)
@@ -119,7 +119,7 @@ print "## Checking Perl version via variable `\$]'.\n" if $opt{'p'};
 !NO!SUBS!
 
 print OUT <<"!GROK!THIS!";
-my \$ivp_VERSION = $];
+my \$ivp_VERSION = "$]";
 
 !GROK!THIS!
 print OUT <<'!NO!SUBS!';
@@ -209,7 +209,7 @@ if (defined($Config{'extensions'})) {
             next if ($_ eq 'threads/shared');
         }
        # that's a distribution name, not a module name
-       next if $_ eq 'IO/Compress/Zlib';
+       next if /^IO_Compress_(?:Zlib|Base)$/;
         next if $_ eq 'Devel/DProf'; 
        # test modules
        next if $_ eq 'XS/APItest';