diff options
| author | Eric S. Raymond | 2007-10-10 13:17:53 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 2007-10-10 13:17:53 +0000 |
| commit | d7b60083ce07eb9d4af2bdb97c1062e42445f395 (patch) | |
| tree | d2f4e53f66b9423c908fb25c828f6fac24347352 /configure | |
| parent | 84062ef1fea8e708c12a0e087c48b9e589690a99 (diff) | |
| download | emacs-d7b60083ce07eb9d4af2bdb97c1062e42445f395.tar.gz emacs-d7b60083ce07eb9d4af2bdb97c1062e42445f395.zip | |
Merge in new VC with filesets.
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 12 |
1 files changed, 8 insertions, 4 deletions
| @@ -18532,11 +18532,13 @@ _ACEOF | |||
| 18532 | cat confdefs.h >>conftest.$ac_ext | 18532 | cat confdefs.h >>conftest.$ac_ext |
| 18533 | cat >>conftest.$ac_ext <<_ACEOF | 18533 | cat >>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> | ||
| 18536 | int | 18537 | int |
| 18537 | main () | 18538 | main () |
| 18538 | { | 18539 | { |
| 18539 | return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); | 18540 | int (*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 | |||
| 18576 | cat >>conftest.$ac_ext <<_ACEOF | 18578 | cat >>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> | ||
| 18580 | int | 18583 | int |
| 18581 | main () | 18584 | main () |
| 18582 | { | 18585 | { |
| 18583 | return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); | 18586 | int (*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 | } |