diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2008-09-16 21:26:38 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2008-09-16 21:26:38 (GMT) |
commit | b93a55bbcd4db7b619d9a361e0c5ebfde76da99d (patch) | |
tree | 649a36337bd7b88f0f89bfd3204ad873d2630dd3 /configure.in | |
parent | d45346f76cfa5b2115cda3cb56121a9baa101407 (diff) | |
download | hdf5-b93a55bbcd4db7b619d9a361e0c5ebfde76da99d.zip hdf5-b93a55bbcd4db7b619d9a361e0c5ebfde76da99d.tar.gz hdf5-b93a55bbcd4db7b619d9a361e0c5ebfde76da99d.tar.bz2 |
[svn-r15638] Bug 710: partial fix.
Temporary removed b2 from the --enable-debug=all list so that this option
will pass. "configure --help" lists the --enable-debug=all and users tend
to use it and end up with compile failures in the b2 debug code. Since this
bug will not be fixed soon, this is a temporary fix to let the configure and
build work.
Tested:
h5committest plus "--enable-debu=all" test in kagiso.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 70f0930..b6a9065 100644 --- a/configure.in +++ b/configure.in @@ -2143,7 +2143,9 @@ if test "X-$DEBUG_PKG" = X- ; then fi AC_SUBST([DEBUG_PKG]) -all_packages="ac,b,b2,d,e,f,g,hg,hl,i,mf,mm,o,p,s,t,v,z" +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" case "X-$DEBUG_PKG" in X-yes) DEBUG_PKG="d,e,f,g,hg,i,mm,o,p,s,t,v,z" |