aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony PERARD <anthony.perard@citrix.com>2012-08-01 13:42:44 +0000
committerStefano Stabellini <stefano.stabellini@eu.citrix.com>2012-08-01 13:42:44 +0000
commitf6ccf1f45385c33ec0ea0463cdb0b1fba3bd7178 (patch)
treef9ec5c43df799efe88c882e5ff948b9d802ac57d
parent0b22ef0f57a8910d849602bef0940edcd0553d2c (diff)
configure: Fix xen probe with Xen 4.2 and later
The xs.h header is now deprecated and produces a warning. This prevents the configure script from enabling Xen with xen-unstable whom will become 4.2. As this header is not anymore common to every version of Xen, we just remove it from the early probe for Xen. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
-rwxr-xr-xconfigure1
1 files changed, 0 insertions, 1 deletions
diff --git a/configure b/configure
index 027a718140..3ca13a6ce1 100755
--- a/configure
+++ b/configure
@@ -1384,7 +1384,6 @@ if test "$xen" != "no" ; then
# Xen (any)
cat > $TMPC <<EOF
#include <xenctrl.h>
-#include <xs.h>
int main(void) {
return 0;
}