Change 34444 by [EMAIL PROTECTED] on 2008/09/29 16:56:12

        A builtin hard upper bound for sLOCALTIME_max to prevent AIX
        from stalling in the tests

Affected files ...

... //depot/perl/Configure#705 edit

Differences ...

==== //depot/perl/Configure#705 (xtext) ====
Index: perl/Configure
--- perl/Configure#704~34443~   2008-09-29 09:15:52.000000000 -0700
+++ perl/Configure      2008-09-29 09:56:12.000000000 -0700
@@ -25,7 +25,7 @@
 
 # $Id: Head.U 6 2006-08-25 22:21:46Z rmanfredi $
 #
-# Generated on Mon Sep 29 18:14:44 CEST 2008 [metaconfig 3.5 PL0]
+# Generated on Mon Sep 29 18:55:08 CEST 2008 [metaconfig 3.5 PL0]
 # (with additional metaconfig patches by [EMAIL PROTECTED])
 
 cat >c1$$ <<EOF
@@ -20122,7 +20122,10 @@
 
 void local_check (time_t t)
 {
-    tmp = localtime (&t);
+    if (sizeof (time_t) > 4 && t > 0x7ffffffffffff000LL)
+       tmp = NULL;
+    else
+       tmp = localtime (&t);
     if (tmp == NULL || tmp->tm_year < -1900)
        tmp = NULL;
     else
End of Patch.

Reply via email to