From c12bf8692c3342750af877ab8eb3ebb95b2a142e Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Sat, 8 Nov 2008 10:49:16 +0000 Subject: [PATCH] used autoconf 2.61 git-svn-id: file:///svn/unbound/trunk@1340 be551aaa-1e26-0410-a405-d3ace91eadb9 --- configure | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/configure b/configure index 8def47448..bbce39e6c 100755 --- a/configure +++ b/configure @@ -24305,13 +24305,11 @@ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include /* for off_t */ - #include +#include int main () { -int (*fp) (FILE *, off_t, int) = fseeko; - return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); +return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); ; return 0; } @@ -24351,13 +24349,11 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #define _LARGEFILE_SOURCE 1 -#include /* for off_t */ - #include +#include int main () { -int (*fp) (FILE *, off_t, int) = fseeko; - return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); +return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); ; return 0; }