diff options
author | Daniel P. Berrange | 2017-09-29 12:11:58 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2017-10-16 14:50:54 +0200 |
commit | 927128222b0a91f56c13a0e040d0c68da06ec433 (patch) | |
tree | 56af72baf1acd31f4cb7e45a82fbfc81efabfc5a /configure | |
parent | docker: don't rely on submodules existing in the main checkout (diff) | |
download | qemu-927128222b0a91f56c13a0e040d0c68da06ec433.tar.gz qemu-927128222b0a91f56c13a0e040d0c68da06ec433.tar.xz qemu-927128222b0a91f56c13a0e040d0c68da06ec433.zip |
ui: add keycodemapdb repository as a GIT submodule
The https://gitlab.com/keycodemap/keycodemapdb/ repo contains a
data file mapping between all the different scancode/keycode/keysym
sets that are known, and a tool to auto-generate lookup tables for
different combinations.
It is used by GTK-VNC, SPICE-GTK and libvirt for mapping keys.
Using it in QEMU will let us replace many hand written lookup
tables with auto-generated tables from a master data source,
reducing bugs. Adding new QKeyCodes will now only require the
master table to be updated, all ~20 other tables will be
automatically updated to follow.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Message-id: 20170929101201.21039-4-berrange@redhat.com
[ kraxel: fix build ]
[ kraxel: switch repo to qemu.git mirror ]
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -264,7 +264,13 @@ cc_i386=i386-pc-linux-gnu-gcc libs_qga="" debug_info="yes" stack_protector="" -git_submodules="" + +if test -e "$source_path/.git" +then + git_submodules="ui/keycodemapdb" +else + git_submodules="" +fi # Don't accept a target_list environment variable. unset target_list |