diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-01-14 14:01:12 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-01-14 14:01:12 (GMT) |
commit | 60915ff8aaa392bebd82826b5b95ab741fedd832 (patch) | |
tree | 0b523fbcdd8db22e7146147a0e19ca40cdca02fd /src/H5config.h.in | |
parent | bbd83d97e03960839804ef3c87eb6c17fb940acd (diff) | |
download | hdf5-60915ff8aaa392bebd82826b5b95ab741fedd832.zip hdf5-60915ff8aaa392bebd82826b5b95ab741fedd832.tar.gz hdf5-60915ff8aaa392bebd82826b5b95ab741fedd832.tar.bz2 |
[svn-r16307] Description:
Bring r16306 back from trunk:
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 revise_chunks branch)
Diffstat (limited to 'src/H5config.h.in')
-rw-r--r-- | src/H5config.h.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index 82a8c6d..1c70790 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -58,6 +58,13 @@ /* Define to 1 if you have the `BSDgettimeofday' function. */ #undef HAVE_BSDGETTIMEOFDAY +/* 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 */ #undef HAVE_CODESTACK @@ -122,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. */ |