Compiling ECCE v7 on Ubuntu 13.10


Click here for full thread
Clicked A Few Times
I've been asked to be more explicit in posting how I fixed this.

In the files $ECCE_HOME/src/inv/flclient/tlfreetype.c and $ECCE_HOME/src/inv/flclient/flfreetype.h, I looked at all of the lines that started with #include and everywhere that I saw an include that had freetype/ in it I changed it to freetype2/.

So, in flfreetype.c I changed
#include <freetype/ftoutln.h>

to
#include <freetype2/ftoutln.h>


And in flfreetype.h I changed
#include <freetype/freetype.h>

to
#include <freetype2/freetype.h>