diff options
author | lrknox <lrknox> | 2016-11-08 22:37:17 (GMT) |
---|---|---|
committer | lrknox <lrknox> | 2016-11-08 22:37:17 (GMT) |
commit | bfba684d65249f37f1138d283ee19a587761ef51 (patch) | |
tree | 126cd1152b4e89da7ca0356f315763bc7b351d77 /configure.ac | |
parent | d44a4a5f8b624aadebe4f88dfc7b71fa514a455a (diff) | |
download | hdf5-bfba684d65249f37f1138d283ee19a587761ef51.zip hdf5-bfba684d65249f37f1138d283ee19a587761ef51.tar.gz hdf5-bfba684d65249f37f1138d283ee19a587761ef51.tar.bz2 |
Change default build mode to production.
Update version to 1.8.18-pre2.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 4cc6100..da35952 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.18-pre1], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.8.18-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 |