summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2008-07-15 23:00:44 +0000
committerAndreas Schwab <schwab@suse.de>2008-07-15 23:00:44 +0000
commit209a0f5ec0d954e81ecb681bbe44f1c63d5ed9d3 (patch)
tree1554796c62028bc995b319c41eab0a3633be83e5 /configure
parent6ddc6ccab44463c82d4ace77825affc40bc8321a (diff)
downloademacs-209a0f5ec0d954e81ecb681bbe44f1c63d5ed9d3.tar.gz
Regenerate with fixed AC_FUNC_MKTIME.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure22
1 files changed, 14 insertions, 8 deletions
diff --git a/configure b/configure
index 4b0b0848cc1..54ece25cda9 100755
--- a/configure
+++ b/configure
@@ -16933,6 +16933,7 @@ cat >>conftest.$ac_ext <<_ACEOF
# endif
#endif
+#include <limits.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
@@ -17081,12 +17082,15 @@ main ()
isn't worth using anyway. */
alarm (60);
- for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2)
- continue;
- time_t_max--;
- if ((time_t) -1 < 0)
- for (time_t_min = -1; (time_t) (time_t_min * 2) < 0; time_t_min *= 2)
- continue;
+ for (;;)
+ {
+ t = (time_t_max << 1) + 1;
+ if (t <= time_t_max)
+ break;
+ time_t_max = t;
+ }
+ time_t_min = - ((time_t) ~ (time_t) 0 == (time_t) -1) - time_t_max;
+
delta = time_t_max / 997; /* a suitable prime number */
for (i = 0; i < N_STRINGS; i++)
{
@@ -17101,10 +17105,12 @@ main ()
&& mktime_test ((time_t) (60 * 60 * 24))))
return 1;
- for (j = 1; 0 < j; j *= 2)
+ for (j = 1; ; j <<= 1)
if (! bigtime_test (j))
return 1;
- if (! bigtime_test (j - 1))
+ else if (INT_MAX / 2 < j)
+ break;
+ if (! bigtime_test (INT_MAX))
return 1;
}
return ! (irix_6_4_bug () && spring_forward_gap () && year_2050_test ());