From 7265c72b6cc65f39111c1248bd996b152c57ec71 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Wed, 7 Mar 2018 00:35:55 -0500 Subject: [PATCH] [autoconf] reduce minimum automake version to 1.13 Although removal of AM_PROG_CC_C_O in f107bac8 requires automake 1.14 to provide the same functionality in AC_PROG_CC, any widely used, modern compiler supports cc -c -o. Reducing the minimum required automake version avoids the current need for Centos 7 maintainers to patch configure.ac in order to build binary packages. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8ad4ede9..c9395678 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_HOST -AM_INIT_AUTOMAKE([1.14 -Wall -Wno-portability -Wno-override foreign dist-xz tar-ustar serial-tests silent-rules]) +AM_INIT_AUTOMAKE([1.13 -Wall -Wno-portability -Wno-override foreign dist-xz tar-ustar serial-tests silent-rules]) dnl @synopsis TRY_CFLAGS [compiler flags] dnl @summary check whether compiler supports given flags and adds them to CFLAGS