From: Stefan Monnier Date: Fri, 20 Jun 2008 18:18:40 +0000 (+0000) Subject: Update. X-Git-Tag: emacs-pretest-23.0.90~4631 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2d3c36ae18eb9615d74f2fba7ade854503130015;p=emacs.git Update. --- diff --git a/configure b/configure index 0f6be9e82af..457cc2c911c 100755 --- a/configure +++ b/configure @@ -16361,6 +16361,8 @@ done + + @@ -16372,7 +16374,8 @@ utimes setrlimit setpgid getcwd getwd shutdown getaddrinfo \ __fpending mblen mbrlen mbsinit strsignal setitimer ualarm index rindex \ sendto recvfrom getsockopt setsockopt getsockname getpeername \ gai_strerror mkstemp getline getdelim mremap memmove fsync sync bzero \ -memset memcmp difftime memcpy mempcpy mblen mbrlen posix_memalign +memset memcmp difftime memcpy mempcpy mblen mbrlen posix_memalign \ +cfmakeraw cfsetspeed do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_func" >&5 @@ -18979,11 +18982,13 @@ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include +#include /* for off_t */ + #include 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; } @@ -19023,11 +19028,13 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #define _LARGEFILE_SOURCE 1 -#include +#include /* for off_t */ + #include 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; } diff --git a/src/config.in b/src/config.in index fddef837b18..ae2a24dc46a 100644 --- a/src/config.in +++ b/src/config.in @@ -106,6 +106,12 @@ along with GNU Emacs. If not, see . */ /* Define to 1 if you have the `cbrt' function. */ #undef HAVE_CBRT +/* Define to 1 if you have the `cfmakeraw' function. */ +#undef HAVE_CFMAKERAW + +/* Define to 1 if you have the `cfsetspeed' function. */ +#undef HAVE_CFSETSPEED + /* Define to 1 if you have the `closedir' function. */ #undef HAVE_CLOSEDIR