Matthias Neuenhofer wrote:
Leopard use the unix def i change FTVectoriser.cpp like this
#ifdef __APPLE_CC__ typedef GLvoid (*GLUTesselatorFunction)(); #elif defined( __mips ) || defined( __linux__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __sun ) || defined (__CYGWIN__) typedef GLvoid (*GLUTesselatorFunction)();
so what exactly is the difference between apple and the rest of unix here? wouldn't it be easier to just add "|| defined (__APPLE__)"
or do i misread something?
fmf.a IOhannes