mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-29 17:33:09 +00:00
* src/stats_linux.c: patch from Jim Paris to fix compilation
when Xen isn't installed * src/qemu_conf.h: small cleanup of signedness of bitfields from Jim Paris Daniel
This commit is contained in:
parent
ec58960745
commit
a4499a22c5
@ -1,3 +1,10 @@
|
|||||||
|
Thu Nov 15 11:54:40 CET 2007 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
|
* src/stats_linux.c: patch from Jim Paris to fix compilation
|
||||||
|
when Xen isn't installed
|
||||||
|
* src/qemu_conf.h: small cleanup of signedness of bitfields
|
||||||
|
from Jim Paris
|
||||||
|
|
||||||
Wed Nov 14 18:09:31 CET 2007 Daniel Veillard <veillard@redhat.com>
|
Wed Nov 14 18:09:31 CET 2007 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
* doc/libvir.html doc/format.html: add missing docs for
|
* doc/libvir.html doc/format.html: add missing docs for
|
||||||
|
@ -305,8 +305,8 @@ struct qemud_driver {
|
|||||||
char *networkConfigDir;
|
char *networkConfigDir;
|
||||||
char *networkAutostartDir;
|
char *networkAutostartDir;
|
||||||
char logDir[PATH_MAX];
|
char logDir[PATH_MAX];
|
||||||
int vncTLS : 1;
|
unsigned int vncTLS : 1;
|
||||||
int vncTLSx509verify : 1;
|
unsigned int vncTLSx509verify : 1;
|
||||||
char *vncTLSx509certdir;
|
char *vncTLSx509certdir;
|
||||||
char vncListen[BR_INET_ADDR_MAXLEN];
|
char vncListen[BR_INET_ADDR_MAXLEN];
|
||||||
};
|
};
|
||||||
|
@ -19,7 +19,9 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#ifdef WITH_XEN
|
||||||
#include <xs.h>
|
#include <xs.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
#include "xen_unified.h"
|
#include "xen_unified.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user