Using Ubuntu 12.10 and g++ 4.7.2 I was unable to build waffle because of an error in GDirList (getcwd, chdir, etc not defined). These functions are defined in direct.h under Windows. To solve this problem on Linux, just add "#include <unistd.h>" on top of your GDirList.h !</unistd.h>
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Using Ubuntu 12.10 and g++ 4.7.2 I was unable to build waffle because of an error in GDirList (getcwd, chdir, etc not defined). These functions are defined in direct.h under Windows. To solve this problem on Linux, just add "#include <unistd.h>" on top of your GDirList.h !</unistd.h>
Thanks! I added this line to GDirList.cpp, and pushed it into our git repository.