From 542311e511e6e32bfde74d705a3c1355a548aba2 Mon Sep 17 00:00:00 2001 From: Wookey Date: Sat, 20 Jul 2019 04:14:35 +0200 Subject: build: Fix for incompatibility with autoconf 2.13 This project 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 --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 9cf420d..1bdcd75 100644 --- a/configure.ac +++ b/configure.ac @@ -14,6 +14,7 @@ # along with this program. If not, see . # +AC_PREREQ([2.69]) AC_INIT([attr], [2.5.1], [acl-devel@nongnu.org]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) -- cgit v1.2.1