diff options
author | Shelley Gong <shelleygong@vmware.com> | 2009-05-11 10:08:56 -0700 |
---|---|---|
committer | Philip Langdale <philipl@fido2.homeip.net> | 2009-05-11 10:13:58 -0700 |
commit | d61609868697825717d2f6a63b2a6177cb13873b (patch) | |
tree | fc0922560b0898a4b578af1247ab92045e2714c6 /tools | |
parent | d5ae42ec3849672438823b08ad06a69289ae99c5 (diff) |
1) Fix bug where motion notify events were being sent with every button event.xf86-input-vmmouse-12.6.4
2) Classify relative vs. absolute packets individually rather than from a
global flag.
3) Compile with older distros.
4) Bump for 12.6.4 Release.
Signed-off-by: Philip Langdale <philipl@fido2.homeip.net>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/vmmouse_detect.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/vmmouse_detect.c b/tools/vmmouse_detect.c index 0dd4827..ac238b4 100644 --- a/tools/vmmouse_detect.c +++ b/tools/vmmouse_detect.c @@ -30,10 +30,16 @@ #include <signal.h> #include "vmmouse_client.h" +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + void segvCB(int sig) { +#if defined HAVE_XORG_SERVER_1_1_0 exit(1); +#endif } |