libvirt/tests/testutilsxen.h
Martin Kletzander 716314358a 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>
2016-06-14 08:25:25 +02:00

14 lines
246 B
C

#ifndef _TESTUTILSXEN_H_
# define _TESTUTILSXEN_H_
# include "capabilities.h"
# ifdef WITH_LIBXL
# include "libxl/libxl_capabilities.h"
# endif
virCapsPtr testXenCapsInit(void);
virCapsPtr testXLInitCaps(void);
#endif /* _TESTUTILSXEN_H_ */