summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-05-31 22:15:23 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-05-31 22:15:23 (GMT)
commit1c7b0bc85713d4eafeb7c8157d6526b42826f0ca (patch)
treeead14dd80ba99ae785a0d27086aba93f86defc3c
parent1174119e00be8e1fdbe9586da23c2c182e33ec48 (diff)
parent931bd3aa6a7aa742d3a302b49eb20233b021f1bf (diff)
downloadhdf5-1c7b0bc85713d4eafeb7c8157d6526b42826f0ca.zip
hdf5-1c7b0bc85713d4eafeb7c8157d6526b42826f0ca.tar.gz
hdf5-1c7b0bc85713d4eafeb7c8157d6526b42826f0ca.tar.bz2
Merge pull request #1092 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:develop to develop
* commit '931bd3aa6a7aa742d3a302b49eb20233b021f1bf': Added a RELASE.txt entry for HDFFV-10505. Changed 'deprecated' to indicate 'no longer supported' in the --enable-debug/production configure flags.
-rw-r--r--configure.ac8
-rw-r--r--release_docs/RELEASE.txt13
2 files changed, 17 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index c68caab..1de69c8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1954,12 +1954,12 @@ AC_DEFINE_UNQUOTED([PRINTF_LL_WIDTH], ["$hdf5_cv_printf_ll"],
## around to help people migrate to 1.10.x and newer versions.
##
AC_ARG_ENABLE([debug],
- [AS_HELP_STRING([--enable-debug], [DEPRECATED: use --enable-build-mode=debug])],
- [AC_MSG_ERROR([--enable-debug is deprecated, use --enable-build-mode=debug instead.])])
+ [AS_HELP_STRING([--enable-debug], [OPTION CHANGE: use --enable-build-mode=debug])],
+ [AC_MSG_ERROR([--enable-debug is no longer supported, use --enable-build-mode=debug instead.])])
AC_ARG_ENABLE([production],
- [AS_HELP_STRING([--enable-production], [DEPRECATED: use --enable-build-mode=production])],
- [AC_MSG_ERROR([--enable-production is deprecated, use --enable-build-mode=production instead.])])
+ [AS_HELP_STRING([--enable-production], [OPTION CHANGE: use --enable-build-mode=production])],
+ [AC_MSG_ERROR([--enable-production is no longer supported, use --enable-build-mode=production instead.])])
## ----------------------------------------------------------------------
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 0a1b892..48fbef0 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -154,6 +154,19 @@ Bug Fixes since HDF5-1.10.2 release
(ADB 2018/05/08)
+ - The --enable-debug/production configure flags are listed as 'deprecated'
+ when they should really be listed as 'removed'.
+
+ In the autotools overhaul several years ago, we removed these flags and
+ implemented a new --enable-build-mode= flag. This was done because we
+ changed the semantics of the modes and didn't want users to silently
+ be exposed to them. The newer system is also more flexible and us to
+ add other modes (like 'clean').
+
+ The --enable-debug/production flags are now listed as removed.
+
+ (DER - 2018/05/31, HDFFV-10505)
+
Performance
-------------
-