From 18ca060ca56260b9699c28cd626a66719e4017ae Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 23 Oct 2008 16:11:23 +0100 Subject: [PATCH] bt-host.c: Indirect disabling via NO_BLUETOOTH_PASSTHROUGH We set NO_BLUETOOTH_PASSTHROUGH on _WIN32. This allows other configurations to disable it too. (Eg, Xen stubdomains.) Signed-off-by: Ian Jackson --- bt-host.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bt-host.c b/bt-host.c index 042a55e4..0110ff53 100644 --- a/bt-host.c +++ b/bt-host.c @@ -24,7 +24,11 @@ #include "sysemu.h" #include "net.h" -#ifndef _WIN32 +#ifdef _WIN32 +#define NO_BLUETOOTH_PASSTHROUGH +#endif + +#ifndef NO_BLUETOOTH_PASSTHROUGH # include # include # include -- 2.39.5