diff options
author | Shawn Routhier <sar@isc.org> | 2011-09-13 23:03:58 +0000 |
---|---|---|
committer | Shawn Routhier <sar@isc.org> | 2011-09-13 23:03:58 +0000 |
commit | b3db8084d2224048337932dce0d0675e8109964a (patch) | |
tree | 6cd895a72a8f717200fe7d4967aab70b52a5d646 /aclocal.m4 | |
parent | 25f664a63dbce74aed82ec94230b6c75284b6704 (diff) | |
download | isc-dhcp-b3db8084d2224048337932dce0d0675e8109964a.tar.gz |
aclocal regeneration
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -531,6 +531,35 @@ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) +# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- +# From Jim Meyering + +# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 4 + +AC_DEFUN([AM_MAINTAINER_MODE], +[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) + dnl maintainer-mode is disabled by default + AC_ARG_ENABLE(maintainer-mode, +[ --enable-maintainer-mode enable make rules and dependencies not useful + (and sometimes confusing) to the casual installer], + USE_MAINTAINER_MODE=$enableval, + USE_MAINTAINER_MODE=no) + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) + AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes]) + MAINT=$MAINTAINER_MODE_TRUE + AC_SUBST(MAINT)dnl +] +) + +AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) + # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. |