#freetype2/freetype/freetype.h not found
0.8.4と0.9.0でfreetypeディレクトリ内の構造が違うので、
ofxTrueTypeFontUC.cppの13行目あたりに書いてある
ofxTrueTypeFontUC.cpp
#include "freetype2/freetype/freetype.h"
#include "freetype2/freetype/ftglyph.h"
#include "freetype2/freetype/ftoutln.h"
#include "freetype2/freetype/fttrigon.h"
を
ofxTrueTypeFontUC.cpp
#include "freetype.h"
#include "ftglyph.h"
#include "ftoutln.h"
#include "fttrigon.h"
に書き換えると通ります。