/hg/icedtea6: Added patch which ensures, that only one fontconfi...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Jun 9 09:27:36 PDT 2011
changeset 6db2808d2844 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=6db2808d2844
author: ptisnovs
date: Thu Jun 09 18:32:28 2011 +0200
Added patch which ensures, that only one fontconfig file will be
needed on particular RHEL version.
diffstat:
ChangeLog | 8 ++++++++
Makefile.am | 3 ++-
patches/fonts-rhel-version.patch | 32 ++++++++++++++++++++++++++++++++
3 files changed, 42 insertions(+), 1 deletions(-)
diffs (65 lines):
diff -r e191909a7c6e -r 6db2808d2844 ChangeLog
--- a/ChangeLog Mon May 30 19:21:44 2011 +0100
+++ b/ChangeLog Thu Jun 09 18:32:28 2011 +0200
@@ -1,3 +1,11 @@
+2011-06-09 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * Makefile.am: Added new patch
+ * patches/fonts-rhel-version.patch:
+ Patch which ensures, that only one fontconfig file
+ will be needed on particular RHEL version
+ (ie. only one file for RHEL 6.0, RHEL 6.1 and RHEL 6.2)
+
2011-05-30 Andrew John Hughes <ahughes at redhat.com>
* patches/openjdk/7036220-shark_llvm_29_headers.patch:
diff -r e191909a7c6e -r 6db2808d2844 Makefile.am
--- a/Makefile.am Mon May 30 19:21:44 2011 +0100
+++ b/Makefile.am Thu Jun 09 18:32:28 2011 +0200
@@ -339,7 +339,8 @@
patches/openjdk/7034464-hugepage.patch \
patches/openjdk/7037939-hugepage.patch \
patches/openjdk/7043564-hugepage.patch \
- patches/openjdk/mutter.patch
+ patches/openjdk/mutter.patch \
+ patches/fonts-rhel-version.patch
if WITH_ALT_HSBUILD
ICEDTEA_PATCHES += \
diff -r e191909a7c6e -r 6db2808d2844 patches/fonts-rhel-version.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/fonts-rhel-version.patch Thu Jun 09 18:32:28 2011 +0200
@@ -0,0 +1,33 @@
+--- openjdk-orig/jdk/src/solaris/classes/sun/awt/motif/MFontConfiguration.java 2011-06-09 16:04:24.000000000 +0200
++++ openjdk/jdk/src/solaris/classes/sun/awt/motif/MFontConfiguration.java 2011-06-09 16:04:24.000000000 +0200
+@@ -169,7 +169,9 @@
+ osVersion = getVersionString(f);
+ } else if ((f = new File("/etc/redhat-release")).canRead()) {
+ osName = "RedHat";
+- osVersion = getVersionString(f);
++ // At this time we don't need to distinguish
++ // between RHEL 6.0 and RHEL 6.1 for example.
++ osVersion = getMajorVersionString(f);
+ } else if ((f = new File("/etc/turbolinux-release")).canRead()) {
+ osName = "Turbo";
+ osVersion = getVersionString(f);
+@@ -208,6 +210,19 @@
+ return null;
+ }
+
++ /**
++ * Gets the OS major version string from a Linux release-specific file.
++ */
++ private String getMajorVersionString(File f){
++ try {
++ Scanner sc = new Scanner(f);
++ return sc.findInLine("(\\d)+");
++ }
++ catch (Exception e){
++ }
++ return null;
++ }
++
+ private static final String fontsDirPrefix = "$JRE_LIB_FONTS";
+
+ protected String mapFileName(String fileName) {
More information about the distro-pkg-dev
mailing list