aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorEric S. Raymond2007-10-10 13:17:53 +0000
committerEric S. Raymond2007-10-10 13:17:53 +0000
commitd7b60083ce07eb9d4af2bdb97c1062e42445f395 (patch)
treed2f4e53f66b9423c908fb25c828f6fac24347352 /configure
parent84062ef1fea8e708c12a0e087c48b9e589690a99 (diff)
downloademacs-d7b60083ce07eb9d4af2bdb97c1062e42445f395.tar.gz
emacs-d7b60083ce07eb9d4af2bdb97c1062e42445f395.zip
Merge in new VC with filesets.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 8 insertions, 4 deletions
diff --git a/configure b/configure
index e90fb524bb5..0a1a0cc97ed 100755
--- a/configure
+++ b/configure
@@ -18532,11 +18532,13 @@ _ACEOF
18532cat confdefs.h >>conftest.$ac_ext 18532cat confdefs.h >>conftest.$ac_ext
18533cat >>conftest.$ac_ext <<_ACEOF 18533cat >>conftest.$ac_ext <<_ACEOF
18534/* end confdefs.h. */ 18534/* end confdefs.h. */
18535#include <stdio.h> 18535#include <sys/types.h> /* for off_t */
18536 #include <stdio.h>
18536int 18537int
18537main () 18538main ()
18538{ 18539{
18539return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); 18540int (*fp) (FILE *, off_t, int) = fseeko;
18541 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
18540 ; 18542 ;
18541 return 0; 18543 return 0;
18542} 18544}
@@ -18576,11 +18578,13 @@ cat confdefs.h >>conftest.$ac_ext
18576cat >>conftest.$ac_ext <<_ACEOF 18578cat >>conftest.$ac_ext <<_ACEOF
18577/* end confdefs.h. */ 18579/* end confdefs.h. */
18578#define _LARGEFILE_SOURCE 1 18580#define _LARGEFILE_SOURCE 1
18579#include <stdio.h> 18581#include <sys/types.h> /* for off_t */
18582 #include <stdio.h>
18580int 18583int
18581main () 18584main ()
18582{ 18585{
18583return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); 18586int (*fp) (FILE *, off_t, int) = fseeko;
18587 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
18584 ; 18588 ;
18585 return 0; 18589 return 0;
18586} 18590}