See comments at:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-08/msg00115.html
p4raw-id: //depot/perl@25287
$neg_epoch_ok = 0; # time_t is unsigned
}
+# Borland compiler sets $neg_epoch_ok differently depending on the
+# current Time Zone in use on the machine, but it should always be
+# set to 0.
+if ($^O eq 'MSWin32' and $Config{ccname} eq 'bcc32') {
+ $neg_epoch_ok = 0;
+}
+
my $tests = (@time * 12);
$tests += @neg_time * 12;
$tests += @bad_time;