Hi,
I committed this patch that removes the INIT_LOAD_LIBRARY check from the Qt
peers. libgcj no longer requires INIT_LOAD_LIBRARY for the peers because of a
change in how they are loaded.
Tom
2006-06-07 Thomas Fitzsimmons <[EMAIL PROTECTED]>
* gnu/java/awt/peer/qt/QtToolkit.java (initToolkit): Load
libqtpeer.so unconditionally.
Index: gnu/java/awt/peer/qt/QtToolkit.java
===================================================================
RCS file: /sources/classpath/classpath/gnu/java/awt/peer/qt/QtToolkit.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gnu/java/awt/peer/qt/QtToolkit.java 3 Oct 2005 22:08:01 -0000 1.5
+++ gnu/java/awt/peer/qt/QtToolkit.java 7 Jun 2006 22:00:01 -0000 1.6
@@ -136,8 +136,7 @@
{
eventQueue = new EventQueue();
repaintThread = new QtRepaintThread();
- if (Configuration.INIT_LOAD_LIBRARY)
- System.loadLibrary("qtpeer");
+ System.loadLibrary("qtpeer");
String theme = null;
try