* Ralf Wildenhues wrote on Thu, Sep 02, 2010 at 10:36:54PM CEST:
> Hi Gary,
>
> I get testsuite failures of the first six tests with autom4te 2.61 early
> in PATH (the testsuite itself has been created with 2.67). See below
> for an example failure. Maybe getopt-m4sh.at really relies on >= 2.62?
I've pushed the patch below to fix this failure now.
Cheers,
Ralf
Fix getopt.m4sh to require Autoconf 2.62 or newer.
* libltdl/config/getopt.m4sh (m4_version_prereq): Require 2.62,
not 2.61.
diff --git a/libltdl/config/getopt.m4sh b/libltdl/config/getopt.m4sh
index 806c1d4..2196743 100644
--- a/libltdl/config/getopt.m4sh
+++ b/libltdl/config/getopt.m4sh
@@ -50,11 +50,11 @@ m4_pattern_forbid([^_?m4go_])
## --------------------------- ##
# We prefer m4sugar.m4 from Autoconf-2.64, but have fallbacks in this
-# section that work back as far as Autoconf-2.61. This file is used
+# section that work back as far as Autoconf-2.62. This file is used
# at bootstrap time to generate the shell processing loop for ltmain.sh
# and libtoolize.in, so it's okay for the requirement to be tighter
# than the configure time Autoconf prerequisite version.
-m4_version_prereq([2.61])
+m4_version_prereq([2.62])
# m4_chomp(STRING)
# ----------------