summaryrefslogtreecommitdiffstats
path: root/src/H5Z.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2009-04-21 02:02:46 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2009-04-21 02:02:46 (GMT)
commit9bca9d684bd7d5179f30fb92afa9dee1e53f69cd (patch)
tree477a51a4748744a839ad3cab9a7c8420a8ba5095 /src/H5Z.c
parentc60f5a8429f47fd8f0b013dc1a87b7f33eb6da95 (diff)
downloadhdf5-9bca9d684bd7d5179f30fb92afa9dee1e53f69cd.zip
hdf5-9bca9d684bd7d5179f30fb92afa9dee1e53f69cd.tar.gz
hdf5-9bca9d684bd7d5179f30fb92afa9dee1e53f69cd.tar.bz2
[svn-r16814] New feature(Bug 230):
Embed the content of libhdf5.settings into the hdf5 executables so that an "orphaned" executables can display (via the Unix strings command, for example) the library settings used to build the executables. This is a prototype implementation. Much improvement is needed. configure.in: Added the --disable-embedded-libinfo option to disable this feature. configure: src/H5config.h.in: Generated by autotools like automake. src/H5detect.c: Implement insert_libhdf5_settings() to insert the contents of libhdf5.settings into the library as an extern string variable so that it is included in all HDF5 executable. Much improvement is needed. fortran/src/Makefile.in: Auto-generated by bin/reconfigure. (i.e., I did make any changes to cause its direct regeneration). Tested: Jam serial, using default and --disable-embedded-libinfo, configure options.
Diffstat (limited to 'src/H5Z.c')
-rw-r--r--src/H5Z.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Z.c b/src/H5Z.c
index 80382f4..d3e1066 100644
--- a/src/H5Z.c
+++ b/src/H5Z.c
@@ -227,7 +227,7 @@ H5Zregister(const void *cls)
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Zregister, FAIL)
- H5TRACE1("e", "*Zc", cls);
+ H5TRACE1("e", "*x", cls);
/* Check args */
if (cls_real==NULL)