From: Wouter Wijngaards Date: Sat, 8 Nov 2008 10:49:16 +0000 (+0000) Subject: used autoconf 2.61 X-Git-Tag: release-1.1.0~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c12bf8692c3342750af877ab8eb3ebb95b2a142e;p=thirdparty%2Funbound.git used autoconf 2.61 git-svn-id: file:///svn/unbound/trunk@1340 be551aaa-1e26-0410-a405-d3ace91eadb9 --- 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; }