diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-05-08 18:42:42 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-05-08 18:42:42 (GMT) |
commit | 93129f271e71e669a3218c93a71d361155cb4c7e (patch) | |
tree | 06d73ca87a56c4c5047408026374980197ed7af7 /src/H5config.h.in | |
parent | 4a72a04048b88c49a4bea654b5256aa6eaac2663 (diff) | |
download | hdf5-93129f271e71e669a3218c93a71d361155cb4c7e.zip hdf5-93129f271e71e669a3218c93a71d361155cb4c7e.tar.gz hdf5-93129f271e71e669a3218c93a71d361155cb4c7e.tar.bz2 |
[svn-r3892] Purpose:
Better Mouse Trap^W^WBug Fix
Description:
Instead of having the large file support stuff be in the
config/gnu-flags directory, I added it to the configure.in file so
that it first checks for the syscall ``getdents64()''. If it finds
it, then it removes the ``-malign-double'' flag if the GCC compiler
is 2.95.x since this flag doesn't play well with the LFS stuff.
Solution:
Added test for getdents64(), if found it removes the -malign-double
flag if the compiler is 2.95.x. This is done in the configure.in
file. The gnu-flags file is returned to normal. A new field is added
to the H5config.h.in file because of the getdents64 check.
Platforms tested:
Linux
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 ac0e50c..d61f9e3 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -227,6 +227,9 @@ /* Define if you have the fseek64 function. */ #undef HAVE_FSEEK64 +/* Define if you have the getdents64 function. */ +#undef HAVE_GETDENTS64 + /* Define if you have the gethostname function. */ #undef HAVE_GETHOSTNAME |