Edit

kc3-lang/automake/m4/maintainer.m4

Branch :

  • Show log

    Commit

  • Author : Akim Demaille
    Date : 2000-08-02 08:59:16
    Hash : 4b893ece
    Message : * m4: Quote properly the name of the macros being defined. Use `#' instead of `dnl' where appropriate. * m4/header.m4 (AM_CONFIG_HEADER): Get rid of changequote, just quote. Don't quote passive characters. Pull the AC_PREREQ outside the macro. * m4/init.m4: Pull the AC_PREREQ outside the macro.

  • m4/maintainer.m4
  • # Add --enable-maintainer-mode option to configure.
    # From Jim Meyering
    
    # serial 1
    
    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
    ]
    )