summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1999-11-16 19:08:14 (GMT)
committerRobb Matzke <matzke@llnl.gov>1999-11-16 19:08:14 (GMT)
commit4b2dbd56519082544a101a54b43b17376d82fc5c (patch)
treeff0dc4040d69c8525f3f3e73c0e7dab30b331280 /tools
parentd78a1e0f04e18f0b9a3e352d1d386f7b17c85bc8 (diff)
downloadhdf5-4b2dbd56519082544a101a54b43b17376d82fc5c.zip
hdf5-4b2dbd56519082544a101a54b43b17376d82fc5c.tar.gz
hdf5-4b2dbd56519082544a101a54b43b17376d82fc5c.tar.bz2
[svn-r1832] * 1999-11-16
** configure.in ** configure [REGENERATED] ** src/H5private.h ** src/H5public.h ** src/Makefile.in Generates an H5pubconf.h file which is just like H5config.h except all the preprocessor symbols have `H5_' prepended. This was done so that the configuration results can be used in public header files without polluting the namespace. ** src/H5.c Added H5I_REFERENCE and H5I_VFL to the API tracing code so their names are printed instead of just numbers. ** src/H5FDstdio.c ** tools/h5import.c ** tools/h5repart.c ** tools/pdb2hdf.c Changed to use the `H5_' versions of configure results since these files include only the public API. ** test/big.c Removed a compiler warning. ** test/h5test.c Removed unused code.
Diffstat (limited to 'tools')
-rw-r--r--tools/h5import.c6
-rw-r--r--tools/h5repart.c6
-rw-r--r--tools/pdb2hdf.c2
3 files changed, 7 insertions, 7 deletions
diff --git a/tools/h5import.c b/tools/h5import.c
index 9b485c1..53fae0b 100644
--- a/tools/h5import.c
+++ b/tools/h5import.c
@@ -10,19 +10,19 @@
/* See H5private.h for how to include system headers */
#include <hdf5.h>
-#ifdef STDC_HEADERS
+#ifdef H5_STDC_HEADERS
# include <fcntl.h>
# include <string.h>
# include <stdlib.h>
# include <stdio.h>
#endif
-#ifdef HAVE_UNISTD_H
+#ifdef H5_HAVE_UNISTD_H
# include <sys/types.h>
# include <unistd.h>
#endif
-#ifdef HAVE_SYS_STAT_H
+#ifdef H5_HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
diff --git a/tools/h5repart.c b/tools/h5repart.c
index 077ca73..6704f38 100644
--- a/tools/h5repart.c
+++ b/tools/h5repart.c
@@ -14,7 +14,7 @@
/* See H5private.h for how to include system headers */
#include <hdf5.h>
-#ifdef STDC_HEADERS
+#ifdef H5_STDC_HEADERS
# include <ctype.h>
# include <errno.h>
# include <fcntl.h>
@@ -23,12 +23,12 @@
# include <string.h>
#endif
-#ifdef HAVE_UNISTD_H
+#ifdef H5_HAVE_UNISTD_H
# include <sys/types.h>
# include <unistd.h>
#endif
-#ifdef HAVE_SYS_STAT_H
+#ifdef H5_HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
diff --git a/tools/pdb2hdf.c b/tools/pdb2hdf.c
index a28f5b7..fd16202 100644
--- a/tools/pdb2hdf.c
+++ b/tools/pdb2hdf.c
@@ -21,7 +21,7 @@
* their documented names, so we have #define's to translate them to Silo
* terminology.
*/
-#ifdef HAVE_LIBSILO
+#ifdef H5_HAVE_LIBSILO
# define PD_open lite_PD_open
# define PD_close lite_PD_close
# define PD_ls lite_PD_ls