summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2000-12-19 19:23:09 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2000-12-19 19:23:09 (GMT)
commit976700c212aa65b57cc66d3be4589a5fc9fec9a4 (patch)
tree9e5ed08fbcca64176735739d0c47eb0b6c2ce1b0 /configure
parentae97d70661b18d58042baae731b63554ac5e12f2 (diff)
downloadhdf5-976700c212aa65b57cc66d3be4589a5fc9fec9a4.zip
hdf5-976700c212aa65b57cc66d3be4589a5fc9fec9a4.tar.gz
hdf5-976700c212aa65b57cc66d3be4589a5fc9fec9a4.tar.bz2
[svn-r3161] Purpose:
Prepare for 1.4.0beta1 release README: src/H5public.h: Updated with 1.4.0beta1 version information. configure.in: Changed default setting to --enable-production --disable-debug. configure: Derived from configure.in via autoconf. Platforms tested: Eirene (linux) running just the configure command and compared difference with previous configure output to verify expected difference.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 4f7e66f..f246182 100755
--- a/configure
+++ b/configure
@@ -1786,13 +1786,13 @@ fi
case "X-$enable_production" in
- X-yes)
+ X-|X-yes)
echo "$ac_t"""production"" 1>&6
CONFIG_MODE=production
CFLAGS="$CFLAGS $PROD_CFLAGS"
CPPFLAGS="$CPPFLAGS $PROD_CPPFLAGS"
;;
- X-|X-no)
+ X-no)
echo "$ac_t"""development"" 1>&6
CONFIG_MODE=development
CFLAGS="$CFLAGS $DEBUG_CFLAGS"
@@ -8996,7 +8996,7 @@ fi
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-|X-yes)
+ X-yes)
DEBUG_PKG="d,e,f,g,hg,i,mm,o,p,s,t,v,z"
CPPFLAGS="$CPPFLAGS -UNDEBUG"
echo "$ac_t""default ($DEBUG_PKG)" 1>&6
@@ -9006,7 +9006,7 @@ case "X-$DEBUG_PKG" in
CPPFLAGS="$CPPFLAGS -UNDEBUG"
echo "$ac_t""all ($DEBUG_PKG)" 1>&6
;;
- X-no|X-none)
+ X-|X-no|X-none)
echo "$ac_t""none" 1>&6
DEBUG_PKG=
CPPFLAGS="$CPPFLAGS -DNDEBUG"