diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 2007-10-10 13:17:53 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 2007-10-10 13:17:53 +0000 |
commit | d7b60083ce07eb9d4af2bdb97c1062e42445f395 (patch) | |
tree | d2f4e53f66b9423c908fb25c828f6fac24347352 /configure | |
parent | 84062ef1fea8e708c12a0e087c48b9e589690a99 (diff) | |
download | emacs-d7b60083ce07eb9d4af2bdb97c1062e42445f395.tar.gz |
Merge in new VC with filesets.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
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 cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include <stdio.h> +#include <sys/types.h> /* for off_t */ + #include <stdio.h> int main () { -return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); +int (*fp) (FILE *, off_t, int) = fseeko; + return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); ; return 0; } @@ -18576,11 +18578,13 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #define _LARGEFILE_SOURCE 1 -#include <stdio.h> +#include <sys/types.h> /* for off_t */ + #include <stdio.h> int main () { -return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); +int (*fp) (FILE *, off_t, int) = fseeko; + return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); ; return 0; } |