aboutsummaryrefslogtreecommitdiffstats
path: root/community/openjdk7/icedtea-jdk-fix-freetype-detection.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/openjdk7/icedtea-jdk-fix-freetype-detection.patch')
-rw-r--r--community/openjdk7/icedtea-jdk-fix-freetype-detection.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/community/openjdk7/icedtea-jdk-fix-freetype-detection.patch b/community/openjdk7/icedtea-jdk-fix-freetype-detection.patch
deleted file mode 100644
index 2870b28db0..0000000000
--- a/community/openjdk7/icedtea-jdk-fix-freetype-detection.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- openjdk/jdk/make/tools/freetypecheck/freetypecheck.c.orig
-+++ openjdk/jdk/make/tools/freetypecheck/freetypecheck.c
-@@ -84,7 +84,7 @@
- QUOTEMACRO(REQUIRED_FREETYPE_VERSION));
-
- printf("Detected freetype headers: %s\n", v);
-- if (strcmp(v, QUOTEMACRO(REQUIRED_FREETYPE_VERSION)) < 0) {
-+ if (strverscmp(v, QUOTEMACRO(REQUIRED_FREETYPE_VERSION)) < 0) {
- printf("Failed: headers are too old.\n");
- }
-
-@@ -93,7 +93,7 @@
- sprintf(v, "%d.%d.%d", major, minor, patch);
-
- printf("Detected freetype library: %s\n", v);
-- if (strcmp(v, QUOTEMACRO(REQUIRED_FREETYPE_VERSION)) < 0) {
-+ if (strverscmp(v, QUOTEMACRO(REQUIRED_FREETYPE_VERSION)) < 0) {
- printf("Failed: too old library.\n");
- }
-