From 21e967fcac89182e1a18157b62c30fc95939493d Mon Sep 17 00:00:00 2001 From: Radim Kolar <> Date: Sun, 14 Jun 2009 13:09:21 +0200 Subject: [PATCH] Correct test for native largefile64 checking in configure.ac. Instead of AC_FUNC_FSEEKO use AC_CHECK_FUNCS. Newer autotools is doing that test in different way --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 10237df..086dcf7 100644 --- a/configure.ac +++ b/configure.ac @@ -104,7 +104,7 @@ AC_CHECK_SIZEOF(long) AC_CHECK_SIZEOF(char) AC_CHECK_SIZEOF(void) AC_SYS_LARGEFILE -AC_FUNC_FSEEKO +AC_CHECK_FUNCS(fseeko) AC_CHECK_SIZEOF(off_t) if test $ac_cv_sizeof_off_t -ge 8 -a "x$ac_cv_func_fseeko" = xyes; then AC_DEFINE(NATIVE_LARGEFILES,1,[Define if we have 64bit off_t and fseeko])