diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-01-26 20:40:52 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-01-27 16:14:24 +0100 |
commit | 5bf424d9d8a3a8c3a894d6540ae164a42d2c25a5 (patch) | |
tree | 50eb9eb3eb10b2848f071a02281e94f539ed96fb | |
parent | aaf29de976ec4e2c655d466f132f33fcfacf6efc (diff) | |
download | admin-5bf424d9d8a3a8c3a894d6540ae164a42d2c25a5.tar.gz admin-5bf424d9d8a3a8c3a894d6540ae164a42d2c25a5.zip |
Add support for autoconf + autoheader 2.7x.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit c23f9f693475149602b052e66e7e9d9e726e299f)
-rw-r--r-- | cvs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,7 +32,7 @@ check_autotool_versions() required_autoconf_version="2.53 or newer" AUTOCONF_VERSION=`$AUTOCONF --version | head -n 1` case $AUTOCONF_VERSION in - Autoconf*2.5* | autoconf*2.5* | autoconf*2.6* ) : ;; + Autoconf*2.5* | autoconf*2.[567]* ) : ;; "" ) echo "*** AUTOCONF NOT FOUND!." echo "*** TDE requires autoconf $required_autoconf_version" @@ -47,7 +47,7 @@ esac AUTOHEADER_VERSION=`$AUTOHEADER --version | head -n 1` case $AUTOHEADER_VERSION in - Autoconf*2.5* | autoheader*2.5* | autoheader*2.6* ) : ;; + Autoconf*2.5* | autoheader*2.[567]* ) : ;; "" ) echo "*** AUTOHEADER NOT FOUND!." echo "*** TDE requires autoheader $required_autoconf_version" |