summaryrefslogtreecommitdiffstats
path: root/src/H5public.h
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-04-08 02:42:53 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-04-08 02:42:53 (GMT)
commita756f0e0c9bdabcef789d9f1731d4af6aad46a00 (patch)
tree53d74688686ee4fa59a11b902e5e007be2781cf5 /src/H5public.h
parent321fa0f5a945de9d2646683191689e53d05cc134 (diff)
downloadhdf5-a756f0e0c9bdabcef789d9f1731d4af6aad46a00.zip
hdf5-a756f0e0c9bdabcef789d9f1731d4af6aad46a00.tar.gz
hdf5-a756f0e0c9bdabcef789d9f1731d4af6aad46a00.tar.bz2
[svn-r3790] Purpose:
Improvment Description: H5config.h and H5pubconf.h are generated by configure. It does not have the #ifndef _H5config_H ... #endif guard to prevent duplicated definitions if it is included more than once. It is messy to try make configure to put in those guards. Solution: HDF5 has set an internal rule that H5public.h includes H5pubconf.h and H5private.h includes H5config.h. Source files should NOT include H5config.h or H5pubconf.h directly but include it via H5public.h or H5private.h respectively. The #ifndef ... #endif in the H5public.h and H5private.h would prevent repeated definitions from repeated include. Adjusted H5FDstream.c and H5FDstream.h to follow this rule. Platforms tested: modi4, eirene.
Diffstat (limited to 'src/H5public.h')
-rw-r--r--src/H5public.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/H5public.h b/src/H5public.h
index 4b038e1..a494571 100644
--- a/src/H5public.h
+++ b/src/H5public.h
@@ -20,6 +20,14 @@
#define _H5public_H
/* Include files for public use... */
+/*
+ * Since H5pubconf.h is a generated header file, it is messy to try
+ * to put a #ifndef _H5pubconf_H ... #endif guard in it.
+ * HDF5 has set an internal rule that it is being included here.
+ * Source files should NOT include H5pubconf.h directly but include
+ * it via H5public.h. The #ifndef _H5public_H guard above would
+ * prevent repeated include.
+ */
#include <H5pubconf.h> /*from configure */
#include <sys/types.h>
#ifdef H5_STDC_HEADERS