changeset in /hg/icedtea6: 2009-01-29 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Thu Jan 29 07:00:08 PST 2009
changeset 0641929711bf in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=0641929711bf
description:
2009-01-29 Omair Majid <omajid at redhat.com>
* patches/icedtea-java2d-dasher.patch: New patch. Fix interpretation of
dash array elements in BasicStroke.
* Makefile.am (ICEDTEA_PATCHES): Apply the above.
* HACKING: Document the above.
diffstat:
4 files changed, 21 insertions(+), 1 deletion(-)
ChangeLog | 7 +++++++
HACKING | 1 +
Makefile.am | 3 ++-
patches/icedtea-java2d-dasher.patch | 11 +++++++++++
diffs (53 lines):
diff -r 674929aec134 -r 0641929711bf ChangeLog
--- a/ChangeLog Wed Jan 28 10:48:37 2009 -0500
+++ b/ChangeLog Thu Jan 29 09:59:12 2009 -0500
@@ -1,3 +1,10 @@ 2009-01-28 Lillian Angel <langel at redha
+2009-01-29 Omair Majid <omajid at redhat.com>
+
+ * patches/icedtea-java2d-dasher.patch: New patch. Fix interpretation of
+ dash array elements in BasicStroke.
+ * Makefile.am (ICEDTEA_PATCHES): Apply the above.
+ * HACKING: Document the above.
+
2009-01-28 Lillian Angel <langel at redhat.com>
* NEWS: Updated date.
diff -r 674929aec134 -r 0641929711bf HACKING
--- a/HACKING Wed Jan 28 10:48:37 2009 -0500
+++ b/HACKING Thu Jan 29 09:59:12 2009 -0500
@@ -82,6 +82,7 @@ The following patches are currently appl
* icedtea-no-precompiled.patch: Don't use precompiled header files in hotspot.
* icedtea-includedb.patch: Add missing include files.
* icedtea-awt-window-size.patch: Fix X11 window size calculation (S6721088).
+* icedtea-java2d-dasher.patch: Fix interpretation of dash array elements in BasicStroke (S6793344).
The following patches are only applied to OpenJDK6 in IcedTea6:
diff -r 674929aec134 -r 0641929711bf Makefile.am
--- a/Makefile.am Wed Jan 28 10:48:37 2009 -0500
+++ b/Makefile.am Thu Jan 29 09:59:12 2009 -0500
@@ -609,7 +609,8 @@ ICEDTEA_PATCHES += \
ICEDTEA_PATCHES += \
$(DISTRIBUTION_PATCHES) \
patches/icedtea-demo-swingapplet.patch \
- patches/icedtea-awt-window-size.patch
+ patches/icedtea-awt-window-size.patch \
+ patches/icedtea-java2d-dasher.patch
stamps/extract.stamp: stamps/download.stamp
if OPENJDK_SRC_DIR_FOUND
diff -r 674929aec134 -r 0641929711bf patches/icedtea-java2d-dasher.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/icedtea-java2d-dasher.patch Thu Jan 29 09:59:12 2009 -0500
@@ -0,0 +1,11 @@
+--- openjdk/jdk/src/share/classes/sun/java2d/pisces/Dasher.java.orig 2009-01-13 12:14:53.000000000 -0500
++++ openjdk/jdk/src/share/classes/sun/java2d/pisces/Dasher.java 2009-01-13 12:15:09.000000000 -0500
+@@ -120,7 +120,7 @@
+
+ // Normalize so 0 <= phase < dash[0]
+ int idx = 0;
+- dashOn = false;
++ dashOn = true;
+ int d;
+ while (phase >= (d = dash[idx])) {
+ phase -= d;
More information about the distro-pkg-dev
mailing list