5d847512a3
- updated to aarch64-shenandoah-jdk8u151-b12 (from aarch64-port/jdk8u-shenandoah) of hotspot - used aarch64-port-jdk8u-aarch64-jdk8u151-b12.tar.xz as new sources - used aarch64-port-jdk8u-shenandoah-aarch64-shenandoah-jdk8u151-b12.tar.xz as new sources for hotspot - tapset updated to 3.6pre02 - policies adapted to new limited/unlimited schmea - above acomapnied by c-j-c 3.3 - alligned patches and added PPC ones (thanx to gnu_andrew) - added patch209: 8035496-hotspot.patch - added patch210: suse_linuxfilestore.patc
22 lines
847 B
Diff
22 lines
847 B
Diff
# HG changeset patch
|
|
# User neugens
|
|
# Date 1507735508 -3600
|
|
# Wed Oct 11 16:25:08 2017 +0100
|
|
# Node ID 5b91bf11d0f41a6124ffb0fcd8870507b50bd734
|
|
# Parent 7b1a2f967cd8e950fe7dc47d716af13d36239a38
|
|
8188030, PR3459, RH1484079: AWT java apps fail to start when some minimal fonts are present
|
|
Summary: Handle CFF fonts
|
|
Reviewed-by: andrew, prr
|
|
|
|
diff --git a/src/solaris/native/sun/awt/fontpath.c b/src/solaris/native/sun/awt/fontpath.c
|
|
--- openjdk/jdk/src/solaris/native/sun/awt/fontpath.c
|
|
+++ openjdk/jdk/src/solaris/native/sun/awt/fontpath.c
|
|
@@ -1233,6 +1233,7 @@
|
|
&& (strcmp((char*)fontformat, "TrueType") != 0)
|
|
#if defined(__linux__) || defined(_AIX)
|
|
&& (strcmp((char*)fontformat, "Type 1") != 0)
|
|
+ && (strcmp((char*)fontformat, "CFF") != 0)
|
|
#endif
|
|
) {
|
|
continue;
|