aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Francoise2008-10-04 10:22:19 +0000
committerRomain Francoise2008-10-04 10:22:19 +0000
commit8801ee606dadf514617d1d44fdcb122a28c7e379 (patch)
tree01580585f2f4e6027b74c06ee98bfc0a9993685b
parente6f3e10423a495db8bd3a33e50f581d46b026452 (diff)
downloademacs-8801ee606dadf514617d1d44fdcb122a28c7e379.tar.gz
emacs-8801ee606dadf514617d1d44fdcb122a28c7e379.zip
Regenerate.
-rwxr-xr-xconfigure34
1 files changed, 22 insertions, 12 deletions
diff --git a/configure b/configure
index dfd5dc9572a..072df70e6a2 100755
--- a/configure
+++ b/configure
@@ -16660,6 +16660,7 @@ cat >>conftest.$ac_ext <<_ACEOF
16660# endif 16660# endif
16661#endif 16661#endif
16662 16662
16663#include <limits.h>
16663#include <stdlib.h> 16664#include <stdlib.h>
16664 16665
16665#ifdef HAVE_UNISTD_H 16666#ifdef HAVE_UNISTD_H
@@ -16808,12 +16809,15 @@ main ()
16808 isn't worth using anyway. */ 16809 isn't worth using anyway. */
16809 alarm (60); 16810 alarm (60);
16810 16811
16811 for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2) 16812 for (;;)
16812 continue; 16813 {
16813 time_t_max--; 16814 t = (time_t_max << 1) + 1;
16814 if ((time_t) -1 < 0) 16815 if (t <= time_t_max)
16815 for (time_t_min = -1; (time_t) (time_t_min * 2) < 0; time_t_min *= 2) 16816 break;
16816 continue; 16817 time_t_max = t;
16818 }
16819 time_t_min = - ((time_t) ~ (time_t) 0 == (time_t) -1) - time_t_max;
16820
16817 delta = time_t_max / 997; /* a suitable prime number */ 16821 delta = time_t_max / 997; /* a suitable prime number */
16818 for (i = 0; i < N_STRINGS; i++) 16822 for (i = 0; i < N_STRINGS; i++)
16819 { 16823 {
@@ -16828,10 +16832,12 @@ main ()
16828 && mktime_test ((time_t) (60 * 60 * 24)))) 16832 && mktime_test ((time_t) (60 * 60 * 24))))
16829 return 1; 16833 return 1;
16830 16834
16831 for (j = 1; 0 < j; j *= 2) 16835 for (j = 1; ; j <<= 1)
16832 if (! bigtime_test (j)) 16836 if (! bigtime_test (j))
16833 return 1; 16837 return 1;
16834 if (! bigtime_test (j - 1)) 16838 else if (INT_MAX / 2 < j)
16839 break;
16840 if (! bigtime_test (INT_MAX))
16835 return 1; 16841 return 1;
16836 } 16842 }
16837 return ! (irix_6_4_bug () && spring_forward_gap () && year_2050_test ()); 16843 return ! (irix_6_4_bug () && spring_forward_gap () && year_2050_test ());
@@ -18740,11 +18746,13 @@ _ACEOF
18740cat confdefs.h >>conftest.$ac_ext 18746cat confdefs.h >>conftest.$ac_ext
18741cat >>conftest.$ac_ext <<_ACEOF 18747cat >>conftest.$ac_ext <<_ACEOF
18742/* end confdefs.h. */ 18748/* end confdefs.h. */
18743#include <stdio.h> 18749#include <sys/types.h> /* for off_t */
18750 #include <stdio.h>
18744int 18751int
18745main () 18752main ()
18746{ 18753{
18747return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); 18754int (*fp) (FILE *, off_t, int) = fseeko;
18755 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
18748 ; 18756 ;
18749 return 0; 18757 return 0;
18750} 18758}
@@ -18784,11 +18792,13 @@ cat confdefs.h >>conftest.$ac_ext
18784cat >>conftest.$ac_ext <<_ACEOF 18792cat >>conftest.$ac_ext <<_ACEOF
18785/* end confdefs.h. */ 18793/* end confdefs.h. */
18786#define _LARGEFILE_SOURCE 1 18794#define _LARGEFILE_SOURCE 1
18787#include <stdio.h> 18795#include <sys/types.h> /* for off_t */
18796 #include <stdio.h>
18788int 18797int
18789main () 18798main ()
18790{ 18799{
18791return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); 18800int (*fp) (FILE *, off_t, int) = fseeko;
18801 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
18792 ; 18802 ;
18793 return 0; 18803 return 0;
18794} 18804}