summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2016-11-18 19:36:52 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2016-11-18 19:36:52 (GMT)
commit03dbcb75918b2cbf39800d9edf5665d3471a1fee (patch)
tree4270dfe7f62e528ea6cf15b371f07e2029b3dee3 /configure.ac
parent9c319125b1ec0e7c7b7e1e03575bedc1f54ff66c (diff)
parent6974764348a88590d1901f316f956893dfa223d8 (diff)
downloadhdf5-hdf5-1_8_18.zip
hdf5-hdf5-1_8_18.tar.gz
hdf5-hdf5-1_8_18.tar.bz2
Merge pull request #159 in HDFFV/hdf5 from hdf5_1_8_18 to 1.8/masterhdf5-1_8_18
* commit '6974764348a88590d1901f316f956893dfa223d8': (28 commits) Version string at top of README.txt and release_docs/RELEASE.txt updated by bin/release. Update URLs in RELEASE.txt. Set version and commit release script changes for 1.8.18 release. Update HDF5 document URLs in RELEASE.txt. Description: Replaced an incorrect work-around note with info about future feature to fix the problem. Change default build mode to production. Update version to 1.8.18-pre2. Update versions for actual 1.8.18-pre1 release. Add GIT note Updates to RELEASE.txt to account for changes in the 1.8.18 release Updates to RELEASE.txt to account for changes in the 1.8.18 release Updated optional CMake scripts Updates to RELEASE.txt to account for changes in the 1.8.18 release. Remove ADA machine no longer tested from "Supported Platforms". Correct typo: missing '(' for Mac OS 10.11 compiler information. Updates to RELEASE.txt to account for changes in the 1.8.18 release. Add bin/compile, bin/depcomp and bin/missing which were changed to links by libtool. Rerun libtoolize with -cf, then reconfigure. Created pre1 release files. Check in ltmain.sh and m4 files after running libtoolize with version 2.4.6. Update Windows tested platforms information. Update shared object file numbers according to changes in v1.8.18 release. Update autotools and libtool versions. Run bin/reconfigure. ...
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 d303244..cc85f7c 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-snap2], [help@hdfgroup.org])
+AC_INIT([HDF5], [1.8.18], [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