diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2009-01-21 16:08:06 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2009-01-21 16:08:06 (GMT) |
commit | 45489e5daea8b155b5ffc6ea12aa3d69ab350820 (patch) | |
tree | 6f9cf22d6d992965591daf49e38d7a8926692cbc | |
parent | 22228e6f65202a8891a825f6b1045910b06bd3b9 (diff) | |
download | hdf5-45489e5daea8b155b5ffc6ea12aa3d69ab350820.zip hdf5-45489e5daea8b155b5ffc6ea12aa3d69ab350820.tar.gz hdf5-45489e5daea8b155b5ffc6ea12aa3d69ab350820.tar.bz2 |
[svn-r16335] Added the definitions for the new macros H5_HAVE_C99_DESIGNATED_INITIALIZER and H5_HAVE_C99_FUNC.
I tested them for v1.8. I simply added them by hand for v1.9 for now. I'll test them later.
-rw-r--r-- | vms/src/h5pubconf.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/vms/src/h5pubconf.h b/vms/src/h5pubconf.h index ea8fdaf..aec0d79 100644 --- a/vms/src/h5pubconf.h +++ b/vms/src/h5pubconf.h @@ -1,4 +1,3 @@ - /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * @@ -100,6 +99,13 @@ /* Define to 1 if you have the `fseek64' function. */ /* #undef H5_HAVE_FSEEK64 */ +/* Define if the compiler understands C99 designated initialization of structs + and unions */ +#define H5_HAVE_C99_DESIGNATED_INITIALIZER 1 + +/* Define if the compiler understands the __func__ keyword */ +#define H5_HAVE_C99_FUNC 1 + /* Define if the function stack tracing code is to be compiled in */ /*#define H5_HAVE_CODESTACK 1*/ |