From: Eric Blake Date: Fri, 31 May 2013 16:47:22 +0000 (-0600) Subject: build: skip qemu in tests when !WITH_QEMU X-Git-Tag: v1.0.6~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3d2b971518a61886e28626886c99dcc0f5a8285c;p=thirdparty%2Flibvirt.git build: skip qemu in tests when !WITH_QEMU A mingw build (where the qemu driver is not built, so WITH_QEMU is undefined) failed with: In file included from ../../src/qemu/qemu_command.h:30:0, from ../../tests/testutilsqemu.h:4, from ../../tests/networkxml2xmltest.c:14: ../../src/qemu/qemu_conf.h:53:4: error: #error "Port me" But since testutilsqemu.c is already conditional, the header should be likewise. * tests/testutilsqemu.h: Make content conditional. Signed-off-by: Eric Blake --- diff --git a/tests/testutilsqemu.h b/tests/testutilsqemu.h index 2ca42ab3c6..f01b722d7c 100644 --- a/tests/testutilsqemu.h +++ b/tests/testutilsqemu.h @@ -1,8 +1,10 @@ +#ifdef WITH_QEMU -#include "capabilities.h" -#include "domain_conf.h" -#include "qemu/qemu_command.h" +# include "capabilities.h" +# include "domain_conf.h" +# include "qemu/qemu_command.h" virCapsPtr testQemuCapsInit(void); virDomainXMLOptionPtr testQemuXMLConfInit(void); extern qemuBuildCommandLineCallbacks testCallbacks; +#endif