raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=c12ac143c68bf193e5154ca1e0e6471d9a2d7fb2

commit c12ac143c68bf193e5154ca1e0e6471d9a2d7fb2
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/evas/common/evas_font_load.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/lib/evas/common/evas_font_load.c 
b/src/lib/evas/common/evas_font_load.c
index 59b8146..9668f0f 100644
--- a/src/lib/evas/common/evas_font_load.c
+++ b/src/lib/evas/common/evas_font_load.c
@@ -12,7 +12,9 @@
 #endif
 
 #include "evas_font_private.h" /* for Frame-Queuing support */
-#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"

-- 


Reply via email to