diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2008-09-16 20:58:53 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2008-09-16 20:58:53 (GMT) |
commit | 95149cc0957dd05585388c8d8532d84269bf0075 (patch) | |
tree | 0e3fcbd614a882cd40509464017bd0d62e6b283a /configure.in | |
parent | 80693ba5de18dd50e7b84298c02a6741e802a43b (diff) | |
download | hdf5-95149cc0957dd05585388c8d8532d84269bf0075.zip hdf5-95149cc0957dd05585388c8d8532d84269bf0075.tar.gz hdf5-95149cc0957dd05585388c8d8532d84269bf0075.tar.bz2 |
[svn-r15637] 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 0ae4f9d..fe49b4e 100644 --- a/configure.in +++ b/configure.in @@ -2187,7 +2187,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" |