From d63a1f6c73f2fbfd4af1d3bab3eb0e4f68483115 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Tue, 3 Jan 2012 21:12:25 -0500 Subject: [PATCH] config: the minimum version for autoconf is 2.60 A version later than 2.60 can be used, but no new features from such a later version can be used in configure.ac. The toolchain version requirements are documented here: http://www.x.org/wiki/ModularDevelopersGuide#GNU_Build_System Minimum version for Automake is 1.10 but we have not written it in any xorg module so far and there has been no issues. Signed-off-by: Gaetan Nadon Signed-off-by: Daniel Vetter --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 73a9e296..2715fbf3 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ # # Process this file with autoconf to produce a configure script -AC_PREREQ([2.63]) +AC_PREREQ([2.60]) AC_INIT([intel-gpu-tools], [1.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], @@ -31,7 +31,7 @@ AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) -AM_INIT_AUTOMAKE([1.10 foreign dist-bzip2]) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE # Initialize libtool