]> Savannah Git Hosting - gnulib.git/commitdiff
alloca: sync with Autoconf master
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 31 Jul 2020 02:06:49 +0000 (19:06 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 31 Jul 2020 02:16:11 +0000 (19:16 -0700)
* m4/alloca.m4 (_AC_LIBOBJ_ALLOCA):
Do not define if Autoconf 2.70 or later, since Autoconf master
now matches us.

ChangeLog
m4/alloca.m4

index 95851778c1b83aab0877ef27d8aa02cf26c72253..fa5e1dab10afcf378a087d12fa2ba1074b108dcf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2020-07-30  Paul Eggert  <eggert@cs.ucla.edu>
+
+       alloca: sync with Autoconf master
+       * m4/alloca.m4 (_AC_LIBOBJ_ALLOCA):
+       Do not define if Autoconf 2.70 or later, since Autoconf master
+       now matches us.
+
 2020-07-30  Bruno Haible  <bruno@clisp.org>
 
        unicodeio: Add comment.
index d3e98c51bf462ad4035d683e74283b934fc654db..b777f8450ce0b223543f71bfc665adba08f4677b 100644 (file)
@@ -1,4 +1,4 @@
-# alloca.m4 serial 16
+# alloca.m4 serial 17
 dnl Copyright (C) 2002-2004, 2006-2007, 2009-2020 Free Software Foundation,
 dnl Inc.
 dnl This file is free software; the Free Software Foundation
@@ -50,10 +50,13 @@ AC_DEFUN([gl_FUNC_ALLOCA],
 # STACK_DIRECTION is already handled by AC_FUNC_ALLOCA.
 AC_DEFUN([gl_PREREQ_ALLOCA], [:])
 
-# This works around a bug in autoconf <= 2.68.
-# See <https://lists.gnu.org/r/bug-gnulib/2011-06/msg00277.html> and
-# <https://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=6cd9f12520b0d6f76d3230d7565feba1ecf29497>.
-# Also it has a simplification that is not yet in Autoconf.
+m4_version_prereq([2.70], [], [
+
+# This works around a bug in autoconf <= 2.68 and has simplifications
+# from 2.70.  See:
+# https://lists.gnu.org/r/bug-gnulib/2011-06/msg00277.html
+# https://git.savannah.gnu.org/cgit/autoconf.git/commit/?id=6cd9f12520b0d6f76d3230d7565feba1ecf29497
+# https://git.savannah.gnu.org/cgit/autoconf.git/commit/?id=15edf7fd8094fd14a89d9891dd72a9624762597a
 
 # _AC_LIBOBJ_ALLOCA
 # -----------------
@@ -102,3 +105,4 @@ AH_VERBATIM([STACK_DIRECTION],
 @%:@undef STACK_DIRECTION])dnl
 AC_DEFINE_UNQUOTED(STACK_DIRECTION, $ac_cv_c_stack_direction)
 ])
+])