From 381c7ba75d01356b2f206a4b1b88e6311eb46359 Mon Sep 17 00:00:00 2001
From: Wookey <wookey@linaro.org>
Date: Thu, 18 Jul 2019 00:04:14 +0200
Subject: [PATCH acl 2/8] Fix for incompatibility with autoconf2.13

This package will not build if autconf2.13 is installed. Adding AC_PREREQ
allows the automatic checks to run the correct version of autconf,
whichever is installed, or to get a clear error message about the problem.

Signed-off-by: Guillem Jover <guillem@hadrons.org>
---
 configure.ac | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure.ac b/configure.ac
index 92d6faa..5ff8a64 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,6 +14,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 
+AC_PREREQ([2.59])
 AC_INIT([acl], [2.2.53], [acl-devel@nongnu.org])
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_MACRO_DIR([m4])
-- 
2.22.0.657.g960e92d24f

