From 0339b9a2e1cd96a500999ad62e2f8f5b9511bc35 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Fri, 11 Jan 2013 00:01:31 +0100 Subject: [PATCH] configure: compatibility with automake 1.12 AM_PROG_AR should be used. The reason seems a bit obscure. This should be done in libtool. --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f07a16ae..8d494fc3 100644 --- a/configure.ac +++ b/configure.ac @@ -26,8 +26,11 @@ AM_INIT_AUTOMAKE([foreign -Wall -Werror]) AM_MAINTAINER_MODE m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) +# Automake 1.12... +m4_pattern_allow([AM_PROG_AR]) +AM_PROG_AR + # Configure libtool -#LT_PREREQ([2.2]) LT_INIT ####################### -- 2.39.5