diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-08-22 11:12:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-22 11:12:12 (GMT) |
commit | 10eb43d0c2edcbac551e6efc18ba30798ac3365a (patch) | |
tree | 465251dfb8597d81b0e521ee218b6dbed9ec7a4e /configure.ac | |
parent | 3e38a001a1f59aa38884e105ad6d314450676186 (diff) | |
download | hdf5-10eb43d0c2edcbac551e6efc18ba30798ac3365a.zip hdf5-10eb43d0c2edcbac551e6efc18ba30798ac3365a.tar.gz hdf5-10eb43d0c2edcbac551e6efc18ba30798ac3365a.tar.bz2 |
Removes ST from the list of debug packages (Autotools only) (#2045)
* Removes ST from the list of debug packages
The ST package (ternary search trees) was removed from the library a while ago
* Replaced B2 package
I did some crude timing with and without the B2 debug code enabled
and it doesn't seem to make much of a difference.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 94e3ca6..340decb 100644 --- a/configure.ac +++ b/configure.ac @@ -2541,8 +2541,8 @@ AC_SUBST([INTERNAL_DEBUG_OUTPUT]) ## too specialized or have huge performance hits. These ## are not listed in the "all" packages list. ## -## all_packages="AC,B,B2,D,F,FA,FL,FS,HL,I,O,S,ST,T,Z" -all_packages="AC,B2,CX,D,F,HL,I,O,S,ST,T,Z" +## all_packages="AC,B,B2,D,F,FA,FL,FS,HL,I,O,S,T,Z" +all_packages="AC,B2,CX,D,F,HL,I,O,S,T,Z" case "X-$INTERNAL_DEBUG_OUTPUT" in X-yes|X-all) |