diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-12-17 18:24:40 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-12-18 10:33:11 -0800 |
commit | 1df4bd6011e110dcf0649b15bfffd4ab9e6961d6 (patch) | |
tree | 294b417d889af9f4ec0817facf9c17eb8ca88eb8 | |
parent | 1d2e189cdc1d65c9ca2aa0a950780dc18e6c50f1 (diff) |
Change default xkb model from pc104 to pc105
PC105 is a more useful default for non-American keyboard users,
not harmful for American PC101/PC104 keyboard users.
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 9cad91bcd..e20272623 100644 --- a/configure.ac +++ b/configure.ac @@ -527,9 +527,9 @@ AC_ARG_WITH(default-xkb-rules, AS_HELP_STRING([--with-default-xkb-rules=RULES], [ XKB_DFLT_RULES="$withval" ], [ XKB_DFLT_RULES="" ]) AC_ARG_WITH(default-xkb-model, AS_HELP_STRING([--with-default-xkb-model=MODEL], - [Keyboard model (default: pc104)]), + [Keyboard model (default: pc105)]), [ XKB_DFLT_MODEL="$withval" ], - [ XKB_DFLT_MODEL="pc104" ]) + [ XKB_DFLT_MODEL="pc105" ]) AC_ARG_WITH(default-xkb-layout, AS_HELP_STRING([--with-default-xkb-layout=LAYOUT], [Keyboard layout (default: us)]), [ XKB_DFLT_LAYOUT="$withval" ], |