summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2016-05-06 21:33:33 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2016-05-06 21:33:33 (GMT)
commitc6ab19923ad19dc342d4c6be511bd457b5d11679 (patch)
tree2b6e42779c115844a4807dc5ebd25087e2021552 /configure.ac
parent094b05101332d2045b6c30e4a0e58e215e5511e6 (diff)
downloadhdf5-c6ab19923ad19dc342d4c6be511bd457b5d11679.zip
hdf5-c6ab19923ad19dc342d4c6be511bd457b5d11679.tar.gz
hdf5-c6ab19923ad19dc342d4c6be511bd457b5d11679.tar.bz2
[svn-r29899] Switch default to enable-production (configure.ac).
Update version to 1.8.17-pre2.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index e531094..6565bdd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,7 +26,7 @@ AC_PREREQ([2.69])
## NOTE: Do not forget to change the version number here when we do a
## release!!!
##
-AC_INIT([HDF5], [1.8.17-pre1], [help@hdfgroup.org])
+AC_INIT([HDF5], [1.8.17-pre2], [help@hdfgroup.org])
AC_CONFIG_SRCDIR([src/H5.c])
AC_CONFIG_HEADERS([src/H5config.h])
@@ -787,7 +787,7 @@ AC_ARG_ENABLE([production],
[Determines how to run the compiler.])])
case "X-$enable_production" in
- X-yes)
+ X-|X-yes)
enable_production="yes"
AC_MSG_RESULT([production])
CONFIG_MODE=production
@@ -796,7 +796,7 @@ case "X-$enable_production" in
H5_CXXFLAGS="$H5_CXXFLAGS $PROD_CXXFLAGS"
H5_FCFLAGS="$H5_FCFLAGS $PROD_FCFLAGS"
;;
- X-|X-no)
+ X-no)
enable_production="no"
AC_MSG_RESULT([development])
CONFIG_MODE=development