THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 01/10/2011 at 09:59, xxxxxxxx wrote:
Originally posted by xxxxxxxx
Thanks for you answer Matthias. I haven't linked the libraries yet, that would have been an error for sure later. ^^Using GCC it tells me 'C4DGLuint' wasn't declared and MSVC it can't find 'pthread.h' (and me neither on my harddisk'. 
Switching a project to a different compiler and IDE ain't something you should try as a beginner in C++.
It requires intimate knowledge about the compilers, the preprocessor defines and behaviour, the systems ABI, the padding behaviour of the compilers (and how to change it) and what is expected by the OS, usage of exceptions (or the lack of in our case), parameter passing conventions, inheritance, ..., the influence and meaning of the compiler's options, the linker, ...
The messages you get are the ones of the Linux or Mac part of the code (as several preprocessor defines are missing in your project settings).
Best regards,
Wilfried Behne