]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Bump the required automake version to 1.14
authorOndřej Surý <ondrej@isc.org>
Mon, 14 Feb 2022 08:17:41 +0000 (09:17 +0100)
committerOndřej Surý <ondrej@isc.org>
Mon, 14 Feb 2022 08:17:41 +0000 (09:17 +0100)
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

index b213a4331a979ea65edee463f6319b059084e1cf..0b17d34570ad94b66accae1259ec4b9214e4b125 100644 (file)
@@ -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])