From 8bb66d860148958cb48144f0c5e2dcaaa209a3cd Mon Sep 17 00:00:00 2001 From: aliguori Date: Mon, 13 Apr 2009 13:29:40 +0000 Subject: [PATCH] Recognise evdev(xx)_aliases(yy) and xfree86(xx)_aliases(yy) as keymap names. Newer Xorg use these with non-default kemaps (such as the ThinkPad keymap). aliguori: this is from r7097 in trunk by balrog Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/branches/stable_0_10@7098 c046a42c-6fe2-441c-8c8c-71466251a162 --- sdl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdl.c b/sdl.c index ba569571..74f084c0 100644 --- a/sdl.c +++ b/sdl.c @@ -161,9 +161,9 @@ static int check_for_evdev(void) keycodes = XGetAtomName(info.info.x11.display, desc->names->keycodes); if (keycodes == NULL) fprintf(stderr, "could not lookup keycode name\n"); - else if (strstart(keycodes, "evdev_", NULL)) + else if (strstart(keycodes, "evdev", NULL)) has_evdev = 1; - else if (!strstart(keycodes, "xfree86_", NULL)) + else if (!strstart(keycodes, "xfree86", NULL)) fprintf(stderr, "unknown keycodes `%s', please report to qemu-devel@nongnu.org\n", keycodes); -- 2.39.5