Quote:
Originally Posted by Josh_Borke
er, thx for the fix  but now I get
Code:
util.cpp: In function `void UTIL_BuildFileNameRB(char *, char *)':
util.cpp:543: implicit declaration of function `int basename(...)'
util.cpp:543: assignment to `char *' from `int' lacks a cast
|
Ooups again, looks like Windows & Linux compiler have different sensitivity level 8o
Fixed in CVS, there was a missing
Code:
#include <libgen.h>
-eric