diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2010-07-30 20:06:16 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2010-07-30 20:06:16 (GMT) |
commit | 02e41acebb23cbadff89a4488329578536adef32 (patch) | |
tree | 9c1efde9f34d90d871a755f05e5d3ae4767515a2 /configure.in | |
parent | eff803f8249485e8b1fdb5c71197314f0527c995 (diff) | |
download | hdf5-02e41acebb23cbadff89a4488329578536adef32.zip hdf5-02e41acebb23cbadff89a4488329578536adef32.tar.gz hdf5-02e41acebb23cbadff89a4488329578536adef32.tar.bz2 |
[svn-r19160] Added the tests for fseeko64 and ftello64 which will be used by the STDIO
VFD if they are available.
Tested: jam only since it was tests for two new functions that are not used by
the code yet.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index cd99740..2961f38 100644 --- a/configure.in +++ b/configure.in @@ -1341,7 +1341,7 @@ AC_TRY_COMPILE([#include <sys/types.h>], [off64_t n = 0;], [AC_CHECK_FUNCS([lseek64 fseek64 ftruncate64])], [AC_MSG_RESULT([skipping test for lseek64(), fseek64(), ftruncate64()])]) -AC_CHECK_FUNCS(fseeko ftello) +AC_CHECK_FUNCS(fseeko fseeko64 ftello ftello64) AC_TRY_COMPILE([ #include <sys/types.h> #include <sys/stat.h>], |