[libvirt] [PATCH 3/7] New configure option --with-rhel5-api

Markus Armbruster armbru at redhat.com
Tue Dec 23 15:05:13 UTC 2008


RHEL-5 has a peculiar version of Xen, which requires some special
casing.  Add a configure option for that.  It will be used in later
commits.

Signed-off-by: Markus Armbruster <armbru at redhat.com>
---
 configure.in |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/configure.in b/configure.in
index e870004..b65333e 100644
--- a/configure.in
+++ b/configure.in
@@ -229,6 +229,14 @@ fi
 AM_CONDITIONAL([LIBVIRT_INIT_SCRIPTS_RED_HAT], test x$with_init_scripts = xredhat)
 AC_MSG_RESULT($with_init_scripts)
 
+dnl RHEL-5 has a peculiar version of Xen, which requires some special casing
+AC_ARG_WITH([rhel5-api],
+	[AC_HELP_STRING([--with-rhel5-api=[ARG]],
+		[build for the RHEL-5 API [default=no]])])
+if test x"$with_rhel5_api" = x"yes"; then
+   AC_DEFINE([WITH_RHEL5_API], [1], [whether building for the RHEL-5 API])
+fi
+
 dnl
 dnl ensure that Fedora's system-config-firewall knows
 dnl about libvirt's iptables rules
-- 
1.5.4.3




More information about the libvir-list mailing list