diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/configure b/configure index c91f6431e04..93705b78155 100755 --- a/configure +++ b/configure @@ -11317,7 +11317,6 @@ if test "${HAVE_GTK}" = "yes"; then with_toolkit_scroll_bars=yes fi - HAVE_GTK_MULTIDISPLAY=no for ac_func in gdk_display_open do @@ -11419,6 +11418,7 @@ cat >>confdefs.h <<\_ACEOF _ACEOF fi + HAVE_GTK_FILE_SELECTION=no for ac_func in gtk_file_selection_new @@ -18313,11 +18313,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; } @@ -18357,11 +18359,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; } |