| 1 | --- ../src/FTVectoriser.cpp.orig 2004-12-10 02:51:56.000000000 -0700 |
| 2 | +++ ../src/FTVectoriser.cpp 2008-12-24 00:55:55.000000000 -0700 |
| 3 | @@ -6,7 +6,11 @@ |
| 4 | #endif |
| 5 | |
| 6 | #ifdef __APPLE_CC__ |
| 7 | - typedef GLvoid (*GLUTesselatorFunction)(...); |
| 8 | + #if __APPLE_CC__ < 5465 |
| 9 | + typedef GLvoid (*GLUTesselatorFunction)(...); |
| 10 | + #else |
| 11 | + typedef GLvoid (*GLUTesselatorFunction)(); |
| 12 | + #endif |
| 13 | #elif defined( __mips ) || defined( __linux__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __sun ) || defined (__CYGWIN__) |
| 14 | typedef GLvoid (*GLUTesselatorFunction)(); |
| 15 | #elif defined ( WIN32) |