mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-07 04:08:55 +00:00
Disable bluetooth proxy compilation on win32.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5365 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
9d56d2dce6
commit
2e9b08e59e
@ -24,6 +24,7 @@
|
|||||||
#include "sysemu.h"
|
#include "sysemu.h"
|
||||||
#include "net.h"
|
#include "net.h"
|
||||||
|
|
||||||
|
#ifndef _WIN32
|
||||||
# include <errno.h>
|
# include <errno.h>
|
||||||
# include <sys/ioctl.h>
|
# include <sys/ioctl.h>
|
||||||
# include <sys/uio.h>
|
# include <sys/uio.h>
|
||||||
@ -196,3 +197,11 @@ struct HCIInfo *bt_host_hci(const char *id)
|
|||||||
|
|
||||||
return &s->hci;
|
return &s->hci;
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
struct HCIInfo *bt_host_hci(const char *id)
|
||||||
|
{
|
||||||
|
fprintf(stderr, "qemu: bluetooth passthrough not supported (yet)\n", errno);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user