diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-01-29 11:00:08 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-01-29 11:00:08 +0100 |
commit | dae6d52bd4a0588c20bef84aa2d2801b6f4c3541 (patch) | |
tree | 43fdf8583e1912b310c8940fcb8f066acc667486 /community/openjdk7/icedtea-jdk-fix-freetype-detection.patch | |
parent | 514b33979e995913fa91954af293519cedb03c34 (diff) | |
download | aports-dae6d52bd4a0588c20bef84aa2d2801b6f4c3541.tar.bz2 aports-dae6d52bd4a0588c20bef84aa2d2801b6f4c3541.tar.xz |
Remove the last stale files
Diffstat (limited to 'community/openjdk7/icedtea-jdk-fix-freetype-detection.patch')
-rw-r--r-- | community/openjdk7/icedtea-jdk-fix-freetype-detection.patch | 20 |
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"); - } - |