]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
AC_PREREQ understand `2.14a' as `2.141'.
authorAkim Demaille <akim@epita.fr>
Thu, 4 May 2000 11:39:46 +0000 (11:39 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 4 May 2000 11:39:46 +0000 (11:39 +0000)
Reported by Didier Verna.

* acgeneral.m4 (AC_PREREQ): Don't quote AC_ACVERSION.

ChangeLog
acgeneral.m4
lib/autoconf/general.m4

index e4db3860cc5338df96b53ea9cc059a1f3aa58b0e..d3206af5e3956dc954db26a66b0f622f1406d6ac 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2000-05-04  Akim Demaille  <akim@epita.fr>
+
+       AC_PREREQ understand `2.14a' as `2.141'.
+       Reported by Didier Verna.
+
+       * acgeneral.m4 (AC_PREREQ): Don't quote AC_ACVERSION.
+
 2000-05-04  Akim Demaille  <akim@epita.fr>
 
        * acgeneral.m4 (AH_TOP, AH_BOTTOM): New macros.
index d40da6ee0adb4c71a294c09bc680204e1a659ea4..3a1e6118ff84e650369e7950e3bba5fcbd4f1696 100644 (file)
@@ -782,7 +782,7 @@ define(_AC_VERSION_COMPARE,
 # ------------------
 # Complain and exit if the Autoconf version is less than VERSION.
 define(AC_PREREQ,
-[ifelse(_AC_VERSION_COMPARE([AC_ACVERSION], [$1]), -1,
+[ifelse(_AC_VERSION_COMPARE(AC_ACVERSION, [$1]), -1,
      [AC_FATAL([Autoconf version $1 or higher is required for this script])])])
 
 
index d40da6ee0adb4c71a294c09bc680204e1a659ea4..3a1e6118ff84e650369e7950e3bba5fcbd4f1696 100644 (file)
@@ -782,7 +782,7 @@ define(_AC_VERSION_COMPARE,
 # ------------------
 # Complain and exit if the Autoconf version is less than VERSION.
 define(AC_PREREQ,
-[ifelse(_AC_VERSION_COMPARE([AC_ACVERSION], [$1]), -1,
+[ifelse(_AC_VERSION_COMPARE(AC_ACVERSION, [$1]), -1,
      [AC_FATAL([Autoconf version $1 or higher is required for this script])])])