diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-12-15 17:39:20 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-12-15 17:39:20 (GMT) |
commit | 379b5a7b01a2ba97e754b0d85da8ae014b715c42 (patch) | |
tree | 98771de2e0f20703a2bfeb90ebfcec8c9a82236d /configure.in | |
parent | 8b971620b4a8d65cbdd6d9703f999b12f4c92698 (diff) | |
download | hdf5-379b5a7b01a2ba97e754b0d85da8ae014b715c42.zip hdf5-379b5a7b01a2ba97e754b0d85da8ae014b715c42.tar.gz hdf5-379b5a7b01a2ba97e754b0d85da8ae014b715c42.tar.bz2 |
[svn-r16194] Purpose:
Bug Fix
Description:
Resolved issues with broken sanity checks that were failing when the 'b2'
debugging package was enabled (v2 b-tree debugging):
- Fixed outdated assertions that would not compile. They now compile
and function correctly.
- Removed too far outdated assertions that would require too much
unnecessary refactoring of code in order to satisfy their
initial purpose.
- Re-enabled b2 debugging package when "--enable-debug=all" is
specified on the configure line.
Tested:
jam, smirom, linew
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.in b/configure.in index e83107c..df6a8cc 100644 --- a/configure.in +++ b/configure.in @@ -2188,9 +2188,7 @@ if test "X-$DEBUG_PKG" = X- ; then fi AC_SUBST([DEBUG_PKG]) -dnl Removed b2 temporary since b2 code has errors. -dnl all_packages="ac,b,b2,d,e,f,g,hg,hl,i,mf,mm,o,p,s,t,v,z" -all_packages="ac,b,d,e,f,g,hg,hl,i,mf,mm,o,p,s,t,v,z" +all_packages="ac,b,b2,d,e,f,g,hg,hl,i,mf,mm,o,p,s,t,v,z" case "X-$DEBUG_PKG" in X-yes) DEBUG_PKG="d,e,f,g,hg,i,mm,o,p,s,t,v,z" |