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 | 2924a0ae823676c4007fd0f9ca8d2243efe1ec01 (patch) | |
tree | 15a522206b4580042cf8ddaf3f14a573517e6e6d /configure | |
parent | 120490995ede786d8eb5de41295ca0038f473cef (diff) | |
download | emacs-2924a0ae823676c4007fd0f9ca8d2243efe1ec01.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; } |