diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2023-05-05 16:05:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 16:05:30 (GMT) |
commit | af209f208034154847b4baae15268413eaeb14df (patch) | |
tree | 4196481f3e464fcf38cc086787fae7bb54c290e8 /configure.ac | |
parent | d0e8878ad4e8b2a24014bfb08b2f93dbd9595950 (diff) | |
download | hdf5-af209f208034154847b4baae15268413eaeb14df.zip hdf5-af209f208034154847b4baae15268413eaeb14df.tar.gz hdf5-af209f208034154847b4baae15268413eaeb14df.tar.bz2 |
Initial changes for HDF5 1.14.1 release (#2900)
Generate release files with autogen.sh, autoconf 2.71 and automake 1.16.2.
Update version to HDF5 1.14.1 for release branch version. Update configure.ac for release: switch configure default to production mode, disable maintainer mode
Set HDF5_GENERATE_HEADERS to OFF in src/CMakeLists.txt
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index c94f2b9..61d4109 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ([2.69]) ## NOTE: Do not forget to change the version number here when we do a ## release!!! ## -AC_INIT([HDF5], [1.14.1-1], [help@hdfgroup.org]) +AC_INIT([HDF5], [1.14.1], [help@hdfgroup.org]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADERS([src/H5config.h]) @@ -74,7 +74,7 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) # use silent rules where a ## ## By default, maintainer mode is enabled in development branches and disabled ## in release branches. -AM_MAINTAINER_MODE([enable]) +AM_MAINTAINER_MODE([disable]) ## ---------------------------------------------------------------------- ## Set prefix default (install directory) to a directory in the build area. @@ -431,14 +431,14 @@ AC_ARG_ENABLE([build-mode], (i.e.: a 'clean slate' configuration). All these settings can be overridden by using specific configure flags. - [default=debug] + [default=production] ])], [BUILD_MODE=$enableval]) ## Set the default ## Depends on branch, set via script at branch creation time if test "X-$BUILD_MODE" = X- ; then - BUILD_MODE=debug + BUILD_MODE=production fi ## Allow this variable to be substituted in |