From 4abd58aa8f43ae11b9a89af4a97f9abfb75d096e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Mon, 14 Feb 2022 09:17:41 +0100 Subject: [PATCH] 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. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b213a4331a..0b17d34570 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])