aboutsummaryrefslogtreecommitdiffstats
path: root/make/config
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-06-26 06:43:46 +0200
committerSven Gothel <[email protected]>2011-06-26 06:43:46 +0200
commit56e46acce6d26e0fdc2fd317649b11f1f71f621a (patch)
treebc1d7714f0450681d584b2fafb123d47bab1b340 /make/config
parentf405ae4ac0928fa5682f0a1f75c70cdb46e261b4 (diff)
Woraround for bug 502: X11/NEWT Stalling due to libX11/XCB Multithreading bug (libX11 1.4.2, libXCB 1.7; ubuntu 11.04, ..)
- https://jogamp.org/bugzilla/show_bug.cgi?id=502 - set the boolean property 'nativewindow.x11.mt-bug' to 'true', indicating the erroneous libX11/libXCB behavior. This will enable extensive X11 locking even in NEWT.
Diffstat (limited to 'make/config')
-rw-r--r--make/config/nativewindow/win32-CustomJavaCode.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/make/config/nativewindow/win32-CustomJavaCode.java b/make/config/nativewindow/win32-CustomJavaCode.java
index 5d0c82998..e14e4d14c 100644
--- a/make/config/nativewindow/win32-CustomJavaCode.java
+++ b/make/config/nativewindow/win32-CustomJavaCode.java
@@ -25,6 +25,8 @@
}
}
+ public static boolean requiresToolkitLock() { return false; }
+
private static RegisteredClass dummyWindowClass = null;
private static Object dummyWindowSync = new Object();