Mercurial > emacs
diff configure @ 83566:ddc474387d53
Import arch branch emacs@sv.gnu.org/emacs--multi-tty--0
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sun, 13 May 2007 13:26:57 +0000 |
parents | 41aaac7180d5 |
children | 0a3247aa24a4 |
line wrap: on
line diff
--- a/configure Fri May 11 04:44:30 2007 +0000 +++ b/configure Sun May 13 13:26:57 2007 +0000 @@ -11172,7 +11172,6 @@ with_toolkit_scroll_bars=yes fi - HAVE_GTK_MULTIDISPLAY=no for ac_func in gdk_display_open do @@ -11274,6 +11273,7 @@ _ACEOF fi + HAVE_GTK_FILE_SELECTION=no for ac_func in gtk_file_selection_new @@ -17907,11 +17907,13 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include <stdio.h> -int -main () -{ -return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); +#include <sys/types.h> /* for off_t */ + #include <stdio.h> +int +main () +{ +int (*fp) (FILE *, off_t, int) = fseeko; + return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); ; return 0; } @@ -17951,11 +17953,13 @@ cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #define _LARGEFILE_SOURCE 1 -#include <stdio.h> -int -main () -{ -return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); +#include <sys/types.h> /* for off_t */ + #include <stdio.h> +int +main () +{ +int (*fp) (FILE *, off_t, int) = fseeko; + return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); ; return 0; }