Edit

kc3-lang/automake/m4/amversion.m4

Branch :

  • Show log

    Commit

  • Author : Stefano Lattarini
    Date : 2012-04-11 19:06:18
    Hash : 66cccef3
    Message : maint: version bump after beta release * configure.ac (AC_INIT): Bump version number to 1.11c, as per HACKING suggestion. * NEWS: Likewise. * m4/amversion.m4: Likewise (autoupdated by ./bootstrap). Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>

  • m4/amversion.m4
  • ##                                                          -*- Autoconf -*-
    ## Generated from amversion.in; do not edit by hand.
    # Copyright (C) 2002-2012 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 8
    
    # AM_AUTOMAKE_VERSION(VERSION)
    # ----------------------------
    # Automake X.Y traces this macro to ensure aclocal.m4 has been
    # generated from the m4 files accompanying Automake X.Y.
    # (This private macro should not be called outside this file.)
    AC_DEFUN([AM_AUTOMAKE_VERSION],
    [am__api_version='1.11c'
    dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
    dnl require some minimum version.  Point them to the right macro.
    m4_if([$1], [1.11c], [],
          [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
    ])
    
    # _AM_AUTOCONF_VERSION(VERSION)
    # -----------------------------
    # aclocal traces this macro to find the Autoconf version.
    # This is a private macro too.  Using m4_define simplifies
    # the logic in aclocal, which can simply ignore this definition.
    m4_define([_AM_AUTOCONF_VERSION], [])
    
    # AM_SET_CURRENT_AUTOMAKE_VERSION
    # -------------------------------
    # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
    # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
    AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
    [AM_AUTOMAKE_VERSION([1.11c])dnl
    m4_ifndef([AC_AUTOCONF_VERSION],
      [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
    _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])