summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-10-17 21:38:38 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-10-17 21:38:38 (GMT)
commit87a56d9da22fb904cbd667f4d3cef1071ffe5954 (patch)
treec9f297d28b5b8f7b22b6bb5a1e767918826a2e1f /c++
parentd8c3b5b77184fd03d98a185b2f98a4c166065805 (diff)
downloadhdf5-87a56d9da22fb904cbd667f4d3cef1071ffe5954.zip
hdf5-87a56d9da22fb904cbd667f4d3cef1071ffe5954.tar.gz
hdf5-87a56d9da22fb904cbd667f4d3cef1071ffe5954.tar.bz2
[svn-r11573] Purpose:
Bug fix Description: Changed configure.in to use an environment variable TR to set the path to the tr utility. Solution: There are two kind of tr on Solaris with slightly different syntax. HDF5's configure relies on the "standard" tr. Traditionally, HDF5ers have needed to make sure that the "right" tr was found before the wrong one in their path; now they can use an environment variable. Platforms tested: mir, shanti, sol Misc. update: Forgot to update release notes. Off to do that now.
Diffstat (limited to 'c++')
-rw-r--r--c++/Makefile.in1
-rw-r--r--c++/examples/Makefile.in1
-rw-r--r--c++/src/Makefile.in1
-rw-r--r--c++/test/Makefile.in1
4 files changed, 4 insertions, 0 deletions
diff --git a/c++/Makefile.in b/c++/Makefile.in
index 0e3166c..c4bdf38 100644
--- a/c++/Makefile.in
+++ b/c++/Makefile.in
@@ -207,6 +207,7 @@ SIZE_T = @SIZE_T@
STATIC_SHARED = @STATIC_SHARED@
STRIP = @STRIP@
TESTPARALLEL = @TESTPARALLEL@
+TR = @TR@
TRACE_API = @TRACE_API@
USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in
index 49f6595..86ddd8e 100644
--- a/c++/examples/Makefile.in
+++ b/c++/examples/Makefile.in
@@ -199,6 +199,7 @@ SIZE_T = @SIZE_T@
STATIC_SHARED = @STATIC_SHARED@
STRIP = @STRIP@
TESTPARALLEL = @TESTPARALLEL@
+TR = @TR@
TRACE_API = @TRACE_API@
USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@
diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in
index 1115927..8847ce5 100644
--- a/c++/src/Makefile.in
+++ b/c++/src/Makefile.in
@@ -241,6 +241,7 @@ SIZE_T = @SIZE_T@
STATIC_SHARED = @STATIC_SHARED@
STRIP = @STRIP@
TESTPARALLEL = @TESTPARALLEL@
+TR = @TR@
TRACE_API = @TRACE_API@
USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in
index 983819f..52a77a7 100644
--- a/c++/test/Makefile.in
+++ b/c++/test/Makefile.in
@@ -230,6 +230,7 @@ SIZE_T = @SIZE_T@
STATIC_SHARED = @STATIC_SHARED@
STRIP = @STRIP@
TESTPARALLEL = @TESTPARALLEL@
+TR = @TR@
TRACE_API = @TRACE_API@
USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@
USE_FILTER_FLETCHER32 = @USE_FILTER_FLETCHER32@