etrunko pushed a commit to branch evas-1.7. http://git.enlightenment.org/legacy/evas.git/commit/?id=026dc5fc048feacd7a73bb7babfdf6f24b41fd04
commit 026dc5fc048feacd7a73bb7babfdf6f24b41fd04 Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Sun Dec 1 12:16:28 2013 +0900 fix freetype header includes to be correct where ft 2.5.1 breaks builds this should fix T591 --- src/lib/engines/common/evas_font_load.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib/engines/common/evas_font_load.c b/src/lib/engines/common/evas_font_load.c index 805eaf8..56333c4 100644 --- a/src/lib/engines/common/evas_font_load.c +++ b/src/lib/engines/common/evas_font_load.c @@ -5,7 +5,10 @@ #include "evas_font_private.h" /* for Frame-Queuing support */ #include "evas_font_ot.h" -#include <freetype/tttables.h> /* Freetype2 OS/2 font table. */ + +#include <ft2build.h> +#include FT_TRUETYPE_TABLES_H /* Freetype2 OS/2 font table. */ + #ifdef EVAS_CSERVE2 # include "../../cserve2/evas_cs2_private.h" --