From 9b6ebbd89b1a59c4b3e8de6b19877a043b1323b1 Mon Sep 17 00:00:00 2001 From: brarcher Date: Tue, 23 Sep 2014 01:29:02 +0000 Subject: [PATCH] autotools: change automake requirement to 1.11.2 The AM_PROG_AR macro was introduced into Automake 1.11.2 (Dec 2011), which is used in Check's configure script and in the example's. Check for this version of Automake instead. git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@1192 64e312b2-a51f-0410-8e61-82d0ca0eb02a --- configure.ac | 2 +- doc/example/configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 37abf0b..5c2366b 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,7 @@ AC_CONFIG_AUX_DIR([build-aux]) AC_USE_SYSTEM_EXTENSIONS # really severe build strictness -AM_INIT_AUTOMAKE([-Wall gnits 1.9.6]) +AM_INIT_AUTOMAKE([-Wall gnits 1.11.2]) # Change to using into-in-builddir in the future: #AM_INIT_AUTOMAKE([info-in-builddir -Wall -Werror gnits 1.14]) diff --git a/doc/example/configure.ac b/doc/example/configure.ac index f3cb54b..9796ba8 100644 --- a/doc/example/configure.ac +++ b/doc/example/configure.ac @@ -13,7 +13,7 @@ AC_CONFIG_AUX_DIR([build-aux]) # fairly severe build strictness # change foreign to gnu or gnits to comply with gnu standards -AM_INIT_AUTOMAKE([-Wall -Werror foreign 1.9.6]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign 1.11.2]) # Checks for programs. AC_PROG_CC -- 2.50.1