summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2010-05-28 21:05:56 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2010-05-28 21:05:56 (GMT)
commit0844b48690d92783907b72e8504b432ad6d0b7c0 (patch)
treea3ff2d0e52dbeca2b5fa3814fdb15648c6888f00 /configure.in
parente4246519c9d59a5f837f2b1009471533b729b778 (diff)
downloadhdf5-0844b48690d92783907b72e8504b432ad6d0b7c0.zip
hdf5-0844b48690d92783907b72e8504b432ad6d0b7c0.tar.gz
hdf5-0844b48690d92783907b72e8504b432ad6d0b7c0.tar.bz2
[svn-r18923] Changed v1.8 default setting to --disable-production.
Tested: h5committest plus jam (serial) tested.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 98f4e43..bbdaab0 100644
--- a/configure.in
+++ b/configure.in
@@ -1174,7 +1174,7 @@ AC_ARG_ENABLE(production,
[Determines how to run the compiler.])])
case "X-$enable_production" in
- X-|X-yes)
+ X-yes)
enable_production="yes"
AC_MSG_RESULT([production])
CONFIG_MODE=production
@@ -1183,7 +1183,7 @@ case "X-$enable_production" in
H5_CXXFLAGS="$H5_CXXFLAGS $PROD_CXXFLAGS"
H5_FCFLAGS="$H5_FCFLAGS $PROD_FCFLAGS"
;;
- X-no)
+ X-|X-no)
enable_production="no"
AC_MSG_RESULT([development])
CONFIG_MODE=development