diff options
| author | Chong Yidong | 2008-07-25 17:49:55 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-07-25 17:49:55 +0000 |
| commit | 5acf240e321b3d0358f21ee5cb1fad21f2bb681a (patch) | |
| tree | 7f09e7056d78d86ada6941b002742f4fe6c91bf3 | |
| parent | 807e26713a3b5a62aaabbbc918ef5d8925230434 (diff) | |
| download | emacs-5acf240e321b3d0358f21ee5cb1fad21f2bb681a.tar.gz emacs-5acf240e321b3d0358f21ee5cb1fad21f2bb681a.zip | |
Regenerate.
| -rwxr-xr-x | configure | 15 |
1 files changed, 10 insertions, 5 deletions
| @@ -16387,11 +16387,12 @@ done | |||
| 16387 | 16387 | ||
| 16388 | 16388 | ||
| 16389 | 16389 | ||
| 16390 | |||
| 16390 | for ac_func in gethostname getdomainname dup2 \ | 16391 | for ac_func in gethostname getdomainname dup2 \ |
| 16391 | rename closedir mkdir rmdir sysinfo getrusage get_current_dir_name \ | 16392 | rename closedir mkdir rmdir sysinfo getrusage get_current_dir_name \ |
| 16392 | random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime setsid \ | 16393 | random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime setsid \ |
| 16393 | strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \ | 16394 | strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \ |
| 16394 | utimes setrlimit setpgid getcwd getwd shutdown getaddrinfo \ | 16395 | utimes getrlimit setrlimit setpgid getcwd getwd shutdown getaddrinfo \ |
| 16395 | __fpending mblen mbrlen mbsinit strsignal setitimer ualarm index rindex \ | 16396 | __fpending mblen mbrlen mbsinit strsignal setitimer ualarm index rindex \ |
| 16396 | sendto recvfrom getsockopt setsockopt getsockname getpeername \ | 16397 | sendto recvfrom getsockopt setsockopt getsockname getpeername \ |
| 16397 | gai_strerror mkstemp getline getdelim mremap memmove fsync sync bzero \ | 16398 | gai_strerror mkstemp getline getdelim mremap memmove fsync sync bzero \ |
| @@ -18997,11 +18998,13 @@ _ACEOF | |||
| 18997 | cat confdefs.h >>conftest.$ac_ext | 18998 | cat confdefs.h >>conftest.$ac_ext |
| 18998 | cat >>conftest.$ac_ext <<_ACEOF | 18999 | cat >>conftest.$ac_ext <<_ACEOF |
| 18999 | /* end confdefs.h. */ | 19000 | /* end confdefs.h. */ |
| 19000 | #include <stdio.h> | 19001 | #include <sys/types.h> /* for off_t */ |
| 19002 | #include <stdio.h> | ||
| 19001 | int | 19003 | int |
| 19002 | main () | 19004 | main () |
| 19003 | { | 19005 | { |
| 19004 | return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); | 19006 | int (*fp) (FILE *, off_t, int) = fseeko; |
| 19007 | return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); | ||
| 19005 | ; | 19008 | ; |
| 19006 | return 0; | 19009 | return 0; |
| 19007 | } | 19010 | } |
| @@ -19041,11 +19044,13 @@ cat confdefs.h >>conftest.$ac_ext | |||
| 19041 | cat >>conftest.$ac_ext <<_ACEOF | 19044 | cat >>conftest.$ac_ext <<_ACEOF |
| 19042 | /* end confdefs.h. */ | 19045 | /* end confdefs.h. */ |
| 19043 | #define _LARGEFILE_SOURCE 1 | 19046 | #define _LARGEFILE_SOURCE 1 |
| 19044 | #include <stdio.h> | 19047 | #include <sys/types.h> /* for off_t */ |
| 19048 | #include <stdio.h> | ||
| 19045 | int | 19049 | int |
| 19046 | main () | 19050 | main () |
| 19047 | { | 19051 | { |
| 19048 | return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); | 19052 | int (*fp) (FILE *, off_t, int) = fseeko; |
| 19053 | return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); | ||
| 19049 | ; | 19054 | ; |
| 19050 | return 0; | 19055 | return 0; |
| 19051 | } | 19056 | } |