From fceab3378435dccdf50a09f344852ab81e25dd1c Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 2 Nov 2007 09:44:45 +0000 Subject: [PATCH] ioemu: Remove dependency on linux/input.h Signed-off-by: Keir Fraser --- tools/ioemu/hw/xenfb.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/ioemu/hw/xenfb.c b/tools/ioemu/hw/xenfb.c index fe8ea49358..a36caae7a2 100644 --- a/tools/ioemu/hw/xenfb.c +++ b/tools/ioemu/hw/xenfb.c @@ -16,10 +16,13 @@ #include #include #include -#include #include "xenfb.h" +#ifndef BTN_LEFT +#define BTN_LEFT 0x110 /* from */ +#endif + // FIXME defend against malicious frontend? struct xenfb; -- 2.30.2