Fix build without xen

Commit 11567cf66f introduced an include which will only work when
building with xen (particularly libxl).  However, that file is supposed
to be includable from anywhere (as with other testutils* files.

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
Martin Kletzander 2016-06-14 08:21:01 +02:00
parent b63c7a0b39
commit 716314358a

View File

@ -2,7 +2,9 @@
# define _TESTUTILSXEN_H_
# include "capabilities.h"
# include "libxl/libxl_capabilities.h"
# ifdef WITH_LIBXL
# include "libxl/libxl_capabilities.h"
# endif
virCapsPtr testXenCapsInit(void);