diff options
author | Andreas Schwab <schwab@suse.de> | 2008-06-03 16:09:01 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2008-06-03 16:09:01 +0000 |
commit | 362f44f2cf2bd8b45e892f6d85d1571ad2fd0edc (patch) | |
tree | 92baf5837c4b8eb9020e537774cd0f5ce43df751 | |
parent | f641e17bd4b3f86b2520dba6ca5359e2c250e287 (diff) | |
download | emacs-362f44f2cf2bd8b45e892f6d85d1571ad2fd0edc.tar.gz emacs-362f44f2cf2bd8b45e892f6d85d1571ad2fd0edc.tar.bz2 emacs-362f44f2cf2bd8b45e892f6d85d1571ad2fd0edc.zip |
Regenerate with fixed AC_FUNC_MKTIME.
-rwxr-xr-x | configure | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/configure b/configure index 6f3418942aa..0f6be9e82af 100755 --- a/configure +++ b/configure @@ -16893,6 +16893,7 @@ cat >>conftest.$ac_ext <<_ACEOF # endif #endif +#include <limits.h> #include <stdlib.h> #ifdef HAVE_UNISTD_H @@ -17041,12 +17042,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++) { @@ -17061,10 +17065,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 ()); |