diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-06-03 14:45:21 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-06-03 14:45:21 +0200 |
commit | a982e34611e46e753a14f591ea007d3156a018e0 (patch) | |
tree | c4ddf61a3c02cc5a467fcae48381b421902f6ba3 | |
parent | e2e1bae2b03e661a28e98d64c5a485b1fed03876 (diff) |
Roll autoconf version back to a less ambitious one
Autoconf 2.69 was released in 2012. After that, 2.70 was released
in December 2020 and 2.71 in January 2021.
According to repology, only very few distros ship 2.7x, most still
being on 2.69. This includes the last Ubuntu LTS release, which is
used as goto container distro in our automated testing and analysis
setup.
Version 2.69 should cover most distros, except some outliers
like CentOS 6 or Maemo Fremantle (*cough* Nokia N900).
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
-rw-r--r-- | configure.ac | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 2921dff..bc7db61 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_PREREQ([2.71]) +AC_PREREQ([2.69]) AC_INIT([squashfs-tools-ng],[1.1.4],[goliath@infraroot.at],[squashfs-tools-ng]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([foreign dist-xz subdir-objects]) @@ -306,8 +306,7 @@ AC_CONFIG_FILES([tests/tarcompress.sh], [chmod +x tests/tarcompress.sh]) AC_CONFIG_FILES([tests/rdsquashfs/pathtraversal.sh], [chmod +x tests/rdsquashfs/pathtraversal.sh]) -AC_CONFIG_FILES([Makefile]) -AC_OUTPUT +AC_OUTPUT([Makefile]) AC_MSG_RESULT([ ${PACKAGE} ${VERSION} |