summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2021-11-30 01:11:01 (GMT)
committerGitHub <noreply@github.com>2021-11-30 01:11:01 (GMT)
commit8a80aec36f2d1b14a79be2a81a0548580fc86370 (patch)
treea88f6539ce41abfbd102c3a8c6c3db769a4701a0 /configure.ac
parent720ddb20f347f5ea4e573c44f64e1886d1dc1038 (diff)
downloadhdf5-8a80aec36f2d1b14a79be2a81a0548580fc86370.zip
hdf5-8a80aec36f2d1b14a79be2a81a0548580fc86370.tar.gz
hdf5-8a80aec36f2d1b14a79be2a81a0548580fc86370.tar.bz2
Make default to build high-level tools the same as default for (#1234)
high-level library.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ca82d29..bce7b0a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -823,11 +823,14 @@ AC_LANG_POP(C++)
AC_SUBST([HDF5_HL])
AC_SUBST([HDF5_HL_TOOLS])
-## The high-level library is enabled unless the build mode is clean.
+## The high-level library and high-level tools are enabled unless the build mode
+## is clean.
if test "X-$BUILD_MODE" = "X-clean" ; then
HDF5_HL=no
+ HDF5_HL_TOOLS=no
else
HDF5_HL=yes
+ HDF5_HL_TOOLS=yes
fi
## high-level library directories (set when needed, blank until then)