diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-24 12:29:23 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-24 12:29:23 (GMT) |
commit | c0b4e45ffd661b4211d91f8842bfe94e913e9adc (patch) | |
tree | fdaecf6d15222086c86feb03e61fc8fa8fb2d7d0 /unix/tkUnixEvent.c | |
parent | 8c8d8e51384939bc47c12e375ba040d1717a2f76 (diff) | |
download | tk-c0b4e45ffd661b4211d91f8842bfe94e913e9adc.zip tk-c0b4e45ffd661b4211d91f8842bfe94e913e9adc.tar.gz tk-c0b4e45ffd661b4211d91f8842bfe94e913e9adc.tar.bz2 |
Disable XInitThreads() call until we have a better test for it.
Diffstat (limited to 'unix/tkUnixEvent.c')
-rw-r--r-- | unix/tkUnixEvent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tkUnixEvent.c b/unix/tkUnixEvent.c index 7d0a5b7..9a29f51 100644 --- a/unix/tkUnixEvent.c +++ b/unix/tkUnixEvent.c @@ -128,7 +128,8 @@ TkpOpenDisplay( int minor = 0; int reason = 0; unsigned int use_xkb = 0; -#if defined(XKEYCODETOKEYSYM_IS_DEPRECATED) && defined(TCL_THREADS) + /* Disabled, until we have a better test. See [Bug 3613668] */ +#if 0 && defined(XKEYCODETOKEYSYM_IS_DEPRECATED) && defined(TCL_THREADS) static int xinited = 0; static Tcl_Mutex xinitMutex = NULL; |