From 80f88679e19ee5dbc8797f1c9d7fa7e5fb2fa567 Mon Sep 17 00:00:00 2001 From: Toni Gundogdu Date: Sun, 24 Mar 2013 12:16:05 +0200 Subject: [PATCH] Workaround: AM_PROG_AR Signed-off-by: Toni Gundogdu --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 251d172..f1fdc15 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,10 @@ AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([1.11.1 -Wall -Werror dist-xz no-dist-gzip tar-ustar]) AM_SILENT_RULES([yes]) -#AM_PROG_AR + +# GNU Automake 1.12 requires this macro. Earlier versions do not +# recognize this macro. Work around this. +m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) LT_INIT([disable-static]) LT_PREREQ([2.2.6]) -- 2.11.4.GIT