summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/kbd.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/kbd.c b/src/kbd.c
index c86c2fc..b2e858f 100644
--- a/src/kbd.c
+++ b/src/kbd.c
@@ -113,12 +113,6 @@ static const OptionInfoRec KeyboardOptions[] = {
{ -1, NULL, OPTV_NONE, {0}, FALSE }
};
-/* Xorg 1.6 and earlier put the default XKB rules file in __XKBDEFRULES__
- in xorg-server.h, later versions switched to XKB_DFLT_RULES */
-#if !defined(XKB_DFLT_RULES) && defined(__XKBDEFRULES__)
-# define XKB_DFLT_RULES __XKBDEFRULES__
-#endif
-
static const char *kbdDefaults[] = {
#ifdef XQUEUE
"Protocol", "Xqueue",
@@ -126,7 +120,7 @@ static const char *kbdDefaults[] = {
"Protocol", "standard",
#endif
"AutoRepeat", "500 30",
- "XkbRules", XKB_DFLT_RULES,
+ "XkbRules", "base",
"XkbModel", "pc105",
"XkbLayout", "us",
"CustomKeycodes", "off",