From 53e56151feebe55b761999e516449b27fc5e56bf Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Sat, 6 Mar 2004 18:24:41 +0000 Subject: [PATCH] Fixed bug #27437 (wrong freetype include inside GD library). --- ext/gd/libgd/gdft.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/gd/libgd/gdft.c b/ext/gd/libgd/gdft.c index bd254733bc..f0002ba296 100644 --- a/ext/gd/libgd/gdft.c +++ b/ext/gd/libgd/gdft.c @@ -63,7 +63,7 @@ gdImageStringFT (gdImage * im, int *brect, int fg, char *fontlist, #include "gdcache.h" #include #include FT_FREETYPE_H -#include "freetype/ftglyph.h" +#include FT_GLYPH_H /* number of fonts cached before least recently used is replaced */ #define FONTCACHESIZE 6 -- 2.50.1