diff options
Diffstat (limited to 'recipes-core/classpath/classpath-0.99')
-rw-r--r-- | recipes-core/classpath/classpath-0.99/freetype2.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/recipes-core/classpath/classpath-0.99/freetype2.patch b/recipes-core/classpath/classpath-0.99/freetype2.patch new file mode 100644 index 0000000..cf0c02e --- /dev/null +++ b/recipes-core/classpath/classpath-0.99/freetype2.patch | |||
@@ -0,0 +1,36 @@ | |||
1 | Index: classpath-0.99/native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c | ||
2 | =================================================================== | ||
3 | --- classpath-0.99.orig/native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c 2014-02-10 12:01:26.826613065 +0100 | ||
4 | +++ classpath-0.99/native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c 2014-02-10 12:01:46.230613171 +0100 | ||
5 | @@ -42,8 +42,9 @@ | ||
6 | #include <pango/pango.h> | ||
7 | #include <pango/pangoft2.h> | ||
8 | #include <pango/pangofc-font.h> | ||
9 | -#include <freetype/ftglyph.h> | ||
10 | -#include <freetype/ftoutln.h> | ||
11 | +#include <ft2build.h> | ||
12 | +#include FT_GLYPH_H | ||
13 | +#include FT_OUTLINE_H | ||
14 | #include "jcl.h" | ||
15 | #include "gdkfont.h" | ||
16 | #include "gnu_java_awt_peer_gtk_FreetypeGlyphVector.h" | ||
17 | Index: classpath-0.99/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontPeer.c | ||
18 | =================================================================== | ||
19 | --- classpath-0.99.orig/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontPeer.c 2014-02-10 12:01:21.158613034 +0100 | ||
20 | +++ classpath-0.99/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontPeer.c 2014-02-10 12:01:54.338613216 +0100 | ||
21 | @@ -39,10 +39,11 @@ | ||
22 | #include <pango/pango.h> | ||
23 | #include <pango/pangoft2.h> | ||
24 | #include <pango/pangofc-font.h> | ||
25 | -#include <freetype/ftglyph.h> | ||
26 | -#include <freetype/ftoutln.h> | ||
27 | -#include <freetype/fttypes.h> | ||
28 | -#include <freetype/tttables.h> | ||
29 | +#include <ft2build.h> | ||
30 | +#include FT_GLYPH_H | ||
31 | +#include FT_OUTLINE_H | ||
32 | +#include FT_TYPES_H | ||
33 | +#include FT_TRUETYPE_TABLES_H | ||
34 | #include "gdkfont.h" | ||
35 | #include "gtkpeer.h" | ||
36 | #include "gnu_java_awt_peer_gtk_GdkFontPeer.h" | ||