Commit 67e88bcd by Mark Wielaard

CairoGraphics2D.java: Always loadLibrary gtk-peer.

        * gnu/java/awt/peer/gtk/CairoGraphics2D.java: Always loadLibrary
        gtk-peer.
        * gnu/java/awt/peer/gtk/GdkFontPeer.java: Likewise.
        * gnu/java/awt/peer/gtk/GdkPixbufDecoder.java: Likewise.
        * gnu/java/awt/peer/gtk/GdkGraphicsEnvironment.java: Likewise.
        * gnu/java/awt/peer/gtk/GtkToolkit.java: Likewise.
        * gnu/java/awt/peer/gtk/GdkScreenGraphicsDevice.java: Likewise.
        * gnu/java/awt/peer/gtk/*.class: Rebuilt.

From-SVN: r139181
parent 0859c412
2008-08-17 Mark Wielaard <mark@klomp.org>
* gnu/java/awt/peer/gtk/CairoGraphics2D.java: Always loadLibrary
gtk-peer.
* gnu/java/awt/peer/gtk/GdkFontPeer.java: Likewise.
* gnu/java/awt/peer/gtk/GdkPixbufDecoder.java: Likewise.
* gnu/java/awt/peer/gtk/GdkGraphicsEnvironment.java: Likewise.
* gnu/java/awt/peer/gtk/GtkToolkit.java: Likewise.
* gnu/java/awt/peer/gtk/GdkScreenGraphicsDevice.java: Likewise.
* gnu/java/awt/peer/gtk/*.class: Rebuilt.
2008-06-28 Matthias Klose <doko@ubuntu.com> 2008-06-28 Matthias Klose <doko@ubuntu.com>
* m4/ac_prog_javac.m4: Disable check for JAVAC, when * m4/ac_prog_javac.m4: Disable check for JAVAC, when
......
...@@ -122,7 +122,7 @@ public abstract class CairoGraphics2D extends Graphics2D ...@@ -122,7 +122,7 @@ public abstract class CairoGraphics2D extends Graphics2D
{ {
static static
{ {
if (Configuration.INIT_LOAD_LIBRARY) if (true) // GCJ LOCAL
{ {
System.loadLibrary("gtkpeer"); System.loadLibrary("gtkpeer");
} }
......
...@@ -167,7 +167,7 @@ public class GdkFontPeer extends ClasspathFontPeer ...@@ -167,7 +167,7 @@ public class GdkFontPeer extends ClasspathFontPeer
static static
{ {
if (Configuration.INIT_LOAD_LIBRARY) if (true) // GCJ LOCAL
{ {
System.loadLibrary("gtkpeer"); System.loadLibrary("gtkpeer");
} }
......
...@@ -73,7 +73,7 @@ public class GdkGraphicsEnvironment extends ClasspathGraphicsEnvironment ...@@ -73,7 +73,7 @@ public class GdkGraphicsEnvironment extends ClasspathGraphicsEnvironment
static static
{ {
if (Configuration.INIT_LOAD_LIBRARY) if (true) // GCJ LOCAL
{ {
System.loadLibrary("gtkpeer"); System.loadLibrary("gtkpeer");
} }
......
...@@ -75,7 +75,7 @@ public class GdkPixbufDecoder extends gnu.java.awt.image.ImageDecoder ...@@ -75,7 +75,7 @@ public class GdkPixbufDecoder extends gnu.java.awt.image.ImageDecoder
{ {
static static
{ {
if (Configuration.INIT_LOAD_LIBRARY) if (true) // GCJ LOCAL
{ {
System.loadLibrary("gtkpeer"); System.loadLibrary("gtkpeer");
} }
......
...@@ -99,7 +99,7 @@ class GdkScreenGraphicsDevice extends GraphicsDevice ...@@ -99,7 +99,7 @@ class GdkScreenGraphicsDevice extends GraphicsDevice
static static
{ {
if (Configuration.INIT_LOAD_LIBRARY) if (true) // GCJ LOCAL
{ {
System.loadLibrary("gtkpeer"); System.loadLibrary("gtkpeer");
} }
......
...@@ -172,7 +172,7 @@ public class GtkToolkit extends gnu.java.awt.ClasspathToolkit ...@@ -172,7 +172,7 @@ public class GtkToolkit extends gnu.java.awt.ClasspathToolkit
static static
{ {
if (Configuration.INIT_LOAD_LIBRARY) if (true) // GCJ LOCAL
{ {
System.loadLibrary("gtkpeer"); System.loadLibrary("gtkpeer");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment