classpath 0.97.2: Added patch to fix to fix drawPolyline bug.
authorRobert Schuster <rschus@entw2.(none)>
Wed, 15 Oct 2008 12:30:56 +0000 (14:30 +0200)
committerRobert Schuster <rschus@entw2.(none)>
Wed, 15 Oct 2008 12:30:56 +0000 (14:30 +0200)
packages/classpath/classpath-0.97.2/drawpolyline.patch [new file with mode: 0644]
packages/classpath/classpath_0.97.2.bb

diff --git a/packages/classpath/classpath-0.97.2/drawpolyline.patch b/packages/classpath/classpath-0.97.2/drawpolyline.patch
new file mode 100644 (file)
index 0000000..407f991
--- /dev/null
@@ -0,0 +1,26 @@
+Index: gnu/java/awt/peer/gtk/CairoGraphics2D.java
+===================================================================
+RCS file: /sources/classpath/classpath/gnu/java/awt/peer/gtk/CairoGraphics2D.java,v
+retrieving revision 1.73
+diff -u -r1.73 CairoGraphics2D.java
+--- gnu/java/awt/peer/gtk/CairoGraphics2D.java 8 Feb 2008 22:17:39 -0000       1.73
++++ gnu/java/awt/peer/gtk/CairoGraphics2D.java 14 Oct 2008 06:50:57 -0000
+@@ -1246,7 +1246,10 @@
+   public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints)
+   {
+-    draw(new Polygon(xPoints, yPoints, nPoints));
++              for (int i = 1; i < nPoints; i++)
++              draw(new Line2D.Double(
++                                              xPoints[i - 1], yPoints[i - 1],
++                                              xPoints[i], yPoints[i]));
+   }
+   public void drawOval(int x, int y, int width, int height)
+@@ -2171,4 +2174,4 @@
+     
+     return new Rectangle2D.Double(minX, minY, (maxX - minX), (maxY - minY));
+   }
+-}
+\ No newline at end of file
++}
index 242bab9..a6327d3 100644 (file)
@@ -8,9 +8,10 @@ SRC_URI += "\
   file://autotools.patch;patch=1 \
   file://decimalformat.patch;patch=1 \
   file://cp-byte-loophelper.patch;patch=1;pnum=0 \
+  file://drawpolyline.patch;patch=1;pnum=0 \
   "
 
-PR = "r4"
+PR = "r5"
 
 DEPENDS += "gtk+ gconf libxtst"