
According to Daniel P. Berrange on 1/25/2010 4:15 AM:
So, what is the oldest version of autoconf and automake that libvirt will insist on supporting?
RHEL5 is the minimum required platform, including full bootstrap from GIT source. This implies automake-1.9.6-2.1 and autoconf-2.59-12
Fair enough. That said, my patch to rename to configure.ac and use the more modern AC_CONFIG_HEADERS is still relevant, as both of those were supported in autoconf 2.59. I noticed the patch got attached with binary mime type last time; (I'm still fighting with email configuration of the machine where I first built the patch), so here it is again in plain text. -- Don't work too hard, make some time for fun as well! Eric Blake ebb9@byu.net
From 59d8114ee4717da16d5f6d0f904af62d069d35b5 Mon Sep 17 00:00:00 2001 From: Eric Blake <ebb9@byu.net> Date: Sat, 23 Jan 2010 15:14:09 -0700 Subject: [PATCH] Start modernizing configure.
* configure.in: Move... * configure.ac: ...here. (AM_CONFIG_HEADER): Replace obsolete macro... (AC_CONFIG_HEADERS): ...with modern replacement. Signed-off-by: Eric Blake <ebb9@byu.net> --- configure.in => configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) rename configure.in => configure.ac (99%) diff --git a/configure.in b/configure.ac similarity index 99% rename from configure.in rename to configure.ac index 8cbbfe5..32f376e 100644 --- a/configure.in +++ b/configure.ac @@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([libvirt], [0.7.5]) AC_CONFIG_SRCDIR([src/libvirt.c]) AC_CONFIG_AUX_DIR([build-aux]) -AM_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADERS([config.h]) dnl Make automake keep quiet about wildcards & other GNUmake-isms AM_INIT_AUTOMAKE([-Wno-portability]) -- 1.6.6