mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
716314358a
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>
14 lines
246 B
C
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_ */
|