diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2007-03-16 23:26:30 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2007-03-16 23:26:30 (GMT) |
commit | c4bbce8be19cd60e7ffd0180194c0e0e92091381 (patch) | |
tree | 9bc6e20ce33665b31ca6b2fe3c13c41555d4fb66 /configure | |
parent | de1af0c1c706c04ac19abcdd773d91127b81abd8 (diff) | |
download | hdf5-c4bbce8be19cd60e7ffd0180194c0e0e92091381.zip hdf5-c4bbce8be19cd60e7ffd0180194c0e0e92091381.tar.gz hdf5-c4bbce8be19cd60e7ffd0180194c0e0e92091381.tar.bz2 |
[svn-r13523] Description
Switch the default setting for configure from --enable-production/--disable-debug
to --disable-production/--enable-debug.
Platform Tested:
In kagiso with fortran and C++. No commit test because changes
happened in configure and it is straight forward.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Id: configure.in 13475 2007-03-08 17:57:36Z mcgreevy . +# From configure.in Id: configure.in 13476 2007-03-08 20:09:19Z hdftest . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.60 for HDF5 1.8.0-alpha6snap3. # @@ -24228,7 +24228,7 @@ fi case "X-$enable_production" in - X-|X-yes) + X-yes) enable_production="yes" { echo "$as_me:$LINENO: result: production" >&5 echo "${ECHO_T}production" >&6; } @@ -24269,7 +24269,7 @@ echo "${ECHO_T}production" >&6; } H5_CXXFLAGS="$H5_CXXFLAGS $PROD_CXXFLAGS" H5_FCFLAGS="$H5_FCFLAGS $PROD_FCFLAGS" ;; - X-no) + X-|X-no) enable_production="no" { echo "$as_me:$LINENO: result: development" >&5 echo "${ECHO_T}development" >&6; } @@ -54805,7 +54805,7 @@ fi 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) + X-|X-yes) DEBUG_PKG="d,e,f,g,hg,i,mm,o,p,s,t,v,z" H5_CPPFLAGS="$H5_CPPFLAGS -UNDEBUG" { echo "$as_me:$LINENO: result: default ($DEBUG_PKG)" >&5 @@ -54817,7 +54817,7 @@ echo "${ECHO_T}default ($DEBUG_PKG)" >&6; } { echo "$as_me:$LINENO: result: all ($DEBUG_PKG)" >&5 echo "${ECHO_T}all ($DEBUG_PKG)" >&6; } ;; - X-|X-no|X-none) + X-no|X-none) { echo "$as_me:$LINENO: result: none" >&5 echo "${ECHO_T}none" >&6; } DEBUG_PKG= |