Module Name: xsrc
Committed By: macallan
Date: Thu Apr 28 23:27:02 UTC 2011
Modified Files:
xsrc/external/mit/xf86-input-keyboard/dist/src: kbd.c
Log Message:
default to wskbd only if DEFAULT_TO_WSKBD is defined
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xf86-input-keyboard/dist/src/kbd.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: xsrc/external/mit/xf86-input-keyboard/dist/src/kbd.c
diff -u xsrc/external/mit/xf86-input-keyboard/dist/src/kbd.c:1.3 xsrc/external/mit/xf86-input-keyboard/dist/src/kbd.c:1.4
--- xsrc/external/mit/xf86-input-keyboard/dist/src/kbd.c:1.3 Mon Apr 18 23:30:11 2011
+++ xsrc/external/mit/xf86-input-keyboard/dist/src/kbd.c Thu Apr 28 23:27:02 2011
@@ -79,7 +79,11 @@
static const char *kbdDefaults[] = {
#ifdef __NetBSD__
+#ifdef DEFAULT_TO_WSKBD
"Protocol", "wskbd",
+#else
+ "Protocol", "standard",
+#endif
#else /* NetBSD */
#ifdef XQUEUE
"Protocol", "Xqueue",