diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2010-07-30 20:05:25 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2010-07-30 20:05:25 (GMT) |
commit | 8dc3f63a871d652712a0e82d71bc6d10dace9fcd (patch) | |
tree | f333de7328ee05b261a8d6d4432f8135bdd295ac /src | |
parent | 77b2235f8b22754fb44418fa9fbb499c245c1088 (diff) | |
download | hdf5-8dc3f63a871d652712a0e82d71bc6d10dace9fcd.zip hdf5-8dc3f63a871d652712a0e82d71bc6d10dace9fcd.tar.gz hdf5-8dc3f63a871d652712a0e82d71bc6d10dace9fcd.tar.bz2 |
[svn-r19159] 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 'src')
-rw-r--r-- | src/H5config.h.in | 6 | ||||
-rw-r--r-- | src/Makefile.in | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index 20db6ab..f69bc7e 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -130,12 +130,18 @@ /* Define to 1 if you have the `fseeko' function. */ #undef HAVE_FSEEKO +/* Define to 1 if you have the `fseeko64' function. */ +#undef HAVE_FSEEKO64 + /* Define to 1 if you have the `fstat64' function. */ #undef HAVE_FSTAT64 /* Define to 1 if you have the `ftello' function. */ #undef HAVE_FTELLO +/* Define to 1 if you have the `ftello64' function. */ +#undef HAVE_FTELLO64 + /* Define to 1 if you have the `ftruncate64' function. */ #undef HAVE_FTRUNCATE64 diff --git a/src/Makefile.in b/src/Makefile.in index 1084d3f..0926574 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -118,8 +118,8 @@ am_libhdf5_la_OBJECTS = H5.lo H5checksum.lo H5dbg.lo H5system.lo \ H5HFdtable.lo H5HFhdr.lo H5HFhuge.lo H5HFiblock.lo H5HFiter.lo \ H5HFman.lo H5HFsection.lo H5HFspace.lo H5HFstat.lo H5HFtest.lo \ H5HFtiny.lo H5HG.lo H5HGcache.lo H5HGdbg.lo H5HL.lo \ - H5HLcache.lo H5HLdbg.lo H5HLint.lo H5HP.lo H5I.lo H5Itest.lo H5L.lo \ - H5Lexternal.lo H5lib_settings.lo H5MF.lo H5MFaggr.lo \ + H5HLcache.lo H5HLdbg.lo H5HLint.lo H5HP.lo H5I.lo H5Itest.lo \ + H5L.lo H5Lexternal.lo H5lib_settings.lo H5MF.lo H5MFaggr.lo \ H5MFdbg.lo H5MFsection.lo H5MM.lo H5MP.lo H5MPtest.lo H5O.lo \ H5Oainfo.lo H5Oalloc.lo H5Oattr.lo H5Oattribute.lo H5Obogus.lo \ H5Obtreek.lo H5Ocache.lo H5Ochunk.lo H5Ocont.lo H5Ocopy.lo \ |