diff options
author | James Laird <jlaird@hdfgroup.org> | 2004-07-23 17:29:16 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2004-07-23 17:29:16 (GMT) |
commit | 375f0745a7a07cf430d92a755297e372b3a4b420 (patch) | |
tree | 9bb35f5eff95aa772729865941c13c579e1eed59 /src/H5config.h.in | |
parent | 48e8092c66c7d637d6b6975e4985aa26604f6228 (diff) | |
download | hdf5-375f0745a7a07cf430d92a755297e372b3a4b420.zip hdf5-375f0745a7a07cf430d92a755297e372b3a4b420.tar.gz hdf5-375f0745a7a07cf430d92a755297e372b3a4b420.tar.bz2 |
[svn-r8938]
Purpose:
Bug fix
Description:
Modification time test (mtime) would die silently on some systems. This is
because the code is very system-dependant (it relies on getting the current
time and the timezone from the OS).
Solution:
mtime test now uses TEST_ERROR macro to print "FAILED" and to output where the
failure occurred. Configure script is a little smarter about whether
gettimeofday() function returns the timezone correctly.
Further bugs will need to be addressed on a system-by-system basis.
Platforms tested:
sleipnir, arabica, verbena, copper, windows (VC7)
Diffstat (limited to 'src/H5config.h.in')
-rw-r--r-- | src/H5config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index 6695396..2a01753 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -377,6 +377,9 @@ /* Define if `__tm_gmtoff' is a member of `struct tm' */ #undef HAVE___TM_GMTOFF +/* Define if gettimeofday() populates the tz pointer passed in */ +#undef GETTIMEOFDAY_GIVES_TZ + /* Define if your system's `MPI_File_set_size' function works for files over 2GB. */ #undef MPI_FILE_SET_SIZE_BIG |