logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>

autoconf_252.patch (1290B)


  1. SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
  2. SPDX-License-Identifier: GPL-3.0-or-later
  3. Disable features unsupported by Autoconf 2.52
  4. --- autoconf-2.53/configure.ac Wed Mar 17 19:53:06 2021
  5. +++ autoconf-2.53/configure.ac.new Wed Mar 17 19:52:53 2021
  6. @@ -19,8 +19,7 @@
  7. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  8. # 02111-1307, USA.
  9. -# We need AC_CONFIG_TESTDIR.
  10. -AC_PREREQ([2.53])
  11. +AC_PREREQ([2.52])
  12. AC_INIT([GNU Autoconf], [2.53], [bug-autoconf@gnu.org])
  13. AC_SUBST([PACKAGE_NAME])dnl
  14. @@ -32,7 +31,6 @@
  15. AM_INIT_AUTOMAKE
  16. # Initialize the test suite and build position independent wrappers.
  17. -AC_CONFIG_TESTDIR([tests])
  18. AC_CONFIG_FILES([tests/Makefile tests/atlocal])
  19. AC_CONFIG_FILES([tests/autoconf:tests/wrapsh.in],
  20. [chmod +x tests/autoconf])
  21. @@ -85,16 +73,4 @@
  22. bin/Makefile])
  23. AC_OUTPUT
  24. -# Report the state of this version of Autoconf if this is a beta.
  25. -m4_bmatch(m4_defn([AC_PACKAGE_VERSION]), [[a-z]],
  26. -[ cat <<EOF
  27. -
  28. -You are about to use an experimental version of Autoconf. Be sure to
  29. -read the relevant mailing lists, most importantly <autoconf@gnu.org>.
  30. -
  31. -Below you will find information on the status of this version of Autoconf.
  32. -
  33. -EOF
  34. - sed -n '/^\* Status/,$p' $srcdir/BUGS
  35. -])