From 1ff184d988d58fcef581935d5631645862b56d82 Mon Sep 17 00:00:00 2001 From: Ward Fisher Date: Thu, 19 Apr 2018 13:26:58 -0600 Subject: [PATCH] Enabled CDF5 support by default, in support of https://github.com/Unidata/netcdf-c/issues/931 --- CMakeLists.txt | 2 +- RELEASE_NOTES.md | 5 +++++ configure.ac | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ce3696435c..157e8feaaf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -760,7 +760,7 @@ IF(USE_HDF5 OR ENABLE_NETCDF_4) ENDIF(USE_HDF5 OR ENABLE_NETCDF_4) # Option to turn on CDF5 support. -OPTION(ENABLE_CDF5 "Enable CDF5 Support." OFF) +OPTION(ENABLE_CDF5 "Enable CDF5 Support." ON) IF(ENABLE_CDF5) SET(USE_CDF5 ON CACHE BOOL "") ENDIF(ENABLE_CDF5) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 5b2afd7145..fcf5eaa28a 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -5,6 +5,11 @@ Release Notes {#RELEASE_NOTES} This file contains a high-level description of this package's evolution. Releases are in reverse chronological order (most recent first). Note that, as of netcdf 4.2, the `netcdf-c++` and `netcdf-fortran` libraries have been separated into their own libraries. +## 4.7.0 - TBD + +* [Enhancement] Made CDF5 support enabled by default. See [Github #931](https://github.com/Unidata/netcdf-c/issues/931) for more information. + + ## 4.6.1 - March 19, 2018 * [Bug Fix] Corrected an issue which could result in a dap4 failure. See [Github #888](https://github.com/Unidata/netcdf-c/pull/888) for more information. diff --git a/configure.ac b/configure.ac index 609b3d5b82..ddd1128921 100644 --- a/configure.ac +++ b/configure.ac @@ -837,7 +837,7 @@ AC_CHECK_SIZEOF(unsigned long long) # Check whether we want to enable CDF5 support. AC_MSG_CHECKING([whether CDF5 support should be enabled]) AC_ARG_ENABLE([cdf5], - [AS_HELP_STRING([--disable-cdf5], + [AS_HELP_STRING([--enable-cdf5], [build without CDF5 support.])], [enable_cdf5=${enableval}], [enable_cdf5=auto] )