diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2013-12-01 12:16:28 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2013-12-01 12:16:28 +0900 |
commit | c12ac143c68bf193e5154ca1e0e6471d9a2d7fb2 (patch) | |
tree | b299e7ebdbb9ed3f2e97c77f09025610813b231a | |
parent | f45618d15b00cf3619fd22df4459bb700cc25f70 (diff) |
fix freetype header includes to be correct where ft 2.5.1 breaks builds
this should fix T591
-rw-r--r-- | src/lib/evas/common/evas_font_load.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/evas/common/evas_font_load.c b/src/lib/evas/common/evas_font_load.c index 59b8146a6..9668f0f3b 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" |