File hbaapi-automake.diff of Package libHBAAPI2
From: Jan Engelhardt <jengelh@inai.de>
Date: 2012-05-29 12:26:09.399972892 +0200
automake-1.12 wants AM_PROG_AR, and because this project uses
"-Werror" that meant a failure for building with am 1.12.
---
configure.ac | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Index: libHBAAPI-v2.2.1/configure.ac
===================================================================
--- libHBAAPI-v2.2.1.orig/configure.ac
+++ libHBAAPI-v2.2.1/configure.ac
@@ -2,7 +2,8 @@ AC_INIT([libHBAAPI], [2.2])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
-AC_PROG_LIBTOOL
+AM_PROG_AR
+LT_INIT
AC_CONFIG_FILES([Makefile HBAAPI.pc])
AC_OUTPUT