summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorShawn Routhier <sar@isc.org>2011-09-13 23:01:53 +0000
committerShawn Routhier <sar@isc.org>2011-09-13 23:01:53 +0000
commit25f664a63dbce74aed82ec94230b6c75284b6704 (patch)
tree127dd5d967177fe9c963c3d988f61f8347375400 /configure.ac
parentd208bb043169878b6475c13d42e6067518aba739 (diff)
downloadisc-dhcp-25f664a63dbce74aed82ec94230b6c75284b6704.tar.gz
Add AM_MAINTAINER_MODE to configure.ac to avoid rebuilding
configuration files. [ISC-Bugs #24107]
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 823c3cf1..91c207e0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,6 +4,13 @@ AC_INIT([DHCP], [4.2.0], [dhcp-users@isc.org])
# like AUTHORS, COPYING, and such
AM_INIT_AUTOMAKE([foreign])
+# we specify AM_MAINTAINER_MODE to avoid problems with rebuilding
+# the configure and makefiles. Without it users doing things that
+# change the timestamps on the code, like checking it into a cvs
+# tree, could trigger a rebuild of the infrastructure files which
+# might fail if they don't have the correct tools.
+AM_MAINTAINER_MODE
+
# We want to turn on warnings if we are using gcc and the user did
# not specify CFLAGS. The autoconf check for the C compiler sets the
# CFLAGS if gcc is used, so we will save it before we run that check.