Hey Guyz !

A minor problem in the source code for linux compilation:
util_string.cpp: In function ‘std::string get_full_path(const string&)’:
util_string.cpp:393:14: erreur: ‘PATH_MAX’ was not declared in this scope
util_string.cpp:395:42: erreur: ‘buf’ was not declared in this scope
make: *** [util_string.o] Erreur 1

Just need to add this lines in util_string.cpp at lines 387:
#ifndef PATH_MAX
#include <linux/limits.h> // for PATH_MAX definition
#endif

Enjoy,
YOOoOYoOoOo