summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2011-12-22 14:27:47 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2011-12-22 14:40:29 +0100
commit5431402f057db86fa7350c3c09d6078c12c0447c (patch)
tree918772db20a3e691d23139f73fbaf944b9c418bd /m4
parentea67a2ea498e07aa8b2db796aa96c7f7594b98f0 (diff)
downloadautomake-5431402f057db86fa7350c3c09d6078c12c0447c.tar.gz
maint: snapshots from `maint' are still development snapshots
The maintenance-oriented development line in the `maint' branch, while being usually pretty stable and 99% backward-compatible, is not always right off production-quality; but until now, the Automake package version declared in configure.ac hid this fact, since it appeared to be the version of a stable release (e.g., 11.1). Fix this. * configure.ac (AC_INIT): Bump version to "1.11.0a"
Diffstat (limited to 'm4')
-rw-r--r--m4/amversion.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/amversion.m4 b/m4/amversion.m4
index 9fd3c1e0c..5f1f2b7ce 100644
--- a/m4/amversion.m4
+++ b/m4/amversion.m4
@@ -18,7 +18,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],
[am__api_version='1.11'
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.11], [],
+m4_if([$1], [1.11.0a], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
])
@@ -34,7 +34,7 @@ m4_define([_AM_AUTOCONF_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.11])dnl
+[AM_AUTOMAKE_VERSION([1.11.0a])dnl
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])