summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlrknox <lrknox>2017-04-13 17:33:45 (GMT)
committerlrknox <lrknox>2017-04-13 17:33:45 (GMT)
commitc96423b6431f0ab9efbefa03481258f598b85a7e (patch)
tree6c8ea6f9c1f0a00f580ce8292032001606e7f7a9 /src
parentfca6ea1fc4e3646f0431d1974b797c10b87b61d9 (diff)
downloadhdf5-c96423b6431f0ab9efbefa03481258f598b85a7e.zip
hdf5-c96423b6431f0ab9efbefa03481258f598b85a7e.tar.gz
hdf5-c96423b6431f0ab9efbefa03481258f598b85a7e.tar.bz2
Add new files in release_docs to MANIFEST.
Cimmit changes to Makefile.in(s) and H5PL.c that resulted from running autogen.sh.
Diffstat (limited to 'src')
-rw-r--r--src/H5PL.c2
-rw-r--r--src/Makefile.in16
2 files changed, 2 insertions, 16 deletions
diff --git a/src/H5PL.c b/src/H5PL.c
index 512b00b..481368c 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -562,6 +562,7 @@ H5PLremove(unsigned int index)
unsigned int plindex;
FUNC_ENTER_API(FAIL)
+ H5TRACE1("e", "Iu", index);
if(H5PL_num_paths_g == 0)
HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "no directories in table")
if(index >= H5PL_MAX_PATH_NUM)
@@ -606,6 +607,7 @@ H5PLget(unsigned int index, char *pathname/*out*/, size_t size)
char *dl_path = NULL;
FUNC_ENTER_API(FAIL)
+ H5TRACE3("Zs", "Iuxz", index, pathname, size);
if(H5PL_num_paths_g == 0)
HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "no directories in table")
if(index >= H5PL_MAX_PATH_NUM)
diff --git a/src/Makefile.in b/src/Makefile.in
index 63be7e6..8c6029d 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -861,11 +861,6 @@ TRACE = perl $(top_srcdir)/bin/trace
# .chklog files are output from those tests.
# *.clog and *.clog2 are from the MPE option.
CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2
-
-# Add libtool shared library version numbers to the HDF5 library
-# See libtool versioning documentation online.
-# After making changes, run bin/reconfigure to update other configure related
-# files like Makefile.in.
LT_VERS_INTERFACE = 101
LT_VERS_REVISION = 0
LT_VERS_AGE = 0
@@ -1853,17 +1848,6 @@ uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES \
help:
@$(top_srcdir)/bin/makehelp
-# Copyright by The HDF Group.
-# Copyright by the Board of Trustees of the University of Illinois.
-# All rights reserved.
-#
-# This file is part of HDF5. The full HDF5 copyright notice, including
-# terms governing use, modification, and redistribution, is contained in
-# the COPYING file, which can be found at the root of the source code
-# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.
-# If you do not have access to either file, you may request a copy from
-# help@hdfgroup.org.
-
# Number format detection
# The LD_LIBRARY_PATH setting is a kludge.
# Things should have been all set during H5detect making.