aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2008-07-25 17:51:06 +0000
committerChong Yidong2008-07-25 17:51:06 +0000
commit50e682b90812e7c8f740b742bffc51a14769ae85 (patch)
tree0a53faf61c964a4068772433919322721593be75
parent86e922b7f0a026f5498bef2657d60fd4e8c8f94e (diff)
downloademacs-50e682b90812e7c8f740b742bffc51a14769ae85.tar.gz
emacs-50e682b90812e7c8f740b742bffc51a14769ae85.zip
Regenerate.
-rwxr-xr-xconfigure12
1 files changed, 8 insertions, 4 deletions
diff --git a/configure b/configure
index a7fc6a955c8..aa142de624e 100755
--- a/configure
+++ b/configure
@@ -18086,11 +18086,13 @@ _ACEOF
18086cat confdefs.h >>conftest.$ac_ext 18086cat confdefs.h >>conftest.$ac_ext
18087cat >>conftest.$ac_ext <<_ACEOF 18087cat >>conftest.$ac_ext <<_ACEOF
18088/* end confdefs.h. */ 18088/* end confdefs.h. */
18089#include <stdio.h> 18089#include <sys/types.h> /* for off_t */
18090 #include <stdio.h>
18090int 18091int
18091main () 18092main ()
18092{ 18093{
18093return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); 18094int (*fp) (FILE *, off_t, int) = fseeko;
18095 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
18094 ; 18096 ;
18095 return 0; 18097 return 0;
18096} 18098}
@@ -18130,11 +18132,13 @@ cat confdefs.h >>conftest.$ac_ext
18130cat >>conftest.$ac_ext <<_ACEOF 18132cat >>conftest.$ac_ext <<_ACEOF
18131/* end confdefs.h. */ 18133/* end confdefs.h. */
18132#define _LARGEFILE_SOURCE 1 18134#define _LARGEFILE_SOURCE 1
18133#include <stdio.h> 18135#include <sys/types.h> /* for off_t */
18136 #include <stdio.h>
18134int 18137int
18135main () 18138main ()
18136{ 18139{
18137return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); 18140int (*fp) (FILE *, off_t, int) = fseeko;
18141 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
18138 ; 18142 ;
18139 return 0; 18143 return 0;
18140} 18144}