diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-01-14 13:09:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-01-14 13:09:42 (GMT) |
commit | a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e (patch) | |
tree | a99fc3c171fc1fd0080f8ca9519e907450fba744 /src/H5config.h.in | |
parent | 84a14c0f25b52a9bba1e2be59051b18cb0317b15 (diff) | |
download | hdf5-a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e.zip hdf5-a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e.tar.gz hdf5-a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e.tar.bz2 |
[svn-r16306] Description:
Bring r16305 back from revise_chunks branch:
Add detection of C99 "designated initializers" to configure script and
use new H5_HAVE_C99_DESIGNATED_INITIALIZER macro to conditionally compile
default layout variables in src/H5Pdcpl.c
Also, minor code cleanups, etc.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
(Other platforms tested on branch)
Diffstat (limited to 'src/H5config.h.in')
-rw-r--r-- | src/H5config.h.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index 1436211..1c70790 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -58,7 +58,11 @@ /* Define to 1 if you have the `BSDgettimeofday' function. */ #undef HAVE_BSDGETTIMEOFDAY -/* Define if the compiler understand the __func__ keyword */ +/* Define if the compiler understands C99 designated initialization of structs + and unions */ +#undef HAVE_C99_DESIGNATED_INITIALIZER + +/* Define if the compiler understands the __func__ keyword */ #undef HAVE_C99_FUNC /* Define if the function stack tracing code is to be compiled in */ @@ -125,7 +129,7 @@ /* Define to 1 if you have the `ftruncate64' function. */ #undef HAVE_FTRUNCATE64 -/* Define if the compiler understand the __FUNCTION__ keyword */ +/* Define if the compiler understands the __FUNCTION__ keyword */ #undef HAVE_FUNCTION /* Define to 1 if you have the `GetConsoleScreenBufferInfo' function. */ |