diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2002-06-13 22:44:32 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2002-06-13 22:44:32 (GMT) |
commit | 08e9bf64bedbb0ab900784b0c26e9112cedb6ee2 (patch) | |
tree | b80dc61b9b993e763ff1bf5d8bf88b640c5c241b | |
parent | 9cee5851f32106f733589ff0fd7573ac4fed297d (diff) | |
download | hdf5-08e9bf64bedbb0ab900784b0c26e9112cedb6ee2.zip hdf5-08e9bf64bedbb0ab900784b0c26e9112cedb6ee2.tar.gz hdf5-08e9bf64bedbb0ab900784b0c26e9112cedb6ee2.tar.bz2 |
[svn-r5630]
Purpose:
[is this a bug fix? feature? ...]
Description:
[describe the bug, or describe the new feature, etc]
Solution:
[details about the changes, algorithm, etc...]
[Please as detail as you can since your own explanation is
better than others guessing it from the code.]
Platforms tested:
[machines you have tested the changed version. This is absolute
important. Test it out on at least two or three different platforms
such as Big-endian-32bit (SUN/IRIX), little-endian-32(LINUX) and
64-bit (IRIX64/UNICOS/DEC-ALPHA) would be good.]
-rw-r--r-- | src/H5config.h.in | 3 | ||||
-rw-r--r-- | src/H5public.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index 2b287ec..46dd706 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -464,3 +464,6 @@ /* Define to `long' if <sys/types.h> does not define. */ #undef ssize_t + +/* Define if you have the <inttypes.h> header file. */ +#undef HAVE_INTTYPES_H diff --git a/src/H5public.h b/src/H5public.h index 42e8ee3..21169ec 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -42,6 +42,9 @@ #ifdef H5_HAVE_STDINT_H # include <stdint.h> /*for C9x types */ #endif +#ifdef H5_HAVE_INTTYPES_H +# include <inttypes.h> /* For uint64_t on some platforms */ +#endif #ifdef H5_HAVE_STDDEF_H # include <stddef.h> #endif |