summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixKey.c
diff options
context:
space:
mode:
authorstwo <stwo>2013-01-31 11:41:18 (GMT)
committerstwo <stwo>2013-01-31 11:41:18 (GMT)
commit17cb86f48762e568351db98515ddd444b7066790 (patch)
tree45ce59bcddb014db163b1cef43f02bc642cdf6fa /unix/tkUnixKey.c
parentb5779d80351838f9fda609c2a1febd052109695d (diff)
downloadtk-17cb86f48762e568351db98515ddd444b7066790.zip
tk-17cb86f48762e568351db98515ddd444b7066790.tar.gz
tk-17cb86f48762e568351db98515ddd444b7066790.tar.bz2
Bug [3599928]: Use XkbKeycodeToKeysym if available.
Diffstat (limited to 'unix/tkUnixKey.c')
-rw-r--r--unix/tkUnixKey.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/unix/tkUnixKey.c b/unix/tkUnixKey.c
index d07f13a..d2de6f7 100644
--- a/unix/tkUnixKey.c
+++ b/unix/tkUnixKey.c
@@ -11,6 +11,13 @@
*/
#include "tkInt.h"
+
+#ifdef HAVE_XKBKEYCODETOKEYSYM
+# include <X11/XKBlib.h>
+#else
+# define XkbKeycodeToKeysym(D,K,G,L) XKeycodeToKeysym(D,K,L)
+#endif
+
#include <X11/XKBlib.h>
/*