]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gnu_java_awt_peer_gtk_FreetypeGlyphVector.c, [...]: Fix freetype includes.
authorMatthias Klose <doko@ubuntu.com>
Fri, 29 Nov 2013 16:57:12 +0000 (16:57 +0000)
committerMatthias Klose <doko@gcc.gnu.org>
Fri, 29 Nov 2013 16:57:12 +0000 (16:57 +0000)
2013-11-29  Matthias Klose  <doko@ubuntu.com>

        * native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c,
        native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontPeer.c:
        Fix freetype includes.

From-SVN: r205535

libjava/classpath/ChangeLog.gcj
libjava/classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c
libjava/classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontPeer.c

index 7e35d424708767ff58fd9749d31a20ad212f0b93..a867ac843064900e73ac6e9f623b179e6649b5d4 100644 (file)
@@ -1,3 +1,9 @@
+2013-11-29  Matthias Klose  <doko@ubuntu.com>
+
+       * native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c,
+       native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontPeer.c:
+       Fix freetype includes.
+
 2013-02-21  Jakub Jelinek  <jakub@redhat.com>
 
        PR bootstrap/56258
index cb7bf43dcb46de6528fb5318c1333f2850766f0b..e74678ef6cdfb341d67561782c73483c5b074cf6 100644 (file)
@@ -42,8 +42,9 @@ exception statement from your version. */
 #include <pango/pango.h>
 #include <pango/pangoft2.h>
 #include <pango/pangofc-font.h>
-#include <freetype/ftglyph.h>
-#include <freetype/ftoutln.h>
+#include <ft2build.h>
+#include FT_GLYPH_H
+#include FT_OUTLINE_H
 #include "jcl.h"
 #include "gdkfont.h"
 #include "gnu_java_awt_peer_gtk_FreetypeGlyphVector.h"
index a5e59f7e4fd8cca68d83703524c18adcf02939d5..b172397506aafb2550e3d6b3f95a5b77ebd3f326 100644 (file)
 #include <pango/pango.h>
 #include <pango/pangoft2.h>
 #include <pango/pangofc-font.h>
-#include <freetype/ftglyph.h>
-#include <freetype/ftoutln.h>
-#include <freetype/fttypes.h>
-#include <freetype/tttables.h>
+#include <ft2build.h>
+#include FT_GLYPH_H
+#include FT_OUTLINE_H
+#include FT_TYPES_H
+#include FT_TRUETYPE_TABLES_H
 #include "gdkfont.h"
 #include "gtkpeer.h"
 #include "gnu_java_awt_peer_gtk_GdkFontPeer.h"