diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-03-22 18:44:55 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-03-22 18:44:55 (GMT) |
commit | 4b703ef698a5242c9cd4d3181b28d8f0acb5e786 (patch) | |
tree | 44548fd60e9455d73435b6da72048bb4929dc474 /configure | |
parent | ff67dcf8ba859882297d11d455dca71fdab40043 (diff) | |
download | hdf5-4b703ef698a5242c9cd4d3181b28d8f0acb5e786.zip hdf5-4b703ef698a5242c9cd4d3181b28d8f0acb5e786.tar.gz hdf5-4b703ef698a5242c9cd4d3181b28d8f0acb5e786.tar.bz2 |
[svn-r12130] Purpose:
Disable debugging feature
Description:
Disable the "function stack" by default & take out it's dependency on
the "enable-debug" configure flag. The function stack code can slow things
down quite a bit and shouldn't be enabled for the upcoming alpha testing.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Linux 2.4 (chicago)
Mac OSX (amazon)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 16 |
1 files changed, 5 insertions, 11 deletions
@@ -1070,8 +1070,8 @@ Optional Features: specify a comma-separated list of package names without the leading H5 or the word no. The default is most packages. - --enable-funcstack Enable the function stack tracing. Default=no if - debug is disabled. + --enable-funcstack Enable the function stack tracing (for developer + debugging). --enable-trace Enable API tracing capability. Default=no if debug is disabled. --enable-instrument Enable library instrumentation of optimization @@ -47806,16 +47806,9 @@ if test "${enable_funcstack+set}" = set; then FUNCSTACK=$enableval fi; -if test "X-$FUNCSTACK" = X- ; then - if test -z "$DEBUG_PKG" ; then - FUNCSTACK=no - else - FUNCSTACK=yes - fi -fi case "X-$FUNCSTACK" in - X-|X-yes) - FUNCSTACK="yes" + X-yes) + FUNCSTACK=yes echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 @@ -47825,6 +47818,7 @@ _ACEOF ;; *) + FUNCSTACK=no echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 ;; |