summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2005-01-28 18:55:20 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2005-01-28 18:55:20 (GMT)
commit1df1c1ba6d162772f421b5e6dd5c2e64031684db (patch)
treea3004c4d1b5913af83ac9f77bcb0558157a2d042
parent792e19e6b81522dde7e94d015783d37b86afc2bd (diff)
downloadhdf5-1df1c1ba6d162772f421b5e6dd5c2e64031684db.zip
hdf5-1df1c1ba6d162772f421b5e6dd5c2e64031684db.tar.gz
hdf5-1df1c1ba6d162772f421b5e6dd5c2e64031684db.tar.bz2
[svn-r9881] Purpose:
changed the name of the hl table files back to H5TB.c and H5TB.h this can be done now because the H5TB.c (threaded binary trees) file was removed from the hdf5 library Description: Solution: Platforms tested: linux Misc. update:
-rw-r--r--MANIFEST4
-rw-r--r--hl/src/H5TB.c (renamed from hl/src/H5TA.c)2
-rw-r--r--hl/src/H5TB.h (renamed from hl/src/H5TA.h)0
-rw-r--r--hl/src/Makefile.in4
-rw-r--r--hl/test/test_table.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/MANIFEST b/MANIFEST
index abace5d..0832ae0 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1551,8 +1551,8 @@
./hl/src/H5IM.h
./hl/src/H5LT.c
./hl/src/H5LT.h
-./hl/src/H5TA.c
-./hl/src/H5TA.h
+./hl/src/H5TB.c
+./hl/src/H5TB.h
./hl/test/Dependencies
./hl/test/Makefile.in
./hl/test/test_image.c
diff --git a/hl/src/H5TA.c b/hl/src/H5TB.c
index f90819c..6b58c0f 100644
--- a/hl/src/H5TA.c
+++ b/hl/src/H5TB.c
@@ -10,7 +10,7 @@
* *
****************************************************************************/
-#include "H5TA.h"
+#include "H5TB.h"
#include <stdlib.h>
#include <string.h>
diff --git a/hl/src/H5TA.h b/hl/src/H5TB.h
index 0b75228..0b75228 100644
--- a/hl/src/H5TA.h
+++ b/hl/src/H5TB.h
diff --git a/hl/src/Makefile.in b/hl/src/Makefile.in
index 362c3ff..51b2664 100644
--- a/hl/src/Makefile.in
+++ b/hl/src/Makefile.in
@@ -18,7 +18,7 @@ LIBHDF5=$(top_builddir)/src/libhdf5.la
CLEAN=
## Source and object files for the library (lexicographically)...
-LIB_SRC=H5LT.c H5TA.c H5IM.c
+LIB_SRC=H5LT.c H5TB.c H5IM.c
LIB_OBJ=$(LIB_SRC:.c=.lo)
@@ -26,7 +26,7 @@ LIB_OBJ=$(LIB_SRC:.c=.lo)
MOSTLYCLEAN=
## Public header files (to be installed)...
-PUB_HDR=H5IM.h H5LT.h H5TA.h
+PUB_HDR=H5IM.h H5LT.h H5TB.h
## Other header files (not to be installed)...
PRIVATE_HDR=
diff --git a/hl/test/test_table.c b/hl/test/test_table.c
index 57b3791..578ad59 100644
--- a/hl/test/test_table.c
+++ b/hl/test/test_table.c
@@ -13,7 +13,7 @@
-#include "H5TA.h"
+#include "H5TB.h"
#include <stdlib.h>
#include <assert.h>