summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2020-12-20 03:50:56 (GMT)
committerGitHub <noreply@github.com>2020-12-20 03:50:56 (GMT)
commitf089c70a1c719d55abd25d6276ddb145bfa99be3 (patch)
tree58fd28956476837bcb748336672802b64296b005
parent179dfd5a25e183ce1139c79e51ec28bffa7694b6 (diff)
downloadhdf5-f089c70a1c719d55abd25d6276ddb145bfa99be3.zip
hdf5-f089c70a1c719d55abd25d6276ddb145bfa99be3.tar.gz
hdf5-f089c70a1c719d55abd25d6276ddb145bfa99be3.tar.bz2
Turns off autotools maintainer mode in hdf5_1_8 (#210)
-rwxr-xr-xconfigure12
-rw-r--r--configure.ac8
2 files changed, 16 insertions, 4 deletions
diff --git a/configure b/configure
index e0d5e1b..34b03ba 100755
--- a/configure
+++ b/configure
@@ -1591,8 +1591,8 @@ Optional Features:
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--enable-silent-rules less verbose build output (undo: "make V=1")
--disable-silent-rules verbose build output (undo: "make V=0")
- --disable-maintainer-mode
- disable make rules and dependencies not useful (and
+ --enable-maintainer-mode
+ enable make rules and dependencies not useful (and
sometimes confusing) to the casual installer
--enable-sanitize-checks=address
(clang/clang++ compilers only) Enable sanitize
@@ -3803,6 +3803,12 @@ AM_BACKSLASH='\'
##
## By default, maintainer mode is enabled in development branches and disabled
## in release branches.
+##
+## NOTE: In 1.8, we have maintainer mode turned OFF at all times. This is
+## because we have the generated files committed in this branch.
+## The lack of consistent timestamps from git and bin/reconfigure's
+## demand for ancient and particular versions of the autotools makes
+## maintainer mode unusable in 1.8.x.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
@@ -3810,7 +3816,7 @@ $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles
if test "${enable_maintainer_mode+set}" = set; then :
enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
else
- USE_MAINTAINER_MODE=yes
+ USE_MAINTAINER_MODE=no
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5
diff --git a/configure.ac b/configure.ac
index d1cd6a9a..3464d0a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -75,7 +75,13 @@ AM_SILENT_RULES([yes])
##
## By default, maintainer mode is enabled in development branches and disabled
## in release branches.
-AM_MAINTAINER_MODE([enable])
+##
+## NOTE: In 1.8, we have maintainer mode turned OFF at all times. This is
+## because we have the generated files committed in this branch.
+## The lack of consistent timestamps from git and bin/reconfigure's
+## demand for ancient and particular versions of the autotools makes
+## maintainer mode unusable in 1.8.x.
+AM_MAINTAINER_MODE([disable])
## ----------------------------------------------------------------------
## Set prefix default (install directory) to a directory in the build area.