diff options
author | stwo <stwo> | 2013-01-31 11:49:40 (GMT) |
---|---|---|
committer | stwo <stwo> | 2013-01-31 11:49:40 (GMT) |
commit | f829741a7003e3b2ae80c0f11dcda8cccfe3a241 (patch) | |
tree | 2b7a02eff512dc58baeb018bcc88c60535091845 /unix/tkUnixKey.c | |
parent | 5a7500dbc280d09ffff6c3e69ddf87c7529210d7 (diff) | |
download | tk-f829741a7003e3b2ae80c0f11dcda8cccfe3a241.zip tk-f829741a7003e3b2ae80c0f11dcda8cccfe3a241.tar.gz tk-f829741a7003e3b2ae80c0f11dcda8cccfe3a241.tar.bz2 |
Bug [3599928]: Use XkbKeycodeToKeysym if available.
Diffstat (limited to 'unix/tkUnixKey.c')
-rw-r--r-- | unix/tkUnixKey.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/unix/tkUnixKey.c b/unix/tkUnixKey.c index b7fc97f..ef5b22c 100644 --- a/unix/tkUnixKey.c +++ b/unix/tkUnixKey.c @@ -11,7 +11,12 @@ */ #include "tkInt.h" -#include <X11/XKBlib.h> + +#ifdef HAVE_XKBKEYCODETOKEYSYM +# include <X11/XKBlib.h> +#else +# define XkbKeycodeToKeysym(D,K,G,L) XKeycodeToKeysym(D,K,L) +#endif /* * Prototypes for local functions defined in this file: |