The xs.h header is now deprecated and produce a warning. This prevent 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.per...@citrix.com> --- configure | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/configure b/configure index cef0a71..b13adb0 100755 --- a/configure +++ b/configure @@ -1381,7 +1381,6 @@ if test "$xen" != "no" ; then # Xen (any) cat > $TMPC <<EOF #include <xenctrl.h> -#include <xs.h> int main(void) { return 0; } -- Anthony PERARD