summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2008-04-08 16:30:43 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2008-04-08 16:30:43 (GMT)
commit6e9d2f8099a1de4b73f5a1295e97309cb9071f01 (patch)
tree2ec1f98077eb06accf4f73e1847af363c00d27bb /configure.in
parent00b2f545a365f67c8ef83ed95824c4bb7f3735a5 (diff)
downloadhdf5-6e9d2f8099a1de4b73f5a1295e97309cb9071f01.zip
hdf5-6e9d2f8099a1de4b73f5a1295e97309cb9071f01.tar.gz
hdf5-6e9d2f8099a1de4b73f5a1295e97309cb9071f01.tar.bz2
[svn-r14812] Description:
The development branch was changed to default enable-production for the v1.8 release but had not switched back to default development mode. Solution: Changed it back to --disable-production (aka development) as the default. Also ran bin/reconfigure to update configure. Tested: Smirom only. No h5committest since the change is trivial and if it works at smirom, it should work everywhere else.
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 c217a2a..b0b9f52 100644
--- a/configure.in
+++ b/configure.in
@@ -1011,7 +1011,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])
@@ -1053,7 +1053,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