Re: [libvirt] [PATCH] qemu: fix build without gnutls installed

2016-04-09 Thread Roman Bogorodskiy
Cole Robinson wrote: > On 04/09/2016 03:13 PM, Roman Bogorodskiy wrote: > > Move including of gnutls/gnutls.h in qemu/qemu_domain.c under the > > "ifdef WITH_GNUTLS" check because otherwise it fails like this: > > > > CC qemu/libvirt_driver_qemu_impl_la-qemu_domain.lo > > qemu/qemu_doma

Re: [libvirt] [PATCH] qemu: fix build without gnutls installed

2016-04-09 Thread Cole Robinson
On 04/09/2016 03:13 PM, Roman Bogorodskiy wrote: > Move including of gnutls/gnutls.h in qemu/qemu_domain.c under the > "ifdef WITH_GNUTLS" check because otherwise it fails like this: > > CC qemu/libvirt_driver_qemu_impl_la-qemu_domain.lo > qemu/qemu_domain.c:50:10: fatal error: 'gnutls/gnu

[libvirt] [PATCH] qemu: fix build without gnutls installed

2016-04-09 Thread Roman Bogorodskiy
Move including of gnutls/gnutls.h in qemu/qemu_domain.c under the "ifdef WITH_GNUTLS" check because otherwise it fails like this: CC qemu/libvirt_driver_qemu_impl_la-qemu_domain.lo qemu/qemu_domain.c:50:10: fatal error: 'gnutls/gnutls.h' file not found in case if gnutls is not installed o

[libvirt] [PATCH] qemu: Fix build without gnutls

2013-05-27 Thread Jiri Denemark
"error" label in qemuMigrationCookieGraphicsAlloc is now used unconditionally thanks to VIR_STRDUP. --- Pushed as a build-breaker. src/qemu/qemu_migration.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/qemu/qemu_migration.c b/src/qemu/qemu_migration.c index 73ced73..19b1236 100644 --