From: Ondřej Surý Date: Mon, 14 Feb 2022 08:17:41 +0000 (+0100) Subject: Bump the required automake version to 1.14 X-Git-Tag: v9.19.0~120^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4abd58aa8f43ae11b9a89af4a97f9abfb75d096e;p=thirdparty%2Fbind9.git Bump the required automake version to 1.14 After the build system refactoring, we no longer call AM_PROG_CC_C_O because it is obsolescent macro. According to the automake manual the `AC_PROG_CC` has been rewritten in automake 1.14 to not required the call, thus we need to require at least automake version 1.14. --- diff --git a/configure.ac b/configure.ac index b213a4331a9..0b17d34570a 100644 --- a/configure.ac +++ b/configure.ac @@ -48,7 +48,7 @@ AC_CANONICAL_HOST AC_CANONICAL_TARGET AC_CONFIG_SRCDIR([bin/named/main.c]) -AM_INIT_AUTOMAKE([1.9 tar-pax foreign subdir-objects dist-xz no-dist-gzip -Wall -Werror]) +AM_INIT_AUTOMAKE([1.14 tar-pax foreign subdir-objects dist-xz no-dist-gzip -Wall -Werror]) AM_SILENT_RULES([yes]) AM_EXTRA_RECURSIVE_TARGETS([test unit doc])