From: Vincent Bernat Date: Thu, 10 Jan 2013 23:01:31 +0000 (+0100) Subject: configure: compatibility with automake 1.12 X-Git-Tag: 0.7.1~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0339b9a2e1cd96a500999ad62e2f8f5b9511bc35;p=thirdparty%2Flldpd.git configure: compatibility with automake 1.12 AM_PROG_AR should be used. The reason seems a bit obscure. This should be done in libtool. --- 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 #######################